@charset "UTF-8";
/* ----------------------------------- *
 * Font-Weight
 * ----------------------------------- */
/* ----------------------------------- *
 * Page-Layout
 * ----------------------------------- */
/* ----------------------------------- *
 * z-Indexes
 * ----------------------------------- */
html {
  --color-default: #ff5636;
  --color-gray-dark: #222;
  --color-gray: #555;
  --color-gray-light: #ccc;
  --color-brand: var(--color-default);
  --color-highlight: var(--color-brand);
  --color-page-background: #fff;
  --color-text: var(--color-gray-dark);
  --color-text-inverted: var(--color-page-background);
  --color-error: rgba(255, 0, 0, 1);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --base-font-size-xs: 0.875rem;
  --base-font-size: 1rem;
  --base-font-size-xl: 1.125rem;
  --base-line-height: 1.625;
  --base-font-weight: 400;
  --base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  --base-spacing-unit: 1rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 4);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 4px;
  --base-border-width: 1px;
  --base-border-color: var(--color-gray-light);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 1.875rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
  --layout-spacing-sides: var(--base-spacing-unit);
  --layout-wrapper-background: transparent;
  --layout-header-background: var(--color-page-background);
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit);
  --article-spacing-bottom: var(--base-spacing-unit);
  --headings-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  --headings-font-weight: 700;
  --headings-color: "currentColor";
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: var(--headings-font-weight);
  --h1-color: var(--headings-color);
  --h1-font-size: 2rem;
  --h1-font-size-sm: 2rem;
  --h1-font-size-md: 2.25rem;
  --h1-font-size-lg: 2.25rem;
  --h1-font-size-xl: 2.25rem;
  --h1-line-height: 1.55;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 0.5rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.625rem;
  --h2-font-size-sm: 1.625rem;
  --h2-font-size-md: 1.75rem;
  --h2-font-size-lg: 1.75rem;
  --h2-font-size-xl: 1.75rem;
  --h2-line-height: 1.5;
  --h2-spacing-top: 0;
  --h2-spacing-bottom: 0.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--headings-color);
  --h3-font-size: 1.375rem;
  --h3-font-size-sm: 1.375rem;
  --h3-font-size-md: 1.5rem;
  --h3-font-size-lg: 1.5rem;
  --h3-font-size-xl: 1.5rem;
  --h3-line-height: 1.25;
  --h3-spacing-top: 0;
  --h3-spacing-bottom: 0.5rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--headings-color);
  --h4-font-size: 1.125rem;
  --h4-font-size-sm: 1.125rem;
  --h4-font-size-md: 1.25rem;
  --h4-font-size-lg: 1.25rem;
  --h4-font-size-xl: 1.25rem;
  --h4-line-height: 1;
  --h4-spacing-top: 0;
  --h4-spacing-bottom: 0.5rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--headings-color);
  --h5-font-size: 1rem;
  --h5-font-size-sm: 1rem;
  --h5-font-size-md: 1rem;
  --h5-font-size-lg: 1rem;
  --h5-font-size-xl: 1rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0;
  --h5-spacing-bottom: 0.5rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 0.875rem;
  --h6-font-size-lg: 0.875rem;
  --h6-font-size-xl: 0.875rem;
  --h6-line-height: 1;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.5rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: underline;
  --paragraph-link-decoration-hover: none;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: var(--color-highlight);
  --links-color-hover: var(--color-highlight);
  --links-color-visited: var(--links-color);
  --links-outline-focus: 2px dotted
    var(--links-outline-color, var(--color-highlight));
  --links-outline-active: none;
  --button-color: var(--color-text-inverted);
  --button-background: var(--color-highlight);
  --button-color-hover: var(--button-color);
  --button-background-hover: var(--color-highlight);
  --button-spacing: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  --button-border-radius: var(--base-border-radius);
  --button-border-width: var(--base-border-width);
  --button-font-family: var(--base-font-family);
  --button-font-weight: 400;
  --button-font-size: var(--base-font-size);
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2rem;
  --slider-arrow-font-family: "Arial";
  --slider-menu-point-size: 2rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: var(--base-border-radius);
  --forms-input-border-color: rgba(0, 0, 0, 0.25);
  --forms-input-background: var(--color-page-background);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit);
  --accordion-content-spacing: var(--base-spacing-unit-sm);
  --accordion-content-background: var(--color-gray-light);
  --accordion-toggler-font-size: 1.5rem;
  --accordion-toggler-background: var(--color-highlight);
  --accordion-toggler-color: var(--color-text-inverted);
  --accordion-toggler-color-hover: var(--color-brand-primary);
  --accordion-toggler-spacing: var(--base-spacing-unit-xs);
  --accordion-toggler-border: 2px solid transparent;
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: #ccc;
  --table-background-light: #eee;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
}

:root {
  --color-default: hsl(
    var(--color-default-hue),
    var(--color-default-sat),
    var(--color-default-luma)
  );
  --color-default-hue: 202;
  --color-default-sat: 100%;
  --color-default-luma: 34%;
  --color-gray-dark: #3c4146;
  --color-gray: #4c4f52;
  --color-gray-light: #ebebeb;
  --color-brand: var(--color-default);
  --color-highlight: hsl(
    var(--color-highlight-hue),
    var(--color-highlight-sat),
    var(--color-highlight-luma)
  );
  --color-highlight-hue: 202;
  --color-highlight-sat: 100%;
  --color-highlight-luma: 50%;
  --color-highlight-luma-hover: calc(var(--color-highlight-luma) - 10%);
  --color-page-background: #ffffff;
  --color-text: #1d1d1b;
  --color-text--inverted: var(--color-page-background);
  --color-error: rgb(194, 36, 36);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --color-theme-1: #413f3a;
  --color-theme-2: #292825;
  --color-theme-3: #2a3438;
  --base-font-size-xs: 1rem;
  --base-font-size: 1rem;
  --base-font-size-xl: 1rem;
  --base-font-size-xxl: 1.125rem;
  --base-line-height: 1.35;
  --base-font-weight: 400;
  --base-font-weight-v: normal;
  --base-font-family: "Red Hat Text Variable", "Red Hat Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Helvetica Neue", Arial, sans-serif;
  --base-spacing-unit: 1.5rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 25px;
  --base-border-width: 1px;
  --base-border-color: var(--color-text);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 1.5rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
  --layout-spacing-sides: var(--base-spacing-unit-xs);
  --layout-wrapper-background: transparent;
  --layout-header-background: transparent;
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit);
  --article-spacing-bottom: var(--base-spacing-unit);
  --headings-font-family: "Red Hat Display Variable", "Red Hat Display",
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Helvetica Neue", Arial, sans-serif;
  --headings-font-weight: 400;
  --headings-letter-spacing: 0;
  --headings-color: var(--color-text);
  --headings-font-family-special: "Red Hat Display Variable", "Red Hat Display",
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Helvetica Neue", Arial, sans-serif;
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: 800;
  --h1-color: var(--headings-color);
  --h1-font-size: 2rem;
  --h1-font-size-sm: 2.35rem;
  --h1-font-size-md: 2.5rem;
  --h1-font-size-lg: 2.75rem;
  --h1-font-size-xl: 2.75rem;
  --h1-font-size-xxl: 2.85rem;
  --h1-line-height: 1.25;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 1.25rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.8rem;
  --h2-font-size-sm: 1.8rem;
  --h2-font-size-md: 1.8rem;
  --h2-font-size-lg: 1.8rem;
  --h2-font-size-xl: 2rem;
  --h2-font-size-xxl: 2rem;
  --h2-line-height: 1.25;
  --h2-spacing-top: 0.5rem;
  --h2-spacing-bottom: 0.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--headings-color);
  --h3-font-size: 1.35rem;
  --h3-font-size-sm: 1.5rem;
  --h3-font-size-md: 1.5rem;
  --h3-font-size-lg: 1.5rem;
  --h3-font-size-xl: 1.55rem;
  --h3-font-size-xxl: 1.55rem;
  --h3-line-height: 1.35;
  --h3-spacing-top: 1.35rem;
  --h3-spacing-bottom: 0.25rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--headings-color);
  --h4-font-size: 1.2rem;
  --h4-font-size-sm: 1.2rem;
  --h4-font-size-md: 1.2rem;
  --h4-font-size-lg: 1.2rem;
  --h4-font-size-xl: 1.2rem;
  --h4-font-size-xxl: 1.25rem;
  --h4-line-height: 1.25;
  --h4-spacing-top: 0.8rem;
  --h4-spacing-bottom: 0.2rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--headings-color);
  --h5-font-size: 1.1rem;
  --h5-font-size-sm: 1.1rem;
  --h5-font-size-md: 1.1rem;
  --h5-font-size-lg: 1.1rem;
  --h5-font-size-xl: 1.1rem;
  --h5-font-size-xxl: 1.2rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0.5;
  --h5-spacing-bottom: 0.2rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 1rem;
  --h6-font-size-lg: 1rem;
  --h6-font-size-xl: 1rem;
  --h6-font-size-xxl: 1rem;
  --h6-line-height: 1.3;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.2rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: underline;
  --paragraph-link-decoration-hover: underline;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: var(--color-default);
  --links-color-hover: var(--color-highlight);
  --button-color: #fff;
  --button-border-color: var(--color-default);
  --button-border-style: solid;
  --button-background: var(--color-default);
  --button-color-hover: var(--color-highlight);
  --button-background-hover: var(--color-default);
  --button-spacing: 7px 15px;
  --button-border-radius: 5px;
  --button-border-width: var(--base-border-width);
  --button-border-width: 1px;
  --button-font-family: var(--base-font-family);
  --button-font-weight: 600;
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2rem;
  --slider-arrow-font-family: "Arial";
  --slider-menu-point-size: 2rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --swiper-navigation-size: 2.2rem;
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: 5px;
  --forms-input-border-color: hsla(
    var(--color-default-hue),
    var(--color-default-sat),
    var(--color-default-luma),
    0.5
  );
  --forms-input-background: var(--color-page-background);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit-xs);
  --accordion-content-spacing: var(--base-spacing-unit);
  --accordion-content-background: transparent;
  --accordion-content-border: none;
  --accordion-toggler-font-size: 1.5rem;
  --accordion-toggler-background: var(--color-gray-light);
  --accordion-toggler-background-hover: var(--color-default);
  --accordion-toggler-color: var(--color-text);
  --accordion-toggler-color-hover: #fff;
  --accordion-toggler-spacing: var(--base-spacing-unit) 0
    var(--base-spacing-unit-xs);
  --accordion-toggler-border: none;
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: hsla(
    var(--color-default-hue),
    var(--color-default-sat),
    var(--color-default-luma),
    0.5
  );
  --table-background-light: transparent;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
}
@media screen and (min-width: 58.75em) {
  :root {
    --layout-spacing-sides: var(--base-spacing-unit);
  }
}
@media screen and (min-width: 48em) {
  :root {
    --article-spacing-top: var(--base-spacing-unit-lg);
    --article-spacing-bottom: var(--base-spacing-unit-lg);
  }
}
@media screen and (min-width: 58.75em) {
  :root {
    --swiper-navigation-size: 2.7rem;
  }
}

/*************************************

START - HELPER CLASSES

*************************************/
.mail,
.tel,
.map,
.size-icon,
.night-icon,
.calendar-icon,
.check-icon,
.download-icon,
.content-downloads ul li a {
  transition: all 0.3s;
}
.mail:before,
.tel:before,
.map:before,
.size-icon:before,
.night-icon:before,
.calendar-icon:before,
.check-icon:before,
.download-icon:before,
.content-downloads ul li a:before {
  display: inline-block;
  width: 30px;
  height: 25px;
  margin-right: 10px;
  vertical-align: sub;
  filter: brightness(10);
}

.tel:before {
  height: 30px;
  margin-right: 0;
  content: url("../img/icons/phone-icon.svg");
}

.mail:before {
  content: url("../img/icons/mail-icon.svg");
}

.map br {
  padding-left: 30px;
}
.map:before {
  content: url("../img/icons/map-icon.svg");
  vertical-align: top;
}
@media screen and (min-width: 68.75em) {
  .map:before {
    float: left;
    height: 50px;
  }
}

.size-icon:before {
  content: url("../img/icons/quadtratmeter-icon.svg");
  width: 45px;
  filter: none;
}

.night-icon:before {
  content: url("../img/icons/night-icon.svg");
  filter: none;
  width: auto;
  height: auto;
  vertical-align: text-top;
  margin-right: 8px;
}

.calendar-icon:before {
  content: url("../img/icons/calendar-icon.svg");
  filter: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-top;
}

.check-icon:before {
  content: url("../img/icons/check-icon.svg");
  filter: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-top;
}

.download-icon:before, .content-downloads ul li a:before {
  content: url("../img/icons/download-icon.svg");
  filter: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-top;
}

.people-icon {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.hyphenate {
  overflow-wrap: break-word;
  text-wrap: balance;
  hyphens: auto;
}
@media screen and (max-width: 47.99875em) {
  .hyphenate {
    max-width: 90vw;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media screen and (min-width: 58.75em) {
  .d-lg-block {
    display: block !important;
  }
}
@media screen and (min-width: 68.75em) {
  .d-xl-inlineflex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 68.75em) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
.d-flex {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.d-flex.flex-wrap {
  flex-wrap: wrap;
}
.d-flex.d-column {
  flex-flow: column;
}
.d-flex.justify-end {
  justify-content: flex-end;
}

.align--center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.children-price {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  flex-wrap: wrap;
  font-size: 16px;
  opacity: 0.85;
}
.children-price strong {
  font-family: var(--headings-font-family);
  font-size: 1.5em;
  font-variant-numeric: lining-nums;
  opacity: 1;
}

.textimg-flex {
  align-items: center;
}
.textimg-flex figure {
  max-width: 200px;
}
@media screen and (min-width: 58.75em) {
  .textimg-flex {
    display: flex;
    gap: 2em;
  }
  .textimg-flex > figure {
    flex: 0.5;
    max-width: 300px;
  }
  .textimg-flex > .rte {
    flex: 1;
  }
  .textimg-flex h3 {
    margin-top: 0;
  }
}

.overflow-visible {
  overflow: visible !important;
}

.uppercase {
  text-transform: uppercase;
}

.relative-pos {
  position: relative;
}

.img-auto img {
  margin: 0 auto;
}

.margin-null {
  margin: 0;
}
.margin-null img {
  margin: 0;
}

.imgFull {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.imgFull img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text--center {
  text-align: center;
}

.text--right {
  text-align: right;
}

.no-animation {
  transform: none !important;
  opacity: 1 !important;
}

.mt-10-n {
  margin-top: -10%;
}

@media screen and (min-width: 58.75em) {
  .mt-lg-10 {
    margin-top: 10%;
  }
  .mt-lg-10-n {
    margin-top: -10%;
  }
  .mt-lg-30 {
    margin-top: 30%;
  }
  .mt-lg-30-n {
    margin-top: -30%;
  }
  .mt-lg-50 {
    margin-top: 50%;
  }
  .mt-lg-50-n {
    margin-top: -50%;
  }
}
@media screen and (min-width: 58.75em) {
  .mr-lg-20 {
    margin-right: 20%;
  }
  .mr-lg-20-n {
    margin-right: -20%;
  }
  .ml-lg-20 {
    margin-left: 20%;
  }
  .ml-lg-20-n {
    margin-left: -20%;
  }
}
.arrow-down:before {
  content: "";
  display: inline-block;
  background: url("../img/icons/arrow-down-icon.svg") no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
  padding-right: 6px;
}

.m-t-0,
.mod_article.m-t-0 {
  margin-top: calc(0 * var(--base-spacing-unit)) !important;
}

.m-b-0,
.mod_article.m-b-0 {
  margin-bottom: calc(0 * var(--base-spacing-unit)) !important;
}

.p-t-0,
.mod_article.p-t-0,
.mod_article.p-t-0 > .inside {
  padding-top: calc(0 * var(--base-spacing-unit)) !important;
}

.p-b-0,
.mod_article.p-b-0,
.mod_article.p-b-0 > .inside {
  padding-bottom: calc(0 * var(--base-spacing-unit)) !important;
}

.m-t-1,
.mod_article.m-t-1 {
  margin-top: calc(1 * var(--base-spacing-unit));
}

.m-b-1,
.mod_article.m-b-1 {
  margin-bottom: calc(1 * var(--base-spacing-unit));
}

.p-t-1,
.mod_article.p-t-1 {
  padding-top: calc(1 * var(--base-spacing-unit));
}

.p-b-1,
.mod_article.p-b-1 {
  padding-bottom: calc(1 * var(--base-spacing-unit));
}

.m-t-2,
.mod_article.m-t-2 {
  margin-top: calc(2 * var(--base-spacing-unit));
}

@media screen and (min-width: 58.75em) {
  .m-t-lg-2 {
    margin-top: calc(2 * var(--base-spacing-unit));
  }
}
.m-b-2,
.mod_article.m-b-2 {
  margin-bottom: calc(2 * var(--base-spacing-unit));
}

.p-t-2,
.mod_article.p-t-2 {
  padding-top: calc(2 * var(--base-spacing-unit));
}

.p-b-2,
.mod_article.p-b-2 {
  padding-bottom: calc(2 * var(--base-spacing-unit));
}

.m-t-3,
.mod_article.m-t-3 {
  margin-top: calc(3 * var(--base-spacing-unit));
}

.m-b-3,
.mod_article.m-b-3 {
  margin-bottom: calc(3 * var(--base-spacing-unit));
}

.p-t-3,
.mod_article.p-t-3 {
  padding-top: calc(3 * var(--base-spacing-unit));
}

.p-b-3,
.mod_article.p-b-3 {
  padding-bottom: calc(3 * var(--base-spacing-unit));
}

.m-t-4,
.mod_article.m-t-4 {
  margin-top: calc(4 * var(--base-spacing-unit));
}

.m-b-4,
.mod_article.m-b-4 {
  margin-bottom: calc(4 * var(--base-spacing-unit));
}

.p-t-4,
.mod_article.p-t-4 {
  padding-top: calc(4 * var(--base-spacing-unit));
}

.p-b-4,
.mod_article.p-b-4 {
  padding-bottom: calc(4 * var(--base-spacing-unit));
}

.m-t-5,
.mod_article.m-t-5 {
  margin-top: calc(5 * var(--base-spacing-unit));
}

.m-b-5,
.mod_article.m-b-5 {
  margin-bottom: calc(5 * var(--base-spacing-unit));
}

.p-t-5,
.mod_article.p-t-5 {
  padding-top: calc(5 * var(--base-spacing-unit));
}

.p-b-5,
.mod_article.p-b-5 {
  padding-bottom: calc(5 * var(--base-spacing-unit));
}

.small-opacity {
  font-size: 0.9em;
  opacity: 0.8;
}

.pha-headline h2 {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 10px !important;
}
.pha-headline h2:after {
  content: "";
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 15px;
  height: 1px;
  background-color: var(--color-highlight);
  opacity: 0.8;
}
@media screen and (min-width: 58.75em) {
  .pha-headline h2:after {
    left: 0;
  }
}
.pha-headline h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/adler-symbol.svg") no-repeat;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 58.75em) {
  .pha-headline h2:before {
    left: -60px;
  }
}

h2.pha-headline {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 30px;
}
h2.pha-headline:after {
  content: "";
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 15px;
  height: 1px;
  background-color: var(--color-highlight);
  opacity: 0.8;
}
@media screen and (min-width: 58.75em) {
  h2.pha-headline:after {
    left: 0;
  }
}
h2.pha-headline:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/adler-symbol.svg") no-repeat;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 58.75em) {
  h2.pha-headline:before {
    left: -60px;
  }
}

.pha-box.content-text {
  padding: 1.5em !important;
}

.pha-box {
  border: 1px solid;
  -o-border-image: linear-gradient(to bottom, var(--color-highlight), transparent) 1;
  border-image: linear-gradient(to bottom, var(--color-highlight), transparent) 1;
}
@media screen and (min-width: 96em) {
  .pha-box {
    font-size: 0.9em;
    text-wrap: balance;
  }
}
.pha-box.content-image {
  padding: 20px;
}
.pha-box.content-image + .content-text {
  padding: 10px 30px;
}
.pha-box.content-text {
  padding: 15px 20px;
}
.pha-box.content-text h1, .pha-box.content-text h2, .pha-box.content-text h3, .pha-box.content-text h4, .pha-box.content-text h5, .pha-box.content-text h6 {
  margin-top: 0;
}
.pha-box h1, .pha-box h2, .pha-box h3, .pha-box h4, .pha-box h5, .pha-box h6 {
  padding-bottom: 0 !important;
}
.pha-box h1:after, .pha-box h1:before, .pha-box h2:after, .pha-box h2:before, .pha-box h3:after, .pha-box h3:before, .pha-box h4:after, .pha-box h4:before, .pha-box h5:after, .pha-box h5:before, .pha-box h6:after, .pha-box h6:before {
  content: none !important;
}

[data-sal] {
  transition-delay: 0s;
  transition-delay: var(--sal-delay, 0s);
  transition-duration: 0.2s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-timing-function: ease;
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-sal|=fade] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=slide-up] {
  transform: translateY(20%);
}

[data-sal=slide-down] {
  transform: translateY(-20%);
}

[data-sal=slide-left] {
  transform: translateX(20%);
}

[data-sal=slide-right] {
  transform: translateX(-20%);
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=zoom-in] {
  transform: scale(0.5);
}

[data-sal=zoom-out] {
  transform: scale(1.1);
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  transform: none;
}

[data-sal|=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal=flip-left] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
  transform: none;
}


/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * Change font properties to `inherit` in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  font: inherit;
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 * 2. Show the overflow in Edge, Firefox, and IE.
 */
button,
input,
select { /* 2 */
  overflow: visible;
}

/**
 * Remove the margin in Safari.
 * 1. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea { /* 1 */
  margin: 0;
}

/**
 * Remove the inheritence of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritence of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Change the cursor in all browsers (opinionated).
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

/**
 * Restore the default cursor to disabled elements unset by the previous rule.
 */
[disabled] {
  cursor: default;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the odd appearance of search inputs in Chrome and Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
}

/**
 * Remove the inner padding and cancel buttons in Chrome on OS X and
 * Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/*************************************

MAIN STYLESHEET

*************************************/
html.scroll-lock {
  overflow-y: hidden;
}

body {
  /* default opacity of 1, if animation is not supported */
  opacity: 1;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  1% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body * {
  scrollbar-width: thin;
}

a:hover {
  color: hsl(var(--color-highlight-hue), var(--color-highlight-sat), var(--color-highlight-luma-hover));
}

.no-animation {
  transform: none !important;
  opacity: 1 !important;
}

.language-button {
  position: absolute;
  top: 25px;
  left: 90px;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 48em) {
  .language-button {
    top: 13px;
    left: 140px;
    width: 61px;
    height: 60px;
    font-size: 15px;
  }
}
@media screen and (min-width: 58.75em) {
  .language-button {
    position: initial;
  }
}

.benefits-icons .content-text.media {
  max-width: 190px;
}
@media screen and (min-width: 58.75em) {
  .benefits-icons .content-text.media .rte {
    font-size: 16px;
  }
}
.benefits-icons .content-text.media figure {
  padding-bottom: 5px;
}
.benefits-icons .content-text.media figure img {
  height: 40px;
}

.mitgliedschaften .content-text.media {
  font-size: 0.9rem;
}
.mitgliedschaften .content-text.media img {
  margin-bottom: 15px;
  width: auto;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
}

.ssl-icon {
  margin-top: 5px;
}
.ssl-icon em {
  font-size: 15px;
  vertical-align: text-bottom;
  margin-left: 3px;
}
.ssl-icon img {
  display: inline;
}

:root {
  --intro-text-padding: 60px;
}

.intro h1:not(.trenner.text-center),
.intro h2:not(.trenner.text-center) {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 68.75em) {
  .intro h1:not(.trenner.text-center),
  .intro h2:not(.trenner.text-center) {
    padding-bottom: 30px;
  }
}
.intro h1:not(.trenner.text-center):before,
.intro h2:not(.trenner.text-center):before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: url("../img/adler-symbol.svg") no-repeat;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 68.75em) {
  .intro h1:not(.trenner.text-center):before,
  .intro h2:not(.trenner.text-center):before {
    bottom: -15px;
    left: -50px;
  }
}
.intro h1:not(.trenner.text-center):after,
.intro h2:not(.trenner.text-center):after {
  content: "";
  position: absolute;
  left: 55px;
  right: 0;
  bottom: 13px;
  height: 1px;
  background-color: var(--color-highlight);
  opacity: 0.8;
}
@media screen and (min-width: 68.75em) {
  .intro h1:not(.trenner.text-center):after,
  .intro h2:not(.trenner.text-center):after {
    bottom: 2px;
    left: 5px;
  }
}
.intro.no-img {
  padding-top: 150px;
}
@media screen and (min-width: 96em) {
  .intro.no-img {
    padding-top: 0;
  }
}
.intro.no-img > .inside {
  padding-top: 250px;
}
@media screen and (min-width: 96em) {
  .intro.no-img > .inside {
    padding-top: 150px;
  }
}
.intro.start h1:after,
.intro.start h2:after {
  left: var(--intro-text-padding);
  width: 100%;
}
@media screen and (min-width: 58.75em) {
  .intro.start h1:after,
  .intro.start h2:after {
    left: initial;
    width: calc(100% - var(--intro-text-padding));
  }
}
.intro.start h1:before,
.intro.start h2:before {
  left: 0;
}
@media screen and (min-width: 68.75em) {
  .intro.start .rte {
    max-width: 85%;
    padding-left: var(--intro-text-padding);
  }
  .intro.start .content-hyperlink {
    padding-left: var(--intro-text-padding);
  }
}
@media screen and (min-width: 68.75em) {
  .intro.start h1 {
    width: 115%;
  }
}

.intro-imgs {
  display: flex !important;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (min-width: 68.75em) {
  .intro-imgs {
    max-width: 50vw !important;
  }
}
.intro-imgs figure,
.intro-imgs img {
  height: 100%;
}
.intro-imgs img {
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 68.75em) {
  .intro-imgs .main-img {
    width: 70%;
  }
}
.intro-imgs .small-img {
  width: calc(50% - 5px);
}
@media screen and (min-width: 68.75em) {
  .intro-imgs .small-img {
    width: calc(50% - 20px);
  }
}
.intro-imgs .small-img img {
  min-height: 150px;
}
@media screen and (min-width: 96em) {
  .intro-imgs .small-img img {
    min-height: 300px;
  }
}

.intro-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 30%;
  opacity: 0.15;
  z-index: -1;
}
@media screen and (min-width: 58.75em) {
  .intro-bg {
    left: 60%;
    opacity: 0.35;
  }
}
.intro-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-page-background), transparent);
  z-index: 1;
}
.intro-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--color-page-background), transparent);
}
.intro-bg figure {
  height: 100%;
}
.intro-bg figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.trenner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
  gap: 0.5em;
  margin-bottom: 1em;
  text-wrap: balance;
}
@media screen and (min-width: 58.75em) {
  .trenner {
    margin-bottom: 2em;
  }
}
.trenner:before {
  content: "";
  position: relative;
  flex: 1 1 100%;
  background: url("../img/adler-symbol.svg") var(--color-page-background) no-repeat;
  background-position: 50%;
  width: 70px;
  margin: 0 40%;
  height: 50px;
  order: 2;
}
@media screen and (min-width: 58.75em) {
  .trenner:before {
    margin: 0 45%;
  }
}
.trenner:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 100%;
  height: 1px;
  background-color: var(--color-highlight);
  opacity: 0.8;
  z-index: -1;
}
.trenner.top:before {
  order: -1;
}
.trenner.top:after {
  bottom: initial;
  top: 25px;
}

.benefits-wrapper {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.benefits-wrapper .benefits-wrap > figure {
  padding-bottom: 10px;
  max-width: 25vw;
  margin: 0 auto;
}
.benefits-wrapper .benefits-wrap > figure img {
  margin: 0 auto;
}
@media screen and (max-width: 68.74875em) {
  .benefits-wrapper .benefits-wrap .rte {
    display: none;
  }
}

.zitat-wrap {
  font-size: clamp(28px, 2vw, 60px);
  font-family: var(--headings-font-family);
}
.zitat-wrap hr + p {
  color: var(--color-highlight);
}

.parkbilder-wrapper .font-special {
  font-size: clamp(25px, 2vw, 40px);
}

.schmuck-title {
  position: absolute !important;
  top: -5%;
  font-size: 10vw;
  font-family: "WindSong";
  right: 5%;
  z-index: -1;
  opacity: 0.1;
}
@media screen and (min-width: 34.375em) {
  .schmuck-title {
    top: -15%;
  }
}
.schmuck-title:before, .schmuck-title::after {
  content: none !important;
}

.pha-stoerer {
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  max-width: 50%;
  transform: scale(0.95);
  transition: all 0.3s;
  z-index: 1;
}
.pha-stoerer:hover {
  transform: scale(1);
}

.galerie-grid-wrapper .content-text p {
  margin-bottom: 0;
}

.interesting-wrapper .slider-wrapper > div:nth-child(n+4) {
  display: none;
}

.imginsidep p:has(img) {
  text-indent: -35px;
  margin-left: 30px;
}
.imginsidep p:has(img) img {
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
  max-height: 26px;
}

.important-details {
  padding-top: var(--base-spacing-unit-lg);
  padding-bottom: var(--base-spacing-unit-lg);
  margin-top: var(--base-spacing-unit-lg);
  margin-bottom: var(--base-spacing-unit-lg);
}
.important-details > div:before {
  content: "";
  position: absolute;
  inset: 0 0 0 -3000px;
  background: linear-gradient(90deg, var(--color-page-background) 70%, transparent);
  filter: brightness(1.5);
  z-index: -1;
}
@media screen and (min-width: 34.375em) {
  .important-details > div:before {
    background: linear-gradient(90deg, var(--color-page-background), transparent);
  }
}

.mixpicker_modal table th {
  text-transform: none !important;
}

.mixpicker .mixpicker__wrapper .mixpicker__month .mixpicker__table_month tbody td .mixpicker__day a {
  text-align: center;
}

/*************************************

IMPRESSUM

*************************************/
.impressum #mainNav .logo-nav {
  padding-left: 0;
}
.impressum #mainNav ul.smooth {
  display: none !important;
}
.impressum h1 {
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
.impressum h2 {
  font-size: 1.4rem;
}
.impressum h3 {
  font-size: 1.25rem;
}
@media screen and (min-width: 68.75em) {
  .impressum h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .impressum h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .impressum h2:first-child {
    margin-top: 0;
  }
  .impressum h3 {
    font-size: 1.35rem;
  }
}

.mod_newsreader .layout_full {
  margin-bottom: 2em;
}
.mod_newsreader .blue-box,
.mod_newsreader .gray-box {
  position: relative;
  padding: var(--base-spacing-unit-lg) 0;
  margin: 0;
}
@media screen and (min-width: 68.75em) {
  .mod_newsreader .blue-box,
  .mod_newsreader .gray-box {
    padding: var(--base-spacing-unit-xl) 0;
  }
}
.mod_newsreader .blue-box:before,
.mod_newsreader .gray-box:before {
  content: "";
  position: absolute;
  inset: 0;
  max-height: 100%;
  left: -100vw;
  right: -100vw;
  z-index: -1;
}
.mod_newsreader .blue-box + div:not(.gray-box, .blue-box),
.mod_newsreader .gray-box + div:not(.gray-box, .blue-box) {
  margin-top: 50px;
}
.mod_newsreader .blue-box::before {
  background-color: var(--color-default);
}
.mod_newsreader .gray-box::before {
  background-color: var(--color-gray-light);
}

.stellenangebote-list {
  margin-bottom: 2em;
}
.stellenangebote-list h3 {
  margin: 0;
  font-size: 1.3em;
  transition: all 0.3s;
}
.stellenangebote-list h3:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.stellenangebote-list h3:hover a:after {
  right: 0;
  opacity: 0;
}
.stellenangebote-list a {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--color-text);
  padding: 1em;
  transition: all 0.3s;
  overflow: hidden;
}
.stellenangebote-list a:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-default);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.stellenangebote-list a:hover {
  color: #fff;
}
.stellenangebote-list a:hover:before {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.stellenangebote-list a:after {
  content: "";
  background-image: url(../img/icons/arrow-right.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 10px;
  width: 30px;
  height: 34px;
  padding: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--base-spacing-unit-sm);
}

ul,
ol,
dl,
blockquote,
p,
address,
hr,
fieldset,
figure,
pre {
  margin-bottom: var(--base-spacing-unit);
}

ul,
ol,
dd {
  margin-left: var(--base-spacing-unit);
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

a:focus-visible,
[tabindex="0"]:focus-visible {
  outline: var(--links-outline-focus);
}
a:active,
[tabindex="0"]:active {
  outline: var(--links-outline-active);
}

a {
  color: var(--links-color);
}
a:visited {
  color: var(--links-color-visited);
}

:not(p) a {
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
}

html {
  font-family: var(--base-font-family, sans-serif);
  font-size: var(--base-font-size-xs);
  line-height: var(--base-line-height);
  font-weight: var(--base-font-weight);
  background-color: var(--color-page-background);
  color: var(--color-text);
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 34.375em) {
  html {
    font-size: var(--base-font-size-sm, var(--base-font-size));
  }
}
@media screen and (min-width: 48em) {
  html {
    font-size: var(--base-font-size);
  }
}
@media screen and (min-width: 58.75em) {
  html {
    font-size: var(--base-font-size-lg, var(--base-font-size));
  }
}
@media screen and (min-width: 68.75em) {
  html {
    font-size: var(--base-font-size-xl);
  }
}

html {
  font-family: var(--base-font-family, sans-serif);
  font-size: var(--base-font-size-xs);
  line-height: var(--base-line-height);
  font-weight: var(--base-font-weight);
  background-color: var(--color-page-background);
  color: var(--color-text);
  scroll-behavior: smooth;
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  z-index: -1;
}
@media screen and (min-width: 34.375em) {
  html {
    font-size: var(--base-font-size-sm, var(--base-font-size));
  }
}
@media screen and (min-width: 48em) {
  html {
    font-size: var(--base-font-size);
  }
}
@media screen and (min-width: 58.75em) {
  html {
    font-size: var(--base-font-size-lg, var(--base-font-size));
  }
}
@media screen and (min-width: 68.75em) {
  html {
    font-size: var(--base-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  html {
    font-size: var(--base-font-size-xxl);
  }
}

body.fts-loesungen .product-card.fts-loesungen h3,
body.fts-navigation .product-card.fts-navigation h3,
body.fts-leitsteuerung .product-card.fts-leitsteuerung h3,
body.sondermaschinenbau .product-card.sondermaschinenbau h3,
body.montagelinien .product-card.montagelinien h3,
body.montagezellen .product-card.montagezellen h3 {
  color: var(--color-default);
}
body.fts-loesungen .product-card.fts-loesungen a.btn,
body.fts-navigation .product-card.fts-navigation a.btn,
body.fts-leitsteuerung .product-card.fts-leitsteuerung a.btn,
body.sondermaschinenbau .product-card.sondermaschinenbau a.btn,
body.montagelinien .product-card.montagelinien a.btn,
body.montagezellen .product-card.montagezellen a.btn {
  display: none;
}

/* red-hat-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/red_hat_display/static/red-hat-display-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* red-hat-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/red_hat_display/static/red-hat-display-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* red-hat-display-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/red_hat_display/static/red-hat-display-v20-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* red-hat-text-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/red_hat_text/static/red-hat-text-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* red-hat-text-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Text";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/red_hat_text/static/red-hat-text-v18-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* red-hat-text-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/red_hat_text/static/red-hat-text-v18-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Red Hat Display - variable */
@font-face {
  font-display: swap;
  font-family: "Red Hat Display Variable";
  font-style: normal;
  src: url("../fonts/red_hat_display/RedHatDisplay-VariableFont_wght.woff2") format("woff2 supports variations"), url("../fonts/red_hat_display/RedHatDisplay-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 100 900;
}
/* Red Hat Display Italic - variable */
@font-face {
  font-display: swap;
  font-family: "Red Hat Display Variable";
  font-style: italic;
  src: url("../fonts/red_hat_display/RedHatDisplay-Italic-VariableFont_wght.woff2") format("woff2 supports variations"), url("../fonts/red_hat_display/RedHatDisplay-Italic-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 100 900;
}
/* Red Hat Text - variable */
@font-face {
  font-display: swap;
  font-family: "Red Hat Text Variable";
  font-style: normal;
  src: url("../fonts/red_hat_text/RedHatText-VariableFont_wght.woff2") format("woff2 supports variations"), url("../fonts/red_hat_text/RedHatText-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 100 900;
}
/* Red Hat Text italic - variable */
@font-face {
  font-display: swap;
  font-family: "Red Hat Text Variable";
  font-style: italic;
  src: url("../fonts/red_hat_text/RedHatText-Italic-VariableFont_wght.woff2") format("woff2 supports variations"), url("../fonts/red_hat_text/RedHatText-Italic-VariableFont_wght.woff2") format("woff2-variations");
  font-weight: 100 900;
}
.heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height);
  color: var(--h1-color);
  margin-top: var(--h1-spacing-top);
  margin-bottom: var(--h1-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-xxl);
  }
}

.heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
  font-family: var(--h2-font-family);
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height);
  color: var(--h2-color);
  margin-top: var(--h2-spacing-top);
  margin-bottom: var(--h2-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-xxl);
  }
}

.heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
  font-family: var(--h3-font-family);
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--h3-line-height);
  color: var(--h3-color);
  margin-top: var(--h3-spacing-top);
  margin-bottom: var(--h3-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-xxl);
  }
}

.heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
  font-family: var(--h4-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--h4-line-height);
  color: var(--h4-color);
  margin-top: var(--h4-spacing-top);
  margin-bottom: var(--h4-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-xxl);
  }
}

.heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
  font-family: var(--h5-font-family);
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--h5-line-height);
  color: var(--h5-color);
  margin-top: var(--h5-spacing-top);
  margin-bottom: var(--h5-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-xxl);
  }
}

.heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
  font-family: var(--h6-font-family);
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--h6-line-height);
  color: var(--h6-color);
  margin-top: var(--h6-spacing-top);
  margin-bottom: var(--h6-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-xl);
  }
}
@media screen and (min-width: 96em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-xxl);
  }
}

p,
ul,
ol {
  margin-top: 0;
}
p a,
ul a,
ol a {
  -webkit-text-decoration: var(--paragraph-link-decoration);
  text-decoration: var(--paragraph-link-decoration);
}
p a:hover,
ul a:hover,
ol a:hover {
  --paragraph-link-decoration: var(--paragraph-link-decoration-hover);
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

code {
  color: var(--code-color);
}

pre {
  padding: 1rem;
  background: var(--pre-color-background);
  color: var(--pre-color);
  overflow-x: scroll;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: var(--hr-border);
}

.li--block {
  margin-bottom: 1rem;
}

.ce_text,
.content-text {
  margin-bottom: var(--base-spacing-unit);
}

::-moz-selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

::selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-weight: var(--headings-font-weight);
  font-variant-numeric: lining-nums;
  letter-spacing: var(--headings-letter-spacing);
  font-style: normal;
  text-wrap: balance;
  z-index: 10;
}
h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup {
  display: block;
  margin-bottom: -3.5em;
  line-height: 1;
  margin-top: 1.5em;
  font-family: var(--base-font-family);
  font-weight: 200;
  font-size: 0.45em;
  color: #fff;
  opacity: 0.7;
}

h1,
h2 {
  padding-left: 0.5em;
  font-weight: 800;
}
h1:before,
h2:before {
  content: "";
  width: 5px;
  height: 80%;
  display: block;
  background-color: var(--color-default);
  position: absolute;
  left: 0;
  top: 10%;
}
@media screen and (min-width: 96em) {
  h1:before,
  h2:before {
    width: 10px;
    left: 0;
  }
}

h2::before {
  top: 5%;
  height: 90%;
}

.big-headline h1,
.big-headline h2 {
  font-weight: 800;
  padding-left: 0;
  word-break: auto-phrase;
  font-size: clamp(2em, 4vw, 3.35em);
}
@media screen and (min-width: 68.75em) {
  .big-headline h1,
  .big-headline h2 {
    font-size: clamp(1em, 8vw, 3em);
  }
}
.big-headline h1:before,
.big-headline h2:before {
  content: none;
}

.subline {
  display: block;
  font-size: 1rem;
  opacity: 0.5;
}

.details-h1 h1 br {
  font-size: 30px;
}

@media screen and (max-width: 68.74875em) {
  h2 {
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

h2.content-headline,
.ce_form h2 {
  margin-bottom: 1.5rem;
}

h1 + .rte h2 {
  padding-bottom: 0 !important;
  font-size: 1.6em;
}
@media screen and (min-width: screne-lg) {
  h1 + .rte h2 {
    font-size: 2em;
  }
}
h1 + .rte h2:before, h1 + .rte h2:after {
  content: none !important;
}

h3,
h4 {
  font-weight: 600;
}

h3 + h4 {
  margin-top: 1rem;
}

h4 + h3,
h5 + h3 {
  margin-top: -1rem;
}

.h4 {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-top: var(--h4-spacing-top);
  margin-bottom: var(--h4-spacing-bottom);
}
@media screen and (min-width: 58.75em) {
  .h4 {
    font-size: var(--h4-font-size-lg);
  }
}
@media screen and (min-width: 96em) {
  .h4 {
    font-size: var(--h4-font-size-xxl);
  }
}
.h4 a {
  text-decoration: none;
}

.no-design h2:before {
  content: none;
}

.angebote-title {
  text-wrap: pretty;
}

p {
  text-wrap-style: pretty;
}

p,
ul,
ol,
form {
  margin-top: 0;
  margin-bottom: var(--base-spacing-unit-xs);
}
p a,
ul a,
ol a,
form a {
  -webkit-text-decoration: var(--paragraph-link-decoration);
  text-decoration: var(--paragraph-link-decoration);
  text-decoration-thickness: 1px;
  font-weight: 300;
}
p a:hover,
ul a:hover,
ol a:hover,
form a:hover {
  --paragraph-link-decoration: var(--paragraph-link-decoration-hover);
}

ul {
  list-style: none;
  margin: 0 0 20px 15px;
  padding: 0;
}
ul li {
  padding: 5px 0;
  text-indent: -12px;
}
ul li:before {
  content: "·";
  display: inline;
  vertical-align: baseline;
  margin-right: 10px;
  color: var(--color-highlight);
}

.highlight, a.btn--primary.highlight a,
span.btn--primary.highlight a,
button.btn--primary.highlight a,
.content-hyperlink.btn--primary.highlight a {
  color: var(--color-highlight);
}

p + ul {
  margin-top: -10px;
}

strong {
  font-weight: 600;
  font-variation-settings: "wght" 600;
}

.text-center {
  text-align: center;
}

.text-big {
  font-size: 18px;
}
@media screen and (min-width: 58.75em) {
  .text-big {
    font-size: 25px;
  }
}
@media screen and (min-width: 68.75em) {
  .text-big {
    font-size: 35px;
  }
}

.font-big {
  font-size: clamp(18px, 2vw, 25px);
  color: var(--headings__color);
  line-height: 1.5;
}
@media screen and (min-width: 68.75em) {
  .font-big h2 {
    margin-bottom: 30px;
  }
}

.font-special {
  font-family: var(--headings-font-family-special);
  font-size: clamp(30px, 2vw, 35px);
}

.ce_text,
.content-text,
.text-modul {
  margin-bottom: var(--base-spacing-unit);
}

.content-accordion h2 {
  font-weight: 800;
  margin-bottom: 1em;
}

/*************************************

LIST SETTINGS

*************************************/
.check-list ul {
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (min-width: 58.75em) {
  .check-list ul {
    margin: 0 0 0 30px;
  }
}
.check-list ul li {
  line-height: 1.5;
  padding: 5px 0;
  text-indent: -20px;
}
@media screen and (min-width: 58.75em) {
  .check-list ul li {
    text-indent: -30px;
  }
}
.check-list ul li:before {
  content: "";
  display: inline-block;
  background: url("../img/icons/check-icon.svg") no-repeat;
  min-width: 15px;
  height: 10px;
  background-size: contain;
  margin-right: 5px;
}
@media screen and (min-width: 58.75em) {
  .check-list ul li:before {
    vertical-align: baseline;
    margin-right: 10px;
    min-width: 20px;
    height: 15px;
  }
}
.check-list ul li ul {
  list-style: revert;
  margin: 0;
  margin-bottom: 10px;
}
.check-list ul li ul li {
  text-indent: 0;
  margin-left: 15px;
}
.check-list ul li ul li:before {
  content: none;
}

.content-list ol {
  padding: 0;
}
@media screen and (max-width: 95.99875em) {
  .content-list ol {
    margin-left: 3em;
  }
}
.content-list ol li {
  position: relative;
  padding: 40px 15px 30px;
  font-size: 1.1em;
}
.content-list ol li span {
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 0.8em;
}
.content-list ol li::marker {
  font-family: var(--headings-font-family);
  font-size: 2em;
  color: var(--color-default);
  font-variant-numeric: lining-nums;
}
.content-list ol li:after {
  content: "";
  position: absolute;
  left: -1000px;
  right: -1000px;
  bottom: 0;
  background-color: var(--color-default);
  height: 1px;
  opacity: 0.8;
}

.symbol-list ul {
  list-style: none;
  margin: 0 0 0 30px;
  padding: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.symbol-list ul li {
  line-height: 1.5;
  padding: 5px 0;
  text-indent: -30px;
}
.symbol-list ul li:before {
  content: "";
  display: inline-block;
  background: url("../img/icons/zimmer-icons/allgemein-icon.svg") no-repeat;
  min-width: 15px;
  height: 20px;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 58.75em) {
  .symbol-list ul li:before {
    min-width: 20px;
    height: 25px;
    vertical-align: middle;
  }
}
.symbol-list ul li ul {
  list-style: revert;
  margin: 0;
  margin-bottom: 10px;
}
.symbol-list ul li ul li {
  text-indent: 0;
  margin-left: 15px;
}
.symbol-list ul li ul li:before {
  content: none;
}

[id=wrapper] {
  min-height: 100vh;
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-template-columns: 100%;
  margin-left: auto;
  margin-right: auto;
  background: var(--layout-wrapper-background);
}

[id=header] {
  background: var(--layout-header-background);
  color: var(--layout-header-color);
}
[id=header] > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
}

[id=footer] {
  background: var(--layout-footer-background);
  color: var(--layout-footer-color);
}
[id=footer] > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
}

@media screen and (min-width: 96em) {
  .mod_article.container-small > .inside {
    max-width: 1500px;
    margin: 0 auto;
  }
}

.mod_article.container-form > .inside {
  max-width: 1200px;
}

.container-gray {
  background: linear-gradient(180deg, #e1e1e1, rgba(225, 225, 225, 0));
  padding-top: 100px;
  margin-top: 100px;
}

.column-2 {
  display: grid;
  justify-content: center;
  margin: 0;
}
.column-2.full {
  max-width: none;
}
@media screen and (min-width: 58.75em) {
  .column-2 {
    display: block;
    max-width: 650px;
    margin: 0 auto;
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .column-2 h1:first-child,
  .column-2 h2:first-child,
  .column-2 h3:first-child {
    -moz-column-span: all;
    column-span: all;
  }
}
@media screen and (min-width: 68.75em) {
  .column-2 {
    max-width: 850px;
  }
}
@media screen and (min-width: 96em) {
  .column-2 {
    -moz-column-gap: 200px;
    column-gap: 200px;
  }
}

.logo-white {
  filter: brightness(0) grayscale(1) invert(1);
}

/*************************************

FOOTER SECTION

*************************************/
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 2.5em;
  font-family: var(--headings-font-family);
}
@media screen and (max-width: 68.74875em) {
  .footer-links {
    font-size: 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
}

#footer {
  position: relative;
  margin-top: 100px;
  border-top: 1px solid hsla(var(--color-default-hue), var(--color-default-sat), var(--color-default-luma), 0.35);
  background-color: var(--color-default);
  color: #fff;
  padding-top: 70px;
  z-index: 11000;
}
#footer > .inside {
  overflow: hidden;
}
#footer .font-big {
  font-size: clamp(20px, 2vw, 30px);
  margin-bottom: 50px;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
#footer .logo-white a:after,
#footer .logo a:after {
  content: none;
}
#footer .logo {
  display: inline-block;
  background-color: #fff;
  padding: 10px;
}
#footer .social-media {
  filter: brightness(0) grayscale(1) invert(1);
}
#footer .social-media a {
  width: 30px;
  transition: all 0.3s;
}
#footer .social-media a:after {
  content: none;
}
#footer .social-media a:hover {
  transform: translateY(-3px);
}

.footer-infos {
  font-size: clamp(20px, 2vw, 27px);
}
.social-media {
  display: flex;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (min-width: 58.75em) {
  .footer-bottom {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.footer-bottom .copyright {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 10px;
  font-size: 0.85em;
  justify-content: center;
}
@media screen and (min-width: 58.75em) {
  .footer-bottom .copyright {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 96em) {
  .footer-bottom .copyright {
    font-size: 1em;
    padding-bottom: 20px;
  }
}
.footer-bottom .copyright .content-hyperlink {
  position: relative;
}
.footer-bottom .copyright .content-hyperlink:not(:last-child):after {
  content: "·";
  position: absolute;
  top: 50%;
  right: -11px;
  transform: translateY(-45%);
}
.footer-bottom .copyright a img {
  margin: 0;
  filter: brightness(0) contrast(0);
  transition: all 0.3s;
}
.footer-bottom .copyright a:hover img {
  filter: brightness(1) contrast(1);
}
@media screen and (max-width: 68.74875em) {
  .footer-bottom .content-image {
    order: 2;
    width: 100%;
  }
  .footer-bottom .content-image img {
    margin: 0 auto;
  }
}

.mod_article {
  position: relative;
}
.mod_article > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
  padding-top: var(--article-spacing-top);
  padding-bottom: var(--article-spacing-bottom);
}

.article--full > .inside {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.mod_article {
  overflow: hidden;
}

.article--full.no-padding > .inside {
  padding-left: 0;
  padding-right: 0;
}

.inside-fullwidth {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  margin-bottom: calc(2 * var(--base-spacing-unit));
}

.content-text figure {
  margin-bottom: 1em;
}

.ce_player .video_container,
.ce_youtube .video_container {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.content-player figure:has(video),
.content-player figure:has(iframe),
.content-youtube figure:has(video),
.content-youtube figure:has(iframe) {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.ce_player video,
.content-player video {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.ce_youtube iframe,
.ce_youtube a,
.content-youtube iframe,
.content-youtube a {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}
.ce_youtube button,
.content-youtube button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
}
.ce_youtube button img,
.content-youtube button img {
  grid-column: 1/-1;
  grid-row: 1;
}
.ce_youtube button p,
.content-youtube button p {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: var(--base-spacing-unit);
  background: var(--base-overlay-background);
  color: var(--color-text-inverted);
}

figure {
  position: relative;
}

.border-round figure {
  border-radius: var(--base-border-radius);
  overflow: hidden;
}

figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7019607843);
  color: black;
  font-size: 14px;
  opacity: 0.5;
}

.hero figcaption {
  bottom: 50px;
  opacity: 1;
}

.gradient-smooth {
  position: relative;
}
.gradient-smooth:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, var(--color-page-background), transparent, var(--color-page-background));
  z-index: 1;
}
.gradient-smooth:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--color-page-background), transparent, var(--color-page-background));
}

@media screen and (min-width: 58.75em) {
  .img-right {
    margin-right: -10vw;
  }
}
@media only screen and (min-width: 2100px) {
  .img-right {
    margin-right: 0;
  }
}

@media screen and (min-width: 58.75em) {
  .bildtext-wrapper {
    aspect-ratio: 16/9;
  }
  .bildtext-wrapper.right .content-image {
    position: absolute;
    right: 0;
    left: 50%;
  }
  .bildtext-wrapper.left .content-image {
    position: absolute;
    right: 50%;
    left: 0;
  }
}

.article-img .content-image {
  border-radius: 15px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em) {
  .article-img .content-image {
    margin-bottom: 0;
  }
}
.article-img.left .content-image {
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .article-img.left .content-image {
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (min-width: 68.75em) {
  .article-img.left .content-image {
    border-radius: 0 40px 40px 0;
  }
}
@media screen and (min-width: 58.75em) {
  .article-img.left > .inside > .row > div > .content-image,
  .article-img.left > .inside > .autogrid_row > div > .content-image,
  .article-img.left > div > .content-image {
    margin-left: calc(var(--base-spacing-unit-lg) * -1);
  }
}
@media only screen and (min-width: 1500px) {
  .article-img.left > .inside > .row > div > .content-image,
  .article-img.left > .inside > .autogrid_row > div > .content-image,
  .article-img.left > div > .content-image {
    margin-left: calc((100vw - (80em - var(--base-spacing-unit-lg))) / -2);
  }
}
@media screen and (min-width: 96em) {
  .article-img.left > .inside > .row > div > .content-image,
  .article-img.left > .inside > .autogrid_row > div > .content-image,
  .article-img.left > div > .content-image {
    margin-left: calc((100vw - (80em - var(--base-spacing-unit-lg))) / -2);
  }
}
.article-img.right .content-image {
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .article-img.right .content-image {
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (min-width: 68.75em) {
  .article-img.right .content-image {
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (min-width: 58.75em) {
  .article-img.right > .inside > .row > div > .content-image,
  .article-img.right > .inside > .autogrid_row > div > .content-image,
  .article-img.right > div > .content-image {
    margin-right: calc(var(--base-spacing-unit-lg) * -1);
  }
}
@media only screen and (min-width: 1500px) {
  .article-img.right > .inside > .row > div > .content-image,
  .article-img.right > .inside > .autogrid_row > div > .content-image,
  .article-img.right > div > .content-image {
    margin-right: calc((100vw - (80em - var(--base-spacing-unit-lg))) / -2);
  }
}
@media screen and (min-width: 96em) {
  .article-img.right > .inside > .row > div > .content-image,
  .article-img.right > .inside > .autogrid_row > div > .content-image,
  .article-img.right > div > .content-image {
    margin-right: calc((100vw - (80em - var(--base-spacing-unit-lg))) / -2);
  }
}
.article-img > .row > div > .content-image figure, .article-img.row > div > .content-image figure,
.article-img .autogrid_row > div > .content-image figure, .article-img.autogrid_row > div > .content-image figure {
  height: 100%;
}
.article-img > .row > div > .content-image figure picture, .article-img.row > div > .content-image figure picture,
.article-img .autogrid_row > div > .content-image figure picture, .article-img.autogrid_row > div > .content-image figure picture {
  height: 100%;
}
.article-img > .row > div > .content-image figure picture img, .article-img.row > div > .content-image figure picture img,
.article-img .autogrid_row > div > .content-image figure picture img, .article-img.autogrid_row > div > .content-image figure picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-gallery ul li {
  border: none;
  padding: 0;
}
.content-gallery ul li a {
  display: block;
  padding: 0;
}
.content-gallery figure {
  overflow: hidden;
}
.content-gallery img {
  width: 100%;
}

.round-corners figure {
  border-radius: 30px;
  overflow: hidden;
}

video {
  -o-object-fit: cover;
  object-fit: cover;
}

.content-player figure {
  border-radius: 30px;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  bottom: -50px;
  z-index: 1;
}
@media screen and (min-width: 34.375em) {
  .bg-image {
    right: 30vw;
  }
}
@media screen and (min-width: 58.75em) {
  .bg-image {
    right: 50vw;
  }
}
@media screen and (min-width: 68.75em) {
  .bg-image {
    right: 80vw;
  }
}
.bg-image figure {
  height: 100%;
}
.bg-image figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.1;
}
.bg-image.full {
  left: initial;
  right: 0;
  max-width: none;
  height: 110%;
  z-index: -1;
}
.bg-image.full img {
  width: auto;
  height: 100%;
  opacity: 0.2;
}

.download-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  color: #fff;
  background-color: var(--color-default);
  padding: 3em 2.5em;
  border-radius: var(--base-border-radius);
  transition: all 0.3s;
}
.download-box:hover {
  transform: translateY(-3px);
}
.download-box:active {
  transform: translateY(0);
}
.download-box figure {
  width: 60px;
  margin-bottom: 2em;
  filter: brightness(0) invert(1);
}
.download-box > a {
  font-size: 1.5em;
  color: #fff;
  font-weight: 600;
  overflow-wrap: break-word;
  text-wrap: balance;
  hyphens: auto;
}
.download-box > span {
  padding-top: 2em;
  font-weight: 600;
}

.ce_comments .submit, input.submit,
button.submit, div.btn > a,
div.btn > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn,
span.btn,
button.btn {
  border-radius: var(--button-border-radius);
  padding: var(--button-spacing);
  display: inline-block;
  border: var(--button-border-width) var(--button-border-style, solid) var(--button-border-color, transparent);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  text-align: center;
  background: transparent;
  color: var(--button-color);
  background-image: none;
  white-space: nowrap;
  text-decoration: none;
}

.ce_comments .submit, input.submit,
button.submit, a.btn--primary a,
span.btn--primary a,
button.btn--primary a,
.content-hyperlink.btn--primary a, div.btn--primary > a,
div.btn--primary > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn--primary,
span.btn--primary,
button.btn--primary {
  background: var(--button-background);
  color: var(--button-color);
}
.ce_comments .submit:hover, input.submit:hover,
button.submit:hover, a.btn--primary a:hover,
span.btn--primary a:hover,
button.btn--primary a:hover,
.content-hyperlink.btn--primary a:hover, div.btn--primary > a:hover,
div.btn--primary > button:hover,
.ce_toplink > a:hover,
.ce_toplink > button:hover,
.toplink > a:hover,
.toplink > button:hover,
.content-toplink > a:hover,
.content-toplink > button:hover, a.btn--primary:hover,
span.btn--primary:hover,
button.btn--primary:hover {
  --button-background: var(--button-background-hover);
  --button-color: var(--button-color-hover);
}

a.btn,
span.btn,
button.btn {
  margin-bottom: var(--base-spacing-unit);
}

div.btn:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child),
.content-toplink:not(:last-child) {
  margin-bottom: var(--base-spacing-unit);
}

div.btn--left {
  text-align: left;
}

div.btn--center {
  text-align: center;
}

div.btn--right {
  text-align: right;
}

.btn--floated {
  float: left;
  margin-right: var(--base-spacing-unit-xs);
}

.ce_toplink a,
.toplink a,
.content-toplink a {
  text-decoration: none;
}

.back {
  border-top: var(--base-border);
  margin-top: var(--base-spacing-unit);
  padding-top: var(--base-spacing-unit-sm);
}
.back a {
  text-decoration: none;
}

.line-link, .mod_newscategories ul li a,
.mod_newscategories ul li strong, [id=header] > .inside .telefon a, .h4 a, .footer-links a, #footer a, .footer-bottom .copyright a {
  display: inline-block;
}
.line-link:after, .mod_newscategories ul li a:after,
.mod_newscategories ul li strong:after, [id=header] > .inside .telefon a:after, .h4 a:after, .footer-links a:after, #footer a:after, .footer-bottom .copyright a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0;
  background-color: var(--color-highlight);
  opacity: 0;
  transition: all 0.3s;
}
.line-link:hover:after, .mod_newscategories ul li a:hover:after,
.mod_newscategories ul li strong:hover:after, [id=header] > .inside .telefon a:hover:after, .h4 a:hover:after, .footer-links a:hover:after, #footer a:hover:after, .footer-bottom .copyright a:hover:after {
  width: 100%;
  opacity: 1;
}

.ce_comments .submit, input.submit,
button.submit, a.btn,
span.btn,
button.btn, div.btn > a,
div.btn > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button {
  position: relative;
  padding: var(--button-spacing);
  border: var(--button-border-width) var(--button-border-style, solid) var(--button-border-color);
  border-radius: var(--button-border-radius);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-variation-settings: "wght" var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: center;
  background: var(--button-background);
  color: var(--button-color);
  background-image: none;
  white-space: break-spaces;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  z-index: 10;
}
@media screen and (min-width: 68.75em) {
  .ce_comments .submit, input.submit,
  button.submit, a.btn,
  span.btn,
  button.btn, div.btn > a,
  div.btn > button,
  .ce_toplink > a,
  .ce_toplink > button,
  .toplink > a,
  .toplink > button,
  .content-toplink > a,
  .content-toplink > button {
    font-size: 16px;
  }
}

.ce_comments .submit, input.submit,
button.submit, a.btn--primary a,
span.btn--primary a,
button.btn--primary a,
.content-hyperlink.btn--primary a, a.btn--primary,
span.btn--primary,
button.btn--primary, div.btn--primary > a,
div.btn--primary > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button {
  color: var(--button-color);
  margin-top: auto;
  transition: all 0.2s;
}
.ce_comments .submit:hover, input.submit:hover,
button.submit:hover, a.btn--primary a:hover,
span.btn--primary a:hover,
button.btn--primary a:hover,
.content-hyperlink.btn--primary a:hover, a.btn--primary:hover,
span.btn--primary:hover,
button.btn--primary:hover, div.btn--primary > a:hover,
div.btn--primary > button:hover,
.ce_toplink > a:hover,
.ce_toplink > button:hover,
.toplink > a:hover,
.toplink > button:hover,
.content-toplink > a:hover,
.content-toplink > button:hover {
  background-color: var(--color-highlight);
  color: #fff;
  border-color: var(--color-highlight);
  transform: translateY(-3px);
}
.ce_comments .submit:hover:after, input.submit:hover:after,
button.submit:hover:after, a.btn--primary a:hover:after,
span.btn--primary a:hover:after,
button.btn--primary a:hover:after,
.content-hyperlink.btn--primary a:hover:after, a.btn--primary:hover:after,
span.btn--primary:hover:after,
button.btn--primary:hover:after, div.btn--primary > a:hover:after,
div.btn--primary > button:hover:after,
.ce_toplink > a:hover:after,
.ce_toplink > button:hover:after,
.toplink > a:hover:after,
.toplink > button:hover:after,
.content-toplink > a:hover:after,
.content-toplink > button:hover:after {
  filter: none;
}
.ce_comments .white.submit, .ce_comments .text-modul.blue .submit.btn--primary, .text-modul.blue .ce_comments .submit.btn--primary, input.white.submit, .text-modul.blue input.submit.btn--primary,
button.white.submit, a.btn--primary a.white,
span.btn--primary a.white,
button.btn--primary a.white,
.content-hyperlink.btn--primary a.white, a.white.btn--primary, .text-modul.blue a.btn--primary,
span.white.btn--primary,
.text-modul.blue span.btn--primary,
button.white.btn--primary,
.text-modul.blue button.btn--primary, div.btn--primary > a.white,
div.btn--primary > button.white,
.ce_toplink > a.white,
.ce_toplink > button.white,
.toplink > a.white,
.toplink > button.white,
.content-toplink > a.white,
.content-toplink > button.white {
  background-color: #fff;
  border-color: #fff;
  color: var(--color-default);
}

a.btn,
span.btn,
button.btn {
  margin-bottom: var(--base-spacing-unit-xs);
}

div.btn:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child),
.content-toplink:not(:last-child) {
  margin-bottom: var(--base-spacing-unit);
}

div.btn--left {
  text-align: left;
}

div.btn--center {
  text-align: center;
}

div.btn--right {
  text-align: right;
}

.btn--floated {
  float: left;
  margin-right: var(--base-spacing-unit-xs);
}

.ce_toplink a,
.toplink a,
.content-toplink a {
  text-decoration: none;
}

.back {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 10px;
  min-width: auto !important;
  border: none !important;
  transition: all 0.3s;
}
.back:after {
  content: none !important;
}
.back:before {
  content: "";
  display: inline-block;
  background: url("../img/icons/arrow-down-icon.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 17px;
  height: 10px;
  margin-bottom: 5px;
  transform: rotate(90deg);
}
.back:hover {
  transform: translateX(-3px);
}
.back a {
  padding: 5px !important;
  background-color: transparent !important;
  color: var(--text-color) !important;
  border: none !important;
}
.back a:hover {
  transform: none !important;
}

a.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media screen and (min-width: 58.75em) {
  a.overlay {
    display: none;
  }
}

a {
  transition: all 0.3s;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav a {
  text-decoration: none;
}

.nav--horizontal ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 48em) {
  .nav--horizontal ul {
    flex-direction: row;
  }
}
.nav--horizontal a,
.nav--horizontal strong.active,
.nav--horizontal strong.trail,
.nav--horizontal strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--vertical a,
.nav--vertical strong.active,
.nav--vertical strong.trail,
.nav--vertical strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--border {
  border: var(--base-border);
}
.nav--border a,
.nav--border strong.active,
.nav--border strong.trail,
.nav--border strong.forward {
  padding: var(--nav-item-padding) var(--nav-item-padding);
  border-bottom: 1px solid var(--base-border-color);
}
.nav--border a.last,
.nav--border strong.active.last,
.nav--border strong.trail.last,
.nav--border strong.forward.last {
  border-bottom: 0;
}

.nav--breadcrumb {
  border: var(--base-border);
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  display: flex;
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb {
    flex-direction: column;
  }
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb li {
    padding-right: var(--base-spacing-unit);
  }
}
.nav--breadcrumb a:after {
  font-size: 0.75rem;
  display: inline-block;
  content: "►";
  vertical-align: middle;
  padding-left: var(--base-spacing-unit);
}

.nav--select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: var(--base-border);
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}
.nav--select .submit {
  vertical-align: middle;
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}

.nav--pager ul {
  text-align: center;
}
.nav--pager li {
  display: inline-block;
}
.nav--pager .empty {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.nav--pager a {
  padding: var(--base-spacing-unit-sm);
}

.pagination {
  display: grid;
  grid-column: 1/-1;
  margin-top: var(--base-spacing-unit);
  text-align: center;
  line-height: 1;
}
.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination a {
  text-decoration: none;
}
@supports not (display: grid) {
  .pagination {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 34.375em) {
  .pagination {
    grid-template-columns: 1fr 1fr;
  }
}
.pagination p {
  padding: var(--base-spacing-unit-xs);
  padding-left: 0;
  margin: var(--base-spacing-unit-xs);
  margin-left: 0;
  border-top: var(--base-border-width) solid transparent;
}
.pagination li {
  display: inline;
}
.pagination a,
.pagination strong {
  display: inline-block;
  padding: var(--base-spacing-unit-xs);
  margin: var(--base-spacing-unit-xs);
}
.pagination strong {
  border: var(--base-border);
}
.pagination a.next {
  margin-right: 0;
  padding-right: 0;
}
@media screen and (min-width: 34.375em) {
  .pagination p {
    justify-self: start;
  }
  .pagination p + ul {
    justify-self: end;
  }
}

[id=header] {
  position: absolute;
  width: 100%;
  height: 80px;
  padding-top: 10px;
  padding-bottom: 15px;
  opacity: 0;
  animation: fadeInDown 1s ease-out forwards;
  z-index: 10000;
  transition: all 0.3s;
}
@media screen and (min-width: 58.75em) {
  [id=header] {
    height: auto;
  }
}
@media only screen and (min-width: 1500px) {
  [id=header] {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }
}
@media screen and (min-width: 96em) {
  [id=header] {
    padding-left: var(--base-spacing-unit-xl);
    padding-right: var(--base-spacing-unit-xl);
  }
}
[id=header] .d-flex {
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 48em) {
  [id=header] .d-flex {
    gap: 10px;
  }
}
[id=header] .logo {
  position: relative;
  width: 25vw;
  align-self: middle;
}
@media screen and (min-width: 34.375em) {
  [id=header] .logo {
    width: 180px;
  }
}
@media only screen and (min-width: 1500px) {
  [id=header] .logo {
    transform: none;
  }
}
@media screen and (min-width: 96em) {
  [id=header] .logo {
    width: 200px;
  }
}
[id=header] .content-hyperlink a {
  transition: all 0.3s;
}
[id=header] .content-hyperlink:hover a {
  transform: translateY(-3px);
}
[id=header] > .inside {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  padding: 0;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
  height: 100%;
  transition: all 0.3s;
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside {
    align-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 96em) {
  [id=header] > .inside {
    max-width: 80vw;
  }
}
[id=header] > .inside .align--center {
  align-items: flex-start;
}
[id=header] > .inside .telefon a {
  color: #fff;
  font-size: 0.9em;
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside .telefon a {
    font-size: 1.1em;
  }
}
[id=header] > .inside > .row div:has(#mainNav) {
  display: none;
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside > .row div:has(#mainNav) {
    display: grid;
  }
}
@media screen and (min-width: 68.75em) {
  [id=header].is-fixed {
    position: fixed;
    top: -160px;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--color-page-background) 95%, transparent);
    backdrop-filter: blur(5px);
    transform: translateX(-50%);
    padding: 0;
    z-index: 10000;
  }
  [id=header].is-fixed .inside {
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 85vw;
  }
  [id=header].is-fixed .inside .align--center {
    align-items: center;
  }
  [id=header].is-fixed .inside .language-module:before {
    filter: brightness(0);
  }
  [id=header].is-fixed .inside .language-module select {
    color: var(--color-text);
  }
  [id=header].is-fixed .inside #main-menu ul {
    margin-bottom: 0;
  }
  [id=header].is-fixed .inside #main-menu ul li a:hover {
    color: var(--color-default);
  }
  [id=header].is-fixed .inside #main-menu ul li strong,
  [id=header].is-fixed .inside #main-menu ul li .trail {
    color: var(--color-default);
  }
  [id=header].is-fixed.is-visible {
    top: 0;
  }
  [id=header].is-fixed.is-visible #main-menu > ul > li.submenu:after {
    filter: none;
  }
  [id=header].is-fixed.is-visible #main-menu > ul > li > a {
    color: var(--color-text);
  }
  [id=header].is-fixed.is-visible #main-menu > ul > li > a.kontakt-link {
    color: #fff;
  }
  [id=header].is-fixed:before {
    content: none;
  }
}

.top-nav {
  display: none;
}
@media screen and (min-width: 68.75em) {
  .top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
}

#main-menu {
  display: none;
  transition: all 0.3s;
}
@media screen and (min-width: 68.75em) {
  #main-menu {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
#main-menu > ul {
  display: none;
  margin: 0;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}
@media screen and (min-width: 68.75em) {
  #main-menu > ul {
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 96em) {
  #main-menu > ul {
    gap: 50px;
  }
}
#main-menu > ul > li {
  border-bottom: none;
  text-indent: 0;
}
#main-menu > ul > li:hover > ul, #main-menu > ul > li.submenu--active > ul {
  display: block;
}
#main-menu > ul > li:hover > ul > li > ul, #main-menu > ul > li.submenu--active > ul > li > ul {
  display: block;
}
#main-menu > ul > li.submenu:after {
  content: "";
  display: inline-block;
  background: url("../img/icons/arrow-down-icon.svg") no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  margin-left: 3px;
  filter: brightness(0) invert(1);
}
#main-menu > ul > li:before {
  content: none;
}
#main-menu > ul > li a,
#main-menu > ul > li strong {
  display: inline-block;
}
#main-menu > ul > li a:after,
#main-menu > ul > li strong:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color-default);
  opacity: 0;
  transition: all 0.3s;
}
#main-menu > ul > li a:hover:after, #main-menu > ul > li a.active:after,
#main-menu > ul > li strong:hover:after,
#main-menu > ul > li strong.active:after {
  width: 100%;
  opacity: 1;
}
#main-menu > ul > li a.kontakt-link,
#main-menu > ul > li strong.kontakt-link {
  background-color: var(--color-default);
  border-radius: 5px;
  padding: 5px 15px;
  color: #fff;
}
#main-menu > ul > li a.kontakt-link:hover,
#main-menu > ul > li strong.kontakt-link:hover {
  transform: translateY(-3px);
}
#main-menu > ul > li a.trail:after,
#main-menu > ul > li strong.trail:after {
  width: 100%;
  background-color: var(--color-text);
  opacity: 0.3;
}
#main-menu > ul > li strong:after {
  width: 100%;
  opacity: 1;
}
#main-menu > ul > li > a,
#main-menu > ul > li > strong {
  display: inline-block;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 68.75em) {
  #main-menu > ul > li > a,
  #main-menu > ul > li > strong {
    font-size: 17px;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 1400px) {
  #main-menu > ul > li > a,
  #main-menu > ul > li > strong {
    font-size: 22px;
  }
}
#main-menu > ul > li > ul {
  position: absolute;
  display: none;
  background-color: #fff;
  border-radius: calc(var(--base-border-radius) - 15px);
  list-style: none;
  margin: 0;
  padding: 5px 15px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
#main-menu > ul > li > ul > li {
  text-indent: 0;
}
#main-menu > ul > li > ul > li:before {
  content: none;
}
#main-menu > ul > li > ul > li > a,
#main-menu > ul > li > ul > li > strong {
  color: var(--color-text);
  padding-top: 0;
  font-size: 1em;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  text-decoration: none;
}
#main-menu > ul > li > ul > li > ul {
  display: none;
  left: 100%;
}
#main-menu > ul > li > ul > li > ul > li > a,
#main-menu > ul > li > ul > li > ul > li > strong {
  text-decoration: none;
}
@media screen and (min-width: 68.75em) {
  #main-menu > ul > li > ul > li > ul > li > a,
  #main-menu > ul > li > ul > li > ul > li > strong {
    padding: 10px 0;
  }
}
#main-menu > ul li.mega-menu ul {
  list-style: none;
  margin: 0;
}
#main-menu > ul li.mega-menu ul li {
  text-indent: 0;
}
#main-menu > ul li.mega-menu ul li:before {
  content: none;
}
#main-menu > ul li.mega-menu ul li a {
  color: var(--color-text);
}
#main-menu > ul li.mega-menu:hover > ul.level_2, #main-menu > ul li.mega-menu.submenu--active > ul.level_2 {
  display: flex;
}
#main-menu > ul li.mega-menu > ul.level_2 {
  display: none;
  right: 0;
  gap: 5em;
  padding: 3em 5em;
  justify-content: space-between;
  max-width: -moz-max-content;
  max-width: max-content;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 68.75em) {
  #main-menu > ul li.mega-menu > ul.level_2 {
    width: 95vw;
  }
}
@media screen and (min-width: 96em) {
  #main-menu > ul li.mega-menu > ul.level_2 {
    width: 70vw;
  }
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu {
  flex: 1;
  padding-left: 15px;
  border-left: 1px solid var(--color-text);
  margin-left: 10px;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu > a,
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu > strong {
  margin-bottom: 10px;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu a,
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu strong {
  font-weight: 600;
  font-variation-settings: "wght" 600;
  font-size: 1.35em;
}
@media screen and (min-width: 96em) {
  #main-menu > ul li.mega-menu > ul.level_2 > li.submenu a,
  #main-menu > ul li.mega-menu > ul.level_2 > li.submenu strong {
    font-size: 1.5em;
  }
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu a strong,
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu strong strong {
  color: var(--color-default);
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu.fts-icon, #main-menu > ul li.mega-menu > ul.level_2 > li.submenu.sondermaschinenbau-icon, #main-menu > ul li.mega-menu > ul.level_2 > li.submenu.automationstechnologie-icon {
  position: relative;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu.fts-icon:before, #main-menu > ul li.mega-menu > ul.level_2 > li.submenu.sondermaschinenbau-icon:before, #main-menu > ul li.mega-menu > ul.level_2 > li.submenu.automationstechnologie-icon:before {
  content: "";
  position: absolute;
  left: -60px;
  width: 45px;
  height: 45px;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu.fts-icon:before {
  background: url("../img/icons/fahrerlose-transportsysteme-icon.svg") no-repeat;
  background-size: contain;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu.sondermaschinenbau-icon:before {
  background: url("../img/icons/sondermaschinenbau-icon.svg") no-repeat;
  background-size: contain;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu.automationstechnologie-icon:before {
  background: url("../img/icons/kundespezifische-icon.svg") no-repeat;
  background-size: contain;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li {
  padding: 0;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li.submenu > a {
  font-weight: 600;
  font-variation-settings: "wght" 600;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li a,
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li strong {
  font-size: 1em;
  padding: 2px 0;
  text-decoration: none;
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li a {
  font-weight: 400;
  font-variation-settings: "wght" 400;
  color: var(--color-text);
}
#main-menu > ul li.mega-menu > ul.level_2 > li.submenu ul li strong {
  font-weight: 600;
  font-variation-settings: "wght" 600;
  color: var(--color-default);
}

/* ----------------------------------- *
 * HAMBURGER MENÜ
 * ----------------------------------- */
#hamburger {
  position: fixed;
  top: 25px;
  right: 30px;
  width: 50px;
  height: 35px;
  background: none;
  border: none;
  animation: fadeInDown 1s ease-out forwards;
  z-index: 12000;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 68.75em) {
  #hamburger {
    display: none;
  }
}
#hamburger:hover {
  transform: translateY(-3px);
}
#hamburger span {
  display: block;
  position: absolute;
  background-color: #fff;
  height: 4px;
  width: 50px;
  margin: 0 auto;
  opacity: 1;
  border: 1px solid var(--color-text);
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
@media screen and (min-width: 68.75em) {
  #hamburger span {
    border: none;
  }
}
#hamburger span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#hamburger span:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}
#hamburger span:nth-child(3) {
  top: 24px;
  transform-origin: left center;
}
#hamburger.active {
  width: 35px;
}
#hamburger.active span {
  width: 45px;
  background-color: var(--color-default);
  border-color: var(--color-default);
}
#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(-50%);
  top: 0;
  left: -1px;
}
#hamburger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  top: 32px;
}
#hamburger.active span:nth-child(4) {
  opacity: 0;
  visibility: hidden;
}

#mobile-section {
  position: fixed;
  inset: 0;
  background-color: var(--color-page-background);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 11000;
}
@media screen and (min-width: 48em) {
  #mobile-section {
    inset: 0 0 0 40%;
  }
}
@media screen and (min-width: 68.75em) {
  #mobile-section {
    display: none;
  }
}
#mobile-section .inside {
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
}
#mobile-section .inside .mobile-menu-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  height: 80px;
  padding: var(--base-spacing-unit);
  z-index: 1;
}
#mobile-section .inside .mobile-menu-header:after {
  content: "";
  background-color: var(--color-gray-light);
  height: 1px;
  position: absolute;
  left: -1000px;
  right: -1000px;
  bottom: 0;
}
#mobile-section .inside .mobile-menu-header .logo {
  width: 130px;
  transition: all 0.3s;
}
@media screen and (min-width: 48em) {
  #mobile-section .inside .mobile-menu-header .logo {
    display: none;
  }
}
#mobile-section .inside .mobile-menu-header .logo.hidden {
  opacity: 0;
  visibility: hidden;
  margin-top: -30px;
  z-index: -1;
}
#mobile-section .inside .mobile-menu-header .back {
  opacity: 0;
  margin-bottom: 0;
  margin-left: -5px;
  visibility: hidden;
  transition: all 0.3s;
}
#mobile-section .inside .mobile-menu-header .back.active {
  opacity: 1;
  visibility: visible;
}
#mobile-section .inside .mobile-menu-header .no-padding {
  padding: 0;
}
#mobile-section .inside .mobile-menu-header + .autogrid_row {
  margin-bottom: 100px;
}
#mobile-section .inside .mobile-menu-body {
  padding: 0 var(--base-spacing-unit);
  flex: 1;
}
#mobile-section .inside .mobile-bottom {
  position: sticky;
  bottom: 0;
  background-color: #fff;
  padding: var(--base-spacing-unit);
  margin-top: 20px;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#mobile-section .inside .mobile-bottom > .column {
  padding: 0;
}
#mobile-section img {
  transition: all 0.3s;
}
#mobile-section .language-module {
  display: inline-block;
  margin-right: 3em;
  background-color: var(--color-gray-light);
  border-radius: 5px;
  padding: 5px;
  filter: brightness(1);
}
#mobile-section .language-module select {
  color: var(--color-text);
}
#mobile-section .language-module:before {
  content: none;
}
#mobile-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#mobile-menu {
  min-height: 530px;
}
#mobile-menu ul {
  margin: 0 calc(var(--base-spacing-unit) * -1);
}
#mobile-menu ul.active {
  z-index: 1;
}
#mobile-menu ul li {
  text-indent: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-gray-light);
}
#mobile-menu ul li:before {
  content: none;
}
#mobile-menu ul li a,
#mobile-menu ul li strong {
  display: block;
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit);
  text-decoration: none;
  font-weight: 400;
  border-right: 1px solid var(--color-gray-light);
}
#mobile-menu ul li a.submenu,
#mobile-menu ul li strong.submenu {
  font-weight: 600;
  font-size: 1.2em;
}
#mobile-menu ul li strong,
#mobile-menu ul li .trail {
  background-color: var(--color-gray-light);
}
#mobile-menu ul li strong.active,
#mobile-menu ul li .trail.active {
  background-color: var(--color-default);
  color: #fff !important;
}
#mobile-menu > ul > li.submenu {
  display: flex;
  align-items: stretch;
}
#mobile-menu > ul > li.submenu > a,
#mobile-menu > ul > li.submenu > strong {
  flex: 1;
}
#mobile-menu > ul > li.submenu > .submenu-toggle {
  padding: 10px 20px;
  background: none;
  border: none;
}
#mobile-menu > ul > li.submenu > .submenu-toggle .arrow-icon {
  display: block;
  background: url("../img/icons/arrow-right.png") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
#mobile-menu > ul > li > a,
#mobile-menu > ul > li > strong {
  text-decoration: none;
  font-weight: 600;
  font-family: var(--headings-font-family);
  font-size: 1.25em;
}
#mobile-menu > ul > li > a.active,
#mobile-menu > ul > li > strong.active {
  color: var(--color-highlight);
  border-bottom: 1px solid var(--color-highlight);
}
#mobile-menu > ul > li > .submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
#mobile-menu > ul > li > .submenu:after {
  content: "";
  background: url("../img/icons/arrow-down-icon.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 10px;
  transform: rotate(-90deg);
}
#mobile-menu > ul > li > .trail {
  background-color: var(--color-gray-light);
}
#mobile-menu > ul > li > strong {
  cursor: pointer;
}
#mobile-menu > ul > li > ul {
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#mobile-menu > ul > li > ul.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
#mobile-menu > ul > li > ul > li > a,
#mobile-menu > ul > li > ul > li > strong {
  text-decoration: none;
}
#mobile-menu > ul > li > ul > li ul {
  margin: 0;
}
#mobile-menu > ul > li > ul > li ul ul li a,
#mobile-menu > ul > li > ul > li ul ul li strong {
  padding-left: 50px;
}

.content-swiper .swiper-button-prev,
.content-swiper .swiper-button-next {
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slider {
  position: relative;
}
.slider .slider-control {
  position: static;
  height: 0;
}
.slider .slider-control a {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--slider-arrow-size);
  line-height: 1;
  position: absolute;
  display: block;
  color: var(--slider-arrow-color);
  font-family: var(--slider-arrow-font-family);
}
.slider .slider-control a:before {
  padding: var(--base-spacing-unit-sm);
  display: block;
}
.slider .slider-control a:hover {
  opacity: 0.5;
}
.slider .slider-prev:before {
  content: "◄";
}
.slider .slider-next:before {
  content: "►";
}
.slider .slider-menu {
  font-size: var(--slider-menu-point-size);
  line-height: 1;
  top: auto;
  bottom: 0;
}
.slider .slider-menu b {
  color: var(--slider-menu-point-color);
}
.slider .slider-menu b.active {
  color: var(--slider-menu-point-color-active);
}
.slider .slider-menu b:hover {
  opacity: 0.5;
}

.content-swiper h2 {
  margin-bottom: 50px;
}

.content-swiper .controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-swiper .controls > div {
  width: auto;
  padding: 0 50px;
  margin-top: 5px;
}
.content-swiper .controls button {
  position: initial;
  height: auto;
  margin: 0;
}
.content-swiper .controls button:after {
  font-size: 25px;
}
.content-swiper .ce_rsce_cardlink {
  transform: none !important;
  opacity: 1 !important;
  aspect-ratio: 1;
  margin-bottom: 20px;
}
.content-swiper .ce_rsce_cardlink .card-link {
  padding: 35px 35px 0;
  height: auto;
  min-height: auto;
  aspect-ratio: 1;
}
.content-swiper .ce_rsce_cardlink .card-link:before {
  content: none;
}
.content-swiper .ce_rsce_cardlink .card-link:after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
}
.content-swiper .ce_rsce_cardlink .card-link .text-wrapper {
  margin-bottom: 0;
  z-index: 2;
}
.content-swiper .ce_rsce_cardlink .card-link h3 {
  color: var(--color-default);
  margin-bottom: 0;
}
.content-swiper .ce_rsce_cardlink .card-link:hover figure {
  opacity: 1;
}
.content-swiper .ce_rsce_cardlink .card-link:hover figure:before {
  background: var(--color-default);
}
.content-swiper .ce_rsce_cardlink .card-link:hover h3 {
  color: var(--color-text--inverted);
}

@media screen and (min-width: 68.75em) {
  .gallery-carousel-wrapper {
    overflow: hidden;
  }
  .gallery-carousel-wrapper .ce_gallery {
    margin-right: -15vw;
  }
}

.gallery-carousel {
  margin: 0;
  padding-left: 0;
}
@media screen and (min-width: 58.75em) {
  .gallery-carousel li {
    padding: 0 5px;
  }
}
.gallery-carousel li img {
  -o-object-fit: cover;
  object-fit: cover;
}

ul.gallery-kontakt {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.gallery-kontakt li {
  border-bottom: none;
  overflow: hidden;
}

.carousel-cell {
  width: 100%;
}

.flickity-button {
  background: none;
}
.flickity-button:hover, .flickity-button:active {
  background: none;
}

.flickity-slider > .hero {
  width: 100%;
}

.hero-slider.flickity-enabled {
  position: initial;
}
.hero-slider.flickity-enabled .flickity-viewport {
  position: initial;
}

@media screen and (min-width: 58.75em) {
  .mobile-slider {
    display: none;
  }
}

@media screen and (min-width: 58.75em) {
  .swiper .hero-text {
    margin-left: 5vw;
  }
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: var(--color-default);
}

.swiper-pagination {
  position: initial;
  margin-top: 10px;
}
.swiper-pagination span {
  background-color: var(--color-default);
  width: 15px;
  height: 15px;
}

.news-list {
  margin-bottom: var(--base-spacing-unit);
}
.news-list > h1, .news-list > h2, .news-list > h3, .news-list > h4, .news-list > h5, .news-list > h6 {
  margin-bottom: 0;
}
.news-list .info {
  margin-bottom: 0;
}
.news-list .float_left {
  margin-right: var(--base-spacing-unit);
}
.news-list .float_right {
  margin-left: var(--base-spacing-unit);
}
.news-list .layout_short > h1, .news-list .layout_short > h2, .news-list .layout_short > h3, .news-list .layout_short > h4, .news-list .layout_short > h5, .news-list .layout_short > h6,
.news-list .layout_latest > h1,
.news-list .layout_latest > h2,
.news-list .layout_latest > h3,
.news-list .layout_latest > h4,
.news-list .layout_latest > h5,
.news-list .layout_latest > h6,
.news-list .layout_simple > h1,
.news-list .layout_simple > h2,
.news-list .layout_simple > h3,
.news-list .layout_simple > h4,
.news-list .layout_simple > h5,
.news-list .layout_simple > h6 {
  margin-top: var(--base-spacing-unit);
}
.news-list .layout_simple time,
.news-list .layout_simple a,
.news-list .layout_upcoming time,
.news-list .layout_upcoming a {
  padding-top: var(--base-spacing-unit);
  display: inline-block;
}
.news-list .header {
  margin-top: var(--base-spacing-unit);
}

.news-grid {
  display: grid;
  grid-gap: var(--grid-gutter);
  margin-bottom: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 34.375em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-sm), 1fr);
  }
}
@media screen and (min-width: 48em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-md), 1fr);
  }
}
@media screen and (min-width: 58.75em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-lg), 1fr);
  }
}
@media screen and (min-width: 68.75em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-xl), 1fr);
  }
}
.news-grid > h1, .news-grid > h2, .news-grid > h3, .news-grid > h4, .news-grid > h5, .news-grid > h6 {
  grid-column: 1/-1;
}
.news-grid .layout_simple time {
  display: block;
}

.news-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.news-menu a {
  text-decoration: none;
}
.news-menu .year {
  margin-bottom: var(--base-spacing-unit-sm);
}
.news-menu .year > a,
.news-menu .year > .active {
  color: inherit;
  font-weight: var(--headings-font-weight);
  font-family: var(--headings-font-family);
}
.news-menu .level_2 li {
  margin-bottom: var(--base-spacing-unit-xs);
}

.mod_newsreader h1 {
  margin-left: 0;
  padding-left: 0;
}
.mod_newsreader h1:before {
  content: none;
}

.news-overview {
  margin-bottom: 20px;
}
@media screen and (max-width: 47.99875em) {
  .news-overview > div {
    margin-bottom: 0 !important;
  }
}
.news-overview ul {
  list-style: none;
}
@media screen and (max-width: 47.99875em) {
  .news-overview ul {
    margin-bottom: 0 !important;
  }
}
.news-overview ul li:before {
  content: none;
}
.news-overview ul li a,
.news-overview ul li strong {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 10px 15px;
  background-color: transparent;
  color: var(--color-default);
  border: 2px solid var(--color-default);
  text-decoration: none;
  border-radius: 5px;
}
.news-overview ul li a:hover {
  background-color: var(--color-default);
  color: #fff;
}
.news-overview ul li strong {
  background-color: var(--color-default);
  color: #fff;
}

.baer-news {
  display: grid;
  grid-template-columns: auto;
  gap: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 34.375em) {
  .baer-news {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 58.75em) {
  .baer-news {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.baer-news .news-box {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  color: var(--color-text);
  background-color: #f3f3f3;
  transform: none;
  border-radius: var(--base-border-radius);
  transition: all 0.3s;
  clip-path: none;
  overflow: hidden;
}
.baer-news .news-box .description {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 0.5em 1em 1.5em 1em;
}
.baer-news .news-box a.link-overlay {
  position: absolute;
  inset: 0;
}
.baer-news .news-box ::-moz-selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
.baer-news .news-box ::selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
.baer-news .news-box .text-wrapper {
  transform: none;
}
.baer-news .news-box .text-wrapper h3 {
  position: static;
  font-size: 1.2em;
  font-weight: 800;
  margin-top: 0;
}
@media screen and (min-width: 96em) {
  .baer-news .news-box .text-wrapper h3 {
    font-family: var(--base-font-family);
    color: var(--color-text);
  }
}
.baer-news .news-box .more {
  margin-top: auto;
}
.baer-news .news-box:hover {
  transform: translateY(-3px);
  background: var(--color-default);
  color: #fff;
}
.baer-news .news-box:hover p {
  color: #fff !important;
}
.baer-news .news-box:hover a {
  color: #fff !important;
}
.baer-news .news-box:hover h3 {
  color: #fff !important;
}

.mod_newscategories ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.mod_newscategories ul li {
  width: auto;
  text-indent: 0;
  margin: 0;
  padding: 5px 10px;
}
.mod_newscategories ul li:before {
  content: none;
}
.mod_newscategories ul li a,
.mod_newscategories ul li strong {
  text-decoration: none;
}
.mod_newscategories ul li strong:after,
.mod_newscategories ul li a.trail:after {
  width: 100%;
  opacity: 1;
}

.events-list {
  margin-bottom: var(--base-spacing-unit);
}
.events-list > h1, .events-list > h2, .events-list > h3, .events-list > h4, .events-list > h5, .events-list > h6 {
  margin-bottom: 0;
}
.events-list .image_container {
  margin-top: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
.events-list .float_left {
  margin-right: var(--base-spacing-unit);
}
.events-list .float_right {
  margin-left: var(--base-spacing-unit);
}
.events-list .event > h1, .events-list .event > h2, .events-list .event > h3, .events-list .event > h4, .events-list .event > h5, .events-list .event > h6 {
  margin-top: var(--base-spacing-unit);
}
.events-list .layout_upcoming time,
.events-list .layout_upcoming a {
  padding-top: var(--base-spacing-unit);
  display: inline-block;
}
.events-list .header {
  margin-top: var(--base-spacing-unit);
}

.events-grid {
  display: grid;
  grid-gap: var(--grid-gutter);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 34.375em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-sm), 1fr);
  }
}
@media screen and (min-width: 48em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-md), 1fr);
  }
}
@media screen and (min-width: 58.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-lg), 1fr);
  }
}
@media screen and (min-width: 68.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-xl), 1fr);
  }
}

.events-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.events-menu a {
  text-decoration: none;
}
.events-menu .year {
  margin-bottom: var(--base-spacing-unit-sm);
}
.events-menu .year > a,
.events-menu .year > .active {
  color: inherit;
  font-weight: var(--headings-font-weight);
  font-family: var(--headings-font-family);
}
.events-menu .level_2 li {
  margin-bottom: var(--base-spacing-unit-xs);
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: var(--base-spacing-unit-xs);
}

input.text,
input.captcha,
textarea.textarea,
select.select {
  display: block;
  width: 100%;
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit-sm);
  border-radius: var(--forms-input-border-radius);
  border: var(--forms-input-border-width) solid var(--forms-input-border-color);
  background-clip: padding-box;
  background-image: none;
  background-color: var(--forms-input-background);
  line-height: var(--forms-input-line-height);
}

textarea.textarea {
  height: auto;
}

.widget-text,
.widget-textarea,
.widget-password {
  margin-bottom: var(--base-spacing-unit);
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=file] {
  display: block;
  line-height: 1;
}

input.radio,
input.checkbox {
  margin-left: 1px;
  margin-right: var(--base-spacing-unit-xs);
  line-height: var(--base-line-height);
  vertical-align: middle;
}
input.radio + label,
input.checkbox + label {
  margin-right: var(--base-spacing-unit-xs);
  margin-bottom: 0;
  font-weight: normal;
}

.widget-radio,
.widget-checkbox,
.widget-select,
.widget-upload {
  margin-bottom: var(--base-spacing-unit);
}
.widget-radio legend,
.widget-checkbox legend,
.widget-select legend,
.widget-upload legend {
  font-weight: 700;
}

.radio_container > span,
.checkbox_container > span {
  display: inline-flex;
  align-items: center;
}

span.mandatory {
  color: var(--forms-mandatory-color);
}

p.error {
  margin-bottom: 0;
}

form {
  position: relative;
  z-index: 2;
}

form.form-center {
  max-width: 850px;
  margin: 0 auto;
}

input.text,
input.captcha,
textarea.textarea,
select.select {
  display: block;
  width: 100%;
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit-sm);
  border-radius: var(--forms-input-border-radius);
  border: none;
  border-bottom: var(--forms-input-border-width) solid var(--forms-input-border-color);
  background-clip: padding-box;
  background-image: none;
  background-color: var(--forms-input-background);
  line-height: var(--forms-input-line-height);
}

.widget-text,
.widget-textarea,
.widget-password {
  margin-bottom: var(--base-spacing-unit-sm);
}

label {
  margin-bottom: 7px;
}

@media screen and (max-width: 58.74875em) {
  .checkbox_container {
    display: flex;
    flex-flow: column;
    gap: 5px;
  }
}
input.radio,
input.checkbox {
  margin-left: 1px;
  margin-right: var(--base-spacing-unit-xs);
  line-height: var(--base-line-height);
  vertical-align: middle;
}
input.radio + label,
input.checkbox + label {
  margin-right: var(--base-spacing-unit-xs);
  margin-bottom: 0;
  font-weight: inherit;
}

.widget-radio,
.widget-checkbox,
.widget-select,
.widget-upload {
  margin-top: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
.widget-radio legend,
.widget-checkbox legend,
.widget-select legend,
.widget-upload legend {
  font-weight: 400;
}

.widget-upload label {
  font-weight: 600;
}

.radio_container > span,
.checkbox_container > span {
  display: inline-flex;
  align-items: baseline;
}

#wellness-anfrageformular .checkbox_container.checkbox-liste > span {
  display: block;
}

span.mandatory {
  color: var(--forms-mandatory-color);
}

p.error {
  margin-bottom: 0;
}

.form-confirmation {
  padding: 15px 45px 50px;
  background-color: #006ead;
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.form-confirmation h1, .form-confirmation h2, .form-confirmation h3, .form-confirmation h4, .form-confirmation h5, .form-confirmation h6 {
  color: #fff;
}

.ce_accordion {
  margin-bottom: var(--accordion-spacing);
}
.ce_accordion:not(.handorgel) .toggler {
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion:not(.handorgel) .toggler:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion:not(.handorgel) .toggler:focus {
  outline: 0;
}
.ce_accordion.handorgel .toggler button {
  display: flex;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion.handorgel .toggler button:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion.handorgel .toggler button:focus {
  outline: 0;
}
.ce_accordion .accordion {
  background: var(--accordion-content-background);
  overflow: hidden;
}
.ce_accordion .accordion > div {
  padding: var(--accordion-content-spacing);
}

.content-accordion .handorgel__header {
  line-height: var(--base-line-height);
  margin-bottom: var(--accordion-spacing);
}
.content-accordion .handorgel__header__button {
  display: flex;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.content-accordion .handorgel__header__button:hover {
  color: var(--accordion-toggler-color-hover);
}
.content-accordion .handorgel__header__button:focus {
  outline: 0;
}
.content-accordion .handorgel__content {
  background: var(--accordion-content-background);
  overflow: hidden;
}
.content-accordion .handorgel__content > div {
  padding: var(--accordion-content-spacing);
}

.content-accordion {
  border-bottom: none;
}
.content-accordion .handorgel__header {
  border-radius: calc(var(--base-border-radius) * 0.8);
  padding-left: 0;
  overflow: hidden;
}
.content-accordion .handorgel__header:before {
  content: none;
}
.content-accordion .handorgel__header.handorgel__header--opened .handorgel__header__button {
  background-color: var(--accordion-toggler-background-hover);
  color: #fff;
}
.content-accordion .handorgel__header.handorgel__header--opened .handorgel__header__button:after {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}
.content-accordion .handorgel__header .handorgel__header__button {
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  padding: 25px;
  transition: all 0.3s;
}
.content-accordion .handorgel__header .handorgel__header__button:hover {
  background-color: var(--accordion-toggler-background-hover);
  color: #fff;
}
.content-accordion .handorgel__header .handorgel__header__button:hover:after {
  filter: brightness(0) invert(1);
}
.content-accordion .handorgel__header .handorgel__header__button:after {
  content: "";
  background: url("../img/icons/arrow-down-icon.svg") no-repeat;
  background-size: contain;
  min-width: 24px;
  height: 12px;
  transition: all 0.3s;
}
.content-accordion .handorgel__content {
  border-top: none;
  border-radius: 0 0 25px 25px;
  background-color: var(--color-gray-light);
  margin-top: -1.6em;
  margin-bottom: calc(var(--accordion-spacing) * 2);
}
.content-accordion .handorgel__content .content-text {
  margin-bottom: 0;
}

.ce_download,
.ce_downloads,
.content-download,
.content-downloads {
  margin-bottom: 1rem;
}
.ce_download .mime_icon,
.ce_downloads .mime_icon,
.content-download .mime_icon,
.content-downloads .mime_icon {
  display: inline-block;
  vertical-align: middle;
}
.ce_download a,
.ce_downloads a,
.content-download a,
.content-downloads a {
  display: inline-block;
  color: var(--download-link-color);
  -webkit-text-decoration: var(--download-link-decoration);
  text-decoration: var(--download-link-decoration);
}

.ce_downloads ul,
.content-downloads ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ce_downloads a,
.content-downloads a {
  text-decoration: none;
}

.content-downloads ul {
  margin-left: 0;
}
.content-downloads ul li {
  text-indent: 0;
}
.content-downloads ul li:before {
  content: none;
}
.content-downloads.presse-archiv ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: 0;
  gap: 10px;
}
@media screen and (min-width: 48em) {
  .content-downloads.presse-archiv ul {
    gap: 20px;
  }
}
.content-downloads.presse-archiv ul > li {
  display: flex;
  flex-flow: column;
  width: calc(50% - 5px);
  text-indent: 0;
  height: 100%;
}
@media screen and (min-width: 48em) {
  .content-downloads.presse-archiv ul > li {
    width: calc(25% - 20px);
  }
}
.content-downloads.presse-archiv ul > li:before {
  content: none;
}
.content-downloads.presse-archiv ul > li > a:before {
  margin-right: 5px;
  margin-bottom: 3px;
}
.content-downloads.presse-archiv ul > li figure {
  order: -1;
}
.content-downloads.presse-archiv ul > li figure a:before {
  content: none;
}

table {
  margin-bottom: var(--base-spacing-unit);
  width: 100%;
  padding: 0;
  border-spacing: 0;
  border-left: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-top: var(--table-border-width) var(--table-border-style) var(--table-border-color);
}
table th,
table td {
  border-right: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-bottom: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  padding: 10px;
}

thead {
  text-align: left;
  background: var(--table-background-light);
}

tfoot {
  font-style: italic;
}

.table--striped .even {
  background: var(--table-background-light);
}

.table--overflow {
  overflow-x: scroll;
  -ms-overflow-x: auto;
}

@media screen and (min-width: 58.75em) {
  .zimmer-theme table th,
  .zimmer-theme table td {
    padding: 20px;
  }
}

table {
  border: none;
}
table caption {
  caption-side: bottom;
  padding: 20px 0;
  opacity: 0.8;
  font-size: 0.9em;
  text-align: center;
}
table th,
table td {
  border-left: none;
  border-right: none;
  font-style: normal;
}
@media screen and (min-width: 58.75em) {
  table th,
  table td {
    padding: 10px 0;
  }
}
table thead,
table tbody,
table tfoot {
  align-items: center;
  font-variant-numeric: lining-nums;
  line-height: 1.2;
  border: 0 0 1px solid rgba(227, 215, 184, 0.3) 0;
}
@media screen and (min-width: 58.75em) {
  table thead,
  table tbody,
  table tfoot {
    padding: 25px 0;
  }
}
table thead th,
table thead td,
table tbody th,
table tbody td,
table tfoot th,
table tfoot td {
  font-weight: 200;
}
table thead th:nth-child(2), table thead th:nth-child(3),
table thead td:nth-child(2),
table thead td:nth-child(3),
table tbody th:nth-child(2),
table tbody th:nth-child(3),
table tbody td:nth-child(2),
table tbody td:nth-child(3),
table tfoot th:nth-child(2),
table tfoot th:nth-child(3),
table tfoot td:nth-child(2),
table tfoot td:nth-child(3) {
  text-align: center;
}
table thead span,
table tbody span,
table tfoot span {
  font-family: var(--base-font-family);
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}
@media screen and (min-width: 58.75em) {
  table thead span,
  table tbody span,
  table tfoot span {
    font-size: 16px;
  }
}
table tbody tr td:last-child {
  text-align: right;
}
table tbody tr td span {
  font-family: var(--base-font-family);
}
table tbody tr td span.price {
  font-family: var(--headings-font-family);
  font-size: 1.25em;
  color: var(--color-default);
}
@media screen and (min-width: 58.75em) {
  table tbody tr td span.price {
    font-size: 1.5em;
  }
}
table thead,
table tfoot {
  hyphens: none;
  color: var(--color-default);
  font-family: var(--headings-font-family);
  font-size: 1.25em;
}
@media screen and (min-width: 58.75em) {
  table thead,
  table tfoot {
    font-size: 1.5em;
  }
}
table tfoot {
  margin-top: 1.35em;
}
table tfoot tr:last-child td {
  border-bottom: none;
}
table .check-icon::before {
  filter: brightness(10);
}

@media screen and (min-width: 58.75em) {
  .pricing table thead th:first-child {
    width: 60%;
  }
}

.newsletter-subscribe,
.newsletter-unsubscribe {
  margin-bottom: var(--base-spacing-unit);
}
.newsletter-subscribe .formbody,
.newsletter-unsubscribe .formbody {
  display: flex;
  flex-flow: row wrap;
}
.newsletter-subscribe .text,
.newsletter-subscribe .widget-text,
.newsletter-unsubscribe .text,
.newsletter-unsubscribe .widget-text {
  margin-bottom: 0;
  display: inline-block;
  flex: 1;
}
.newsletter-subscribe .error,
.newsletter-unsubscribe .error {
  margin-bottom: 0;
  flex: 1 100%;
  font-weight: 700;
}
.newsletter-subscribe .widget-captcha,
.newsletter-unsubscribe .widget-captcha {
  order: -1;
  width: 100%;
  margin-bottom: var(--base-spacing-unit);
}
.newsletter-subscribe .widget-checkbox,
.newsletter-unsubscribe .widget-checkbox {
  order: 1;
  width: 100%;
}
.newsletter-subscribe .submit,
.newsletter-unsubscribe .submit {
  margin-left: var(--base-spacing-unit-xs);
}

.newsletter-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.newsletter-list a {
  text-decoration: none;
}
.newsletter-list li {
  border-bottom: var(--newsletter-list-border);
  padding-top: var(--base-spacing-unit);
  padding-bottom: var(--base-spacing-unit);
  display: block;
}
.newsletter-list li:first-of-type {
  border-top: var(--newsletter-list-border);
}
@media screen and (min-width: 34.375em) {
  .newsletter-list li {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
  }
}
@media screen and (min-width: 48em) {
  .newsletter-list li {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
  }
}
.newsletter-list li a:hover {
  opacity: 0.5;
}

.newsletter-reader {
  max-width: var(--newsletter-reader-width);
  margin-left: auto;
  margin-right: auto;
  border: var(--newsletter-reader-border);
  padding: 0 var(--base-spacing-unit);
}

.faq-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.faq-list a {
  text-decoration: none;
}
.faq-list > ul {
  margin-top: 2rem;
}
.faq-list li {
  margin-bottom: var(--base-spacing-unit-sm);
}
.faq-list li a {
  display: inline-block;
}
.faq-list > h1, .faq-list > h2, .faq-list > h3, .faq-list > h4, .faq-list > h5, .faq-list > h6 {
  margin-bottom: 0;
}
.faq-list > h1:after, .faq-list > h2:after, .faq-list > h3:after, .faq-list > h4:after, .faq-list > h5:after, .faq-list > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-list article > h1, .faq-list article > h2, .faq-list article > h3, .faq-list article > h4, .faq-list article > h5, .faq-list article > h6 {
  margin-bottom: 0;
}
.faq-list article > h1:after, .faq-list article > h2:after, .faq-list article > h3:after, .faq-list article > h4:after, .faq-list article > h5:after, .faq-list article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}

.faq-page > h1, .faq-page > h2, .faq-page > h3, .faq-page > h4, .faq-page > h5, .faq-page > h6 {
  margin-bottom: 0;
}
.faq-page > h1:after, .faq-page > h2:after, .faq-page > h3:after, .faq-page > h4:after, .faq-page > h5:after, .faq-page > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page article > h1, .faq-page article > h2, .faq-page article > h3, .faq-page article > h4, .faq-page article > h5, .faq-page article > h6 {
  margin-bottom: 0;
}
.faq-page article > h1:after, .faq-page article > h2:after, .faq-page article > h3:after, .faq-page article > h4:after, .faq-page article > h5:after, .faq-page article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}
.faq-page section {
  padding: var(--base-spacing-unit) 0;
  border-bottom: var(--faq-border);
}
.faq-page section.last {
  margin-bottom: var(--base-spacing-unit);
}

.faq-reader .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}

.ce_comments {
  overflow: visible;
}
.ce_comments .widget {
  margin-bottom: var(--base-spacing-unit);
}
.ce_comments p.error {
  margin-bottom: 0;
  color: var(--color-error);
}
.ce_comments .error {
  border-color: var(--color-error-light);
}
.comment_default {
  padding: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
  border: var(--base-border);
}
.comment_default .info {
  padding-bottom: var(--base-spacing-unit);
  border-bottom: var(--base-border);
}
.comment_default.last {
  margin-bottom: var(--base-spacing-unit-lg);
}

.search .formbody {
  display: flex;
  flex-flow: row wrap;
}
.search .widget-text {
  margin-bottom: var(--base-spacing-unit-sm);
  display: inline-block;
  flex: 1;
}
.search .widget-text label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search .widget-submit {
  margin-bottom: var(--base-spacing-unit-sm);
  margin-left: var(--base-spacing-unit-xs);
  align-self: flex-end;
}
.search .widget-submit .submit {
  margin-left: 0;
}
.search .relevance {
  color: var(--search-relevance-color);
}
.search .context {
  margin-bottom: var(--base-spacing-unit-xs);
}
.search .highlight, .search a.btn--primary.highlight a, a.btn--primary.highlight .search a,
.search span.btn--primary.highlight a,
span.btn--primary.highlight .search a,
.search button.btn--primary.highlight a,
button.btn--primary.highlight .search a,
.search .content-hyperlink.btn--primary.highlight a,
.content-hyperlink.btn--primary.highlight .search a {
  font-weight: bold;
}
.search .url {
  color: var(--search-url-color);
}

/*************************************

HERO SECTION

*************************************/
.no-img-hero .mod_article:first-child {
  margin-top: 5em;
}
@media screen and (min-width: 96em) {
  .no-img-hero .mod_article:first-child {
    margin-top: 150px;
  }
}
.no-img-hero header {
  background-color: #fff;
}
.no-img-hero header #main-menu a,
.no-img-hero header #main-menu strong {
  color: var(--color-text);
}
.no-img-hero header #main-menu a:after,
.no-img-hero header #main-menu strong:after {
  filter: none;
}
.no-img-hero #hamburger.active span {
  border: none;
}
.no-img-hero #hamburger span {
  border: 1px solid var(--color-text);
}
.no-img-hero .language-module {
  filter: brightness(0);
}
.no-img-hero .language-module select {
  color: var(--color-text);
}
.no-img-hero #footer {
  margin-top: 0;
}

.start #hero-section > .mod_article:first-child {
  padding-top: 0;
}

#hero-section {
  position: relative;
  z-index: 100;
}
#hero-section .scroll-down {
  display: none;
}
#hero-section > .mod_article:first-child {
  position: relative;
}
#hero-section > .mod_article:first-child .inside {
  padding-top: 0;
  padding-bottom: 0;
}

.hero {
  display: grid;
  align-items: end;
  height: 70vh;
  height: 70svh;
  min-height: 400px;
}
@media screen and (min-width: 68.75em) {
  .hero {
    min-height: 78vh;
  }
}
.hero:before {
  content: "";
  background: url("../img/logo-bg-fuer-hero.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 65vw;
  height: 100px;
  z-index: 1;
}
@media screen and (min-width: 34.375em) {
  .hero:before {
    width: 35vw;
    min-width: 400px;
    height: 7vw;
    min-height: 100px;
  }
}
.hero:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.85) 100%);
}
.hero .scroll-button {
  display: none;
  position: absolute;
  bottom: -95px;
  left: 50%;
  width: 70px;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 68.75em) {
  .hero .scroll-button {
    bottom: -165px;
    width: auto;
  }
}
@media screen and (min-width: 96em) {
  .hero .scroll-button {
    display: block;
  }
}
.hero > figure,
.hero > video {
  border-radius: 40px;
  margin: auto;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  overflow: hidden;
}
.hero > figure.inactive,
.hero > video.inactive {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.hero.img-position-top img {
  -o-object-position: top;
  object-position: top;
}
.hero figure {
  position: absolute !important;
  inset: 0;
  z-index: -1;
}
.hero figure img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero video {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.hero .hero-text {
  max-width: 905px;
  padding: 0 5vw;
  z-index: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 34.37375em) {
  .hero .hero-text h1 {
    font-size: 1.5rem;
  }
}
.hero .hero-text .description {
  display: none;
  padding-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 48em) {
  .hero .hero-text .description {
    display: block;
  }
}
@media screen and (min-width: 34.375em) {
  .hero .hero-text {
    padding: 2vw;
  }
}
@media screen and (min-width: 68.75em) {
  .hero .hero-text {
    padding: 3vw 0 0;
  }
}
.hero .hero-text * {
  color: #fff;
}

/*************************************

BLUE BOX SECTION -

*************************************/
:root {
  --element-gap: 60px;
}
@media screen and (min-width: 96em) {
  :root {
    --element-gap: 100px;
  }
}

.gray-box {
  background-color: var(--color-gray-light);
}

.blue-box {
  background-color: var(--color-default);
  color: #fff;
}
.blue-box ::-moz-selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
.blue-box ::selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
@media screen and (min-width: 96em) {
  .blue-box {
    padding-top: var(--base-spacing-unit-xl);
    padding-bottom: var(--base-spacing-unit-xl);
  }
}
.blue-box h1, .blue-box h2, .blue-box h3, .blue-box h4, .blue-box h5, .blue-box h6 {
  color: #fff;
  padding-left: 0;
}
.blue-box h1:before, .blue-box h2:before, .blue-box h3:before, .blue-box h4:before, .blue-box h5:before, .blue-box h6:before {
  content: none;
}
.blue-box h1 strong, .blue-box h2 strong, .blue-box h3 strong, .blue-box h4 strong, .blue-box h5 strong, .blue-box h6 strong {
  color: #fff;
}
.blue-box .blue-box-button {
  margin-top: auto;
  margin-bottom: 20%;
}
@media screen and (min-width: 96em) {
  .blue-box .blue-box-button {
    padding-top: 10em;
  }
  .blue-box .blue-box-button h3 {
    font-size: 40px;
  }
}
.blue-box .btn.btn--primary {
  background-color: #fff;
  color: var(--color-default);
  text-decoration: none;
}
.blue-box button {
  background-color: #fff;
  color: var(--color-default);
}
.blue-box a {
  color: #fff;
  text-decoration: underline;
}
.blue-box a:hover {
  text-decoration: none;
}
.blue-box .icon-wrapper .text-modul {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: var(--element-gap);
}
.blue-box .icon-wrapper .text-modul figure img {
  filter: brightness(0) invert(1);
}
.blue-box .icon-wrapper .text-modul .text-wrapper {
  flex: 1;
}
.blue-box .icon-wrapper .text-modul .text-wrapper h3 {
  margin-top: 0;
}
.blue-box .icon-wrapper .text-modul:after {
  content: "";
  position: absolute;
  bottom: calc(var(--element-gap) / -2);
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.blue-box .icon-wrapper .text-modul:last-child::after {
  content: none;
}
.blue-box .widget-radio legend,
.blue-box .widget-checkbox legend,
.blue-box .widget-select legend,
.blue-box .widget-upload legend {
  color: #fff;
}
.blue-box label .mandatory {
  color: #fff;
}

.text-modul .description + .btn {
  margin-top: 20px;
}
.text-modul.blue {
  padding: 20px;
  color: #fff;
  border-radius: var(--base-border-radius);
  background-color: var(--color-default);
  margin-bottom: var(--base-spacing-unit-lg);
}
.text-modul.blue h1, .text-modul.blue h2, .text-modul.blue h3, .text-modul.blue h4, .text-modul.blue h5, .text-modul.blue h6 {
  color: #fff;
}
.text-modul.blue h1 strong, .text-modul.blue h2 strong, .text-modul.blue h3 strong, .text-modul.blue h4 strong, .text-modul.blue h5 strong, .text-modul.blue h6 strong {
  color: #fff;
}
.text-modul.blue .btn--primary {
  margin: 0;
}
.text-modul.blue .text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
  height: 100%;
}
.text-modul.blue .text-wrapper h3 {
  margin: 0;
}

/*************************************

ANIMATIONS MODUL STYLESHEET

*************************************/
/* Add your custom styles here */
/* Keyframe animation for the slide effect */
@keyframes slideEffect {
  0% {
    /* Initial position, adjust as needed */
    opacity: 1;
  }
  100% {
    /* Final position, adjust as needed */
    opacity: 0;
  }
}
.zoom {
  animation: scale 40s linear infinite;
}

@keyframes scale {
  50% {
    transform: scale(1.13);
  }
}
@keyframes scrollHorizontal {
  to {
    transform: translate(calc(-50% - 1em));
  }
}
.scroller[data-animated=true] {
  margin: 0 auto;
  overflow: hidden;
}
.scroller[data-animated=true] .scroller__inner {
  flex-wrap: nowrap;
  animation: scrollHorizontal 15s linear infinite;
}

#laufband-section {
  overflow: hidden;
}

.scroller {
  margin: 100px auto 0;
  width: -moz-max-content;
  width: max-content;
}
.scroller .scroller__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  gap: 4em;
  min-width: 200%;
  animation: scrollHorizontal 15s linear infinite;
}
.scroller .scroller__inner:hover {
  animation-play-state: paused;
}
.scroller .content-hyperlink img,
.scroller .content-image img {
  width: 5em;
  transition: all 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1000;
}

.marquee {
  --marquee-item-height: 100px;
  --marquee-item-offset: 100px;
  position: relative;
  display: flex;
  block-size: var(--marquee-item-height);
  margin-block: var(--marquee-item-height);
  margin-bottom: 0;
  max-inline-size: var(--marquee-max-width);
  -webkit-mask-image: linear-gradient(to right, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
  mask-image: linear-gradient(to right, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
  overflow: hidden;
}
.marquee:hover .marquee__item {
  animation-play-state: paused;
}

.marquee--8 {
  --marquee-item-width: 80px;
  --marquee-item-height: 80px;
  --marquee-duration: 26s;
  --marquee-items: 8;
}
@media screen and (min-width: 48em) {
  .marquee--8 {
    --marquee-item-width: 100px;
    --marquee-item-height: 100px;
    --marquee-duration: 36s;
  }
}

.marquee--3 {
  --marquee-item-width: 150px;
  --marquee-item-height: 150px;
  --marquee-duration: 24s;
  --marquee-items: 3;
}

.marquee--6 {
  --marquee-item-width: 166px;
  --marquee-item-height: 100px;
  --marquee-duration: 32s;
  --marquee-items: 6;
}

.marquee__item {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(
    var(--marquee-duration) / var(--marquee-items) *
      (var(--marquee-items) - var(--marquee-item-index)) * -1
  );
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  max-width: var(--marquee-item-width);
  height: var(--marquee-item-height);
  width: var(--marquee-item-width);
  transform: translateX(-50%);
  padding-right: 10px;
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}
.marquee__item.familien_ferien {
  padding-right: 0;
}
.marquee__item.falstaff {
  padding-right: 0;
  padding-top: 10px;
}
@media screen and (min-width: 58.75em) {
  .marquee__item {
    padding-right: 0;
  }
  .marquee__item.familien_ferien {
    padding-right: 10px;
    max-width: 150px;
    width: 150px;
    height: 100px;
  }
  .marquee__item.familien_ferien img {
    width: 150px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .marquee__item.falstaff {
    padding-top: 0;
    padding-right: 10px;
    max-width: 150px;
    width: 120px;
    height: 120px;
  }
  .marquee__item.falstaff img {
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.marquee__item:nth-child(4n) {
  border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n+1) {
  border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n+2) {
  border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n+3) {
  border-top-left-radius: 1rem;
}

.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}

.marquee--3 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--3 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--3 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--6 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--6 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--6 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--6 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

@keyframes go {
  to {
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
/*************************************

WIDGETS MODUL STYLESHEET

*************************************/
/* ----------------------------------- *
 * Fixed Widget Right 
 * ----------------------------------- */
.widget-right {
  position: fixed;
  display: flex;
  right: 5px;
  bottom: 5px;
  width: 100%;
  gap: 15px;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
@media screen and (min-width: 58.75em) {
  .widget-right {
    bottom: 50px;
    right: 10px;
    left: initial;
    display: block;
    border-radius: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
    width: auto;
    z-index: 5100;
  }
}
.widget-right .widget {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-default);
  color: #fff;
  text-align: center;
  transform: translateX(30px) scale(0.85);
  transition: all 0.2s ease-in-out;
  max-width: 100px;
  border-radius: 3px;
  margin-bottom: 7px;
}
.widget-right .widget a {
  display: block;
  color: #fff;
  background: none;
}
.widget-right .widget img {
  margin: 0 auto 7px;
}
.widget-right .widget .description {
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  width: 0;
}
@media screen and (min-width: 58.75em) {
  .widget-right .widget {
    max-width: none;
  }
}
.widget-right.scrolled .widget {
  width: 70px;
  height: 70px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}
.widget-right.scrolled .widget:hover {
  transform: translateX(0) translateY(-3px) scale(1);
}
.widget-right.scrolled .widget a {
  padding: 10px;
}
.widget-right.scrolled .widget .description {
  width: auto;
  opacity: 1;
  visibility: visible;
}

.ds-wrapper {
  z-index: 11000 !important;
}

#eighty_close_welcome_widget {
  display: none !important;
}

#popup-section {
  z-index: 9500;
}

.popup_active .popup_deactivated {
  display: block;
}

.popup_deactivated {
  display: none;
}

.fixpopups {
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  width: 350px;
  opacity: 0;
  animation: fadeInDown 1s ease-out forwards;
  animation-delay: 3s;
}
@media screen and (min-width: 58.75em) {
  .fixpopups {
    right: 100px;
  }
}
.fixpopups > div {
  margin-bottom: 0 !important;
}

/* POPUP AKTIVCARD */
#popup_card {
  display: none;
  position: relative;
  font-size: 16px;
  padding: 30px 30px 15px 30px;
  border-radius: 10px;
  background: var(--color-gray-light);
  text-wrap: balance;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}
#popup_card a {
  display: inline-block;
}
#popup_card h3 {
  margin-top: 0;
}
#popup_card .close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#popup_card.active {
  display: block;
}

/* POPUP MOUSE LEAVE */
.close-button {
  position: absolute;
  top: 2px;
  right: 7px;
  background: none;
  border: none;
  padding: 0;
}

#popup-section:before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
#popup-section.bg-shadow {
  z-index: 10000000000000000000000;
}
#popup-section.bg-shadow:before {
  opacity: 1;
  visibility: visible;
}

/*************************************

CARDS MODULE

*************************************/
.card-wrapper {
  margin-top: 30px;
  margin-inline: auto;
  gap: 25px;
}
@media screen and (min-width: 96em) {
  .card-wrapper {
    gap: 50px;
  }
}

.ce_rsce_card,
.ce_rsce_cardlink {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ce_rsce_card .icon-img,
.ce_rsce_cardlink .icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  margin: 10px 0 0 10px;
  z-index: 2;
}
.ce_rsce_card .icon-img img,
.ce_rsce_cardlink .icon-img img {
  height: 50px;
}

.ce_rsce_card {
  height: 100%;
}

.cardbox, .ce_rsce_cardlink .card-link {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 400px;
  padding: 100px 30px 30px;
  transition: all 0.3s;
}
.cardbox ::-moz-selection, .ce_rsce_cardlink .card-link ::-moz-selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
.cardbox ::selection, .ce_rsce_cardlink .card-link ::selection {
  background-color: var(--selection-color);
  color: var(--color-default);
}
.cardbox:after, .ce_rsce_cardlink .card-link:after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
  position: absolute;
  inset: 0;
  clip-path: inset(0 round 20px);
}
.cardbox:before, .ce_rsce_cardlink .card-link:before {
  content: "";
  background: url("../img/card-icon-bg.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 5em;
  height: 5em;
  z-index: 1;
}
.cardbox:hover:after, .ce_rsce_cardlink .card-link:hover:after {
  opacity: 0.2;
}
.cardbox:hover > figure, .ce_rsce_cardlink .card-link:hover > figure {
  background-color: var(--color-default);
}
.cardbox:hover > figure img, .ce_rsce_cardlink .card-link:hover > figure img {
  opacity: 0;
}
.cardbox:hover > figure + h3, .ce_rsce_cardlink .card-link:hover > figure + h3 {
  opacity: 0;
  visibility: hidden;
}
.cardbox:hover .text-wrapper, .ce_rsce_cardlink .card-link:hover .text-wrapper {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cardbox h3, .ce_rsce_cardlink .card-link h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  color: #fff;
  text-wrap: balance;
  transition: all 0.3s;
}
.cardbox h3 strong, .ce_rsce_cardlink .card-link h3 strong {
  color: #fff;
}
.cardbox > figure, .ce_rsce_cardlink .card-link > figure {
  position: absolute;
  inset: 0;
  clip-path: inset(0 round 20px);
  transition: all 0.3s;
}
.cardbox > figure picture img, .ce_rsce_cardlink .card-link > figure picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}
.cardbox > figure figcaption, .ce_rsce_cardlink .card-link > figure figcaption {
  top: 0;
  bottom: initial;
}
.cardbox > figure + h3, .ce_rsce_cardlink .card-link > figure + h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.cardbox .text-wrapper, .ce_rsce_cardlink .card-link .text-wrapper {
  position: relative;
  transform: translateY(20px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 0.3s;
}
.cardbox .text-wrapper .description, .ce_rsce_cardlink .card-link .text-wrapper .description {
  margin-bottom: 10px;
}
@media screen and (min-width: 58.75em) {
  .cardbox .text-wrapper .description + a, .ce_rsce_cardlink .card-link .text-wrapper .description + a {
    display: none;
  }
}
.cardbox .text-wrapper ul li, .ce_rsce_cardlink .card-link .text-wrapper ul li {
  padding: 0;
}
.cardbox .link-overlay, .ce_rsce_cardlink .card-link .link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cardbox .link-overlay .text-link, .ce_rsce_cardlink .card-link .link-overlay .text-link {
  display: none;
}

.ce_rsce_cardlink {
  margin-bottom: var(--base-spacing-unit-lg);
  min-height: 30vh;
  height: 100%;
}
.ce_rsce_cardlink .icon-img {
  margin: 15px 0 0 15px;
}
.ce_rsce_cardlink .card-link {
  position: initial;
  display: flex;
}
.ce_rsce_cardlink .card-link .text-wrapper {
  height: auto;
  transform: none;
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*************************************

FULLSCREEN SECTION

*************************************/
.darktext .cta-fullwidth:before {
  inset: 0;
}
@media screen and (min-width: 58.75em) {
  .darktext .cta-fullwidth:before {
    inset: 0 0 60% 0;
  }
}
@media screen and (min-width: 58.75em) {
  .darktext .cta-fullwidth h2,
  .darktext .cta-fullwidth .text-wrapper {
    color: var(--color-text--inverted);
  }
}
.darktext .cta-fullwidth figure {
  z-index: -2;
  margin-bottom: -30px;
}
@media screen and (min-width: 58.75em) {
  .darktext .cta-fullwidth figure {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 58.75em) {
  .darktext .cta-fullwidth figure:before {
    content: "";
    position: absolute;
    inset: 0 30% 0 0;
    background: linear-gradient(90deg, white, transparent);
  }
}
@media screen and (min-width: 58.75em) {
  .darktext .cta-fullwidth a {
    border-color: var(--color-text--inverted);
    color: var(--color-text--inverted);
  }
  .darktext .cta-fullwidth a:after {
    filter: none;
  }
}

.cta-fullwidth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
  min-height: 450px;
}
@media screen and (min-width: 58.75em) {
  .cta-fullwidth {
    height: 100vh;
    min-height: 500px;
  }
}
.cta-fullwidth h2 {
  font-size: clamp(30px, 8vw, 85px);
  color: var(--color-text);
  hyphens: none;
}
.cta-fullwidth:before {
  content: "";
  background: linear-gradient(180deg, transparent -20%, var(--color-page-background));
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (min-width: 58.75em) {
  .cta-fullwidth:before {
    inset: 0 0 30% 0;
    background: linear-gradient(180deg, var(--color-page-background), transparent);
  }
}
.cta-fullwidth > figure {
  position: absolute;
  inset: 0;
  z-index: -2;
}
@media screen and (min-width: 58.75em) {
  .cta-fullwidth > figure:before {
    content: "";
    position: absolute;
    inset: 0 50% 0 0;
    background: linear-gradient(90deg, var(--color-page-background), transparent);
  }
}
.cta-fullwidth > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 96em) {
  .cta-fullwidth .description {
    max-width: 45vw;
  }
}
.cta-fullwidth .description .text-wrapper {
  max-width: 60vw;
}
@media screen and (min-width: 58.75em) {
  .cta-fullwidth .description .text-wrapper {
    max-width: 700px;
  }
}

/*************************************

SPRACHENWECHSLER MODUL

*************************************/
.language-module {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.language-module:before {
  content: "";
  background-image: url("../img/icons/language-icon.svg");
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.language-module select {
  background: none;
  border: none;
  color: #fff;
  text-align: center;
  font-weight: 800;
}
.language-module select option {
  color: var(--color-text);
  font-weight: 400;
  border-radius: 20px;
}
.language-module select option::-moz-selection {
  background-color: #000;
}
.language-module select option::selection {
  background-color: #000;
}

/*************************************

PROZESS MODUL STYLESHEET

*************************************/
.process-headline {
  display: flex;
  justify-content: center;
  gap: 3em;
  text-transform: uppercase;
  font-size: 20px;
  flex-wrap: wrap;
  margin-top: 4vw;
}
.process-headline > div {
  flex: 1;
  text-align: center;
}

.prozess-modul-wrapper .inside {
  position: relative;
}
.prozess-modul-wrapper .row {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 48em) {
  .prozess-modul-wrapper .row {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 58.75em) {
  .prozess-modul-wrapper .row {
    margin-bottom: 150px;
  }
}
@media screen and (min-width: 68.75em) {
  .prozess-modul-wrapper .row {
    margin-bottom: 250px;
  }
}
.prozess-modul-wrapper .prozess-modul {
  /* The progress container (grey background) */
  position: absolute;
  width: 100%;
  height: 100%;
}
.prozess-modul-wrapper .prozess-modul .prozess-container {
  position: absolute;
  top: 200px;
  left: -100px;
  width: 2px;
  height: 100%;
  background: #eeeeee;
  /* The progress bar (scroll indicator) */
}
.prozess-modul-wrapper .prozess-modul .prozess-container .prozess-bar {
  height: 0;
  background: var(--color-default);
  width: 2px;
}
.prozess-modul-wrapper .prozess-modul .prozess-container > span {
  width: 30px;
  height: 30px;
  background-color: var(--color-default);
  display: block;
  border-radius: 30px;
}

/*************************************

GESCHICHTE MODUL STYLESHEET

*************************************/
.geschichte-modul-wrapper {
  padding-left: 20px;
}
.geschichte-modul-wrapper .process-headline {
  display: flex;
  justify-content: center;
  gap: 3em;
  text-transform: uppercase;
  font-size: 20px;
  flex-wrap: wrap;
  margin-top: 4vw;
}
.geschichte-modul-wrapper .process-headline > div {
  flex: 1;
  text-align: center;
}
.geschichte-modul-wrapper h2 {
  color: var(--color-default);
  font-size: clamp(40px, 7vw, 60px);
  padding: 0;
  margin-bottom: 5px;
}
.geschichte-modul-wrapper h2:before {
  content: none;
}
.geschichte-modul-wrapper .autogrid_row > div {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 48em) {
  .geschichte-modul-wrapper .autogrid_row > div:not(:first-child) {
    margin-top: -7.5em;
  }
  .geschichte-modul-wrapper .autogrid_row > div.margintopclear {
    margin-top: 0;
  }
  .geschichte-modul-wrapper .autogrid_row > div figure {
    margin-right: auto;
    max-width: 400px;
  }
  .geschichte-modul-wrapper .autogrid_row > div:nth-child(odd) {
    text-align: right;
  }
  .geschichte-modul-wrapper .autogrid_row > div:nth-child(odd) figure {
    margin-left: auto;
    margin-right: inherit;
  }
  .geschichte-modul-wrapper .autogrid_row > div .text-wrapper {
    margin-bottom: 0 !important;
  }
}
.geschichte-modul-wrapper .inside {
  position: relative;
}
.geschichte-modul-wrapper .prozess-modul {
  /* The progress container (grey background) */
  position: absolute;
  left: -5px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 48em) {
  .geschichte-modul-wrapper .prozess-modul {
    left: 50%;
  }
}
.geschichte-modul-wrapper .prozess-modul .prozess-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #eeeeee;
  /* The progress bar (scroll indicator) */
}
.geschichte-modul-wrapper .prozess-modul .prozess-container .prozess-bar {
  height: 0;
  background: var(--color-default);
  width: 2px;
}
.geschichte-modul-wrapper .prozess-modul .prozess-container > span {
  width: 30px;
  height: 30px;
  background-color: var(--color-default);
  display: block;
  border-radius: 30px;
}
.geschichte-modul-wrapper .anker {
  display: none;
  position: relative;
}
/*# sourceMappingURL=../maps/default.css.map */
