@charset "UTF-8";
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/* 
*
*   SECONDRED Boilerplate
*   Config
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  scrollbar-face-color: var(--primary-color);
  scrollbar-track-color: #ddd;
  scrollbar-color: var(--primary-color) #ddd;
  scrollbar-width: thin;
  /* 
    *    Body & Layout defaults
    */
  --font: 'Manrope', sans-serif;
  --font-size: 1.125rem;
  --body-color: #fff;
  --layout-width: 1200px;
  --layout-max-width: 1200px;
  --line-height: 140%;
  --text-color: #000;
  --border-radius: 10px;
  --box-shadow: none;
  /* - Content/Sidebar Styles - */
  --sidebar-width: 33.333333%;
  --sidebar-padding: 0;
  --content-width: 66.666666%;
  --content-padding: 0;
  /* - Margin & Padding - */
  --default-padding: 30px;
  --default-margin: 50px;
  /* - Headline - Typografie  - */
  --headline-font: 'Manrope', sans-serif;
  --headline-font-weight: 700;
  --headline-line-height: 125%;
  --headline-margin: 0 0 50px 0;
  --headline-1-size: 3.75rem;
  --headline-1-clamp-size: clamp(2.5rem, 1.003rem + 3.14vw, 3.75rem);
  --headline-2-size: 2.5rem;
  --headline-2-clamp-size: clamp(1.8rem, 1.1vw + 1.3rem, 2.2rem);
  --headline-3-size: 1.875rem;
  --headline-3-clamp-size: clamp(1.5rem, 1.4vw + 0.9rem, 2rem);
  --headline-4-size: 1.563rem;
  --headline-4-clamp-size: clamp(1.4rem, 1.1vw + 0.9rem, 1.8rem);
  --headline-5-size: 1.5em;
  --headline-5-clamp-size: clamp(1.3rem, 0.6vw + 1.1rem, 1.5rem);
  --headline-6-size: 1.2em;
  --headline-6-clamp-size: clamp(1.1rem, 0.3vw + 1rem, 1.2rem);
  /* - Color - */
  --teaser-caption-bg: var(--primary-color);
  --teaser-caption-color: #fff;
  --primary-color: var(--color-blue);
  --secondary-color: var(--color-orange);
  --link-color: var(--color-blue);
  --fill-color: #eee;
  --border-color: #eee;
  --colorHighlight: #008BCC;
  --colorSuccess: #6A9618;
  --colorWarning: #F59400;
  --colorAlert: #D90000;
  --colorGrey: #333333;
  --colorDisabled: #DDD;
  /* - Contentpart Padding - */
  --cp-padding: 40px 20px;
  /* -- Flexgrid -- */
  --flexgrid-padding: 0 20px;
  --flexgrid-margin: 0 -20px 40px;
  /* -- Default Animation -- */
  --transition: 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  :root {
    --default-margin: 2.604vw;
  }
}
@media only screen and (max-width: 820px) {
  :root {
    --default-margin: 10.256vw;
  }
}
/*
*
*   Collider Custom CSS
*   Base Framework
*   Author: Andreas Beck
*
*/
/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
/*
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
*/
/* Preferred box-sizing value */
/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}
/* Removes spacing between cells in tables */
table {
  border-collapse: collapse;
}
/* Revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}
/* -- Reset -- */
* {
  padding: 0;
  margin: 0;
  /* -webkit-tap-highlight-color: transparent; */
}
*:focus {
  outline: none;
}
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html[dir="rtl"] {
  direction: rtl;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  width: 100%;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
input.formText,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  /* -webkit-border-radius: 0;
  border-radius: 0; */
}
select,
input {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
button {
  cursor: pointer;
  overflow: hidden;
  user-select: none;
}
textarea {
  resize: vertical;
  overflow: auto;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
img.responsive {
  width: 100% !important;
  height: auto !important;
}
/* Accessibility */
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/* Correctures */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
table {
  border-collapse: collapse;
}
img {
  border-style: none;
}
iframe {
  border-style: none;
}
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}
/* -- Experimental Features  -- */
html,
body {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  display: inline;
}
/* -- Wiederverwendabr-- */
.fltrt {
  float: right;
}
.fltlft {
  float: left;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/*
*
*   SECONDRED Boilerplate
*   Fonts.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/* playfair-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: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-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: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-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: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700italic - 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: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/playfair-display-v37-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-300 - 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: 'Manrope';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/manrope-v19-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope-v19-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/manrope-v19-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/manrope-v19-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot?cmd87w');
  src: url('../fonts/icomoon.eot?cmd87w#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?cmd87w') format('truetype'), url('../fonts/icomoon.woff?cmd87w') format('woff'), url('../fonts/icomoon.svg?cmd87w#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"]::before,
[class*=" icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-shop:before {
  content: "\e90b";
}
.icon-home:before {
  content: "\e908";
}
.icon-pon:before {
  content: "\e909";
}
.icon-planter:before {
  content: "\e90a";
}
.icon-arrow-down:before {
  content: "\e900";
}
.icon-info:before {
  content: "\e901";
}
.icon-waterdrop:before {
  content: "\e902";
}
.icon-pinterest:before {
  content: "\e903";
}
.icon-youtube:before {
  content: "\e904";
}
.icon-facebook:before {
  content: "\e905";
}
.icon-instagram:before {
  content: "\e906";
}
.icon-arrow-right:before {
  content: "\e907";
}
/* 
*
*   ECONDRED Boilerplate
*   NoClass Elements
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
body::-webkit-scrollbar-button {
  display: block;
  height: 5px;
  border-radius: 0px;
  background-color: #AAA;
  display: none;
}
body::-webkit-scrollbar-button:hover {
  background-color: #AAA;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-yellow);
}
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-black);
}
body::-webkit-scrollbar-track {
  background-color: #ddd;
}
body::-webkit-scrollbar-track:hover {
  background-color: #ddd;
}
body::-webkit-scrollbar {
  width: 10px;
}
body {
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  background: var(--body-color);
  color: var(--text-color);
}
a {
  color: var(--link-color);
}
a[href^="tel:"],
a[href^="fax:"] {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headline-font);
  font-weight: var(--headline-font-weight);
  margin: var(--headline-margin);
  line-height: var(--headline-line-height);
  text-box: trim-both cap alphabetic;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: var(--headline-1-size);
}
h2 {
  font-size: var(--headline-2-size);
}
h3 {
  font-size: var(--headline-3-size);
}
h4 {
  font-size: var(--headline-4-size);
}
h5 {
  font-size: var(--headline-5-size);
}
h6 {
  font-size: var(--headline-6-size);
}
p {
  margin-bottom: var(--default-margin);
  text-box: trim-both cap alphabetic;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin-bottom: var(--default-margin);
  padding-left: 23px;
}
ul li {
  margin-bottom: 5px;
}
ol {
  margin-bottom: var(--default-margin);
  padding-left: 23px;
}
ol li {
  margin-bottom: 5px;
}
ol:last-child {
  margin-bottom: 0;
}
address {
  font-style: normal;
}
/* -- Table -- */
hr {
  border: 0;
  border-bottom: 1px solid #DDD;
  margin: 40px 0;
}
/* -- Table -- */
table {
  border: 0;
  margin-bottom: var(--default-margin);
  table-layout: fixed;
  border-collapse: collapse;
}
table th,
table td {
  text-align: left;
  vertical-align: top;
}
table:last-child {
  margin-bottom: 0;
}
pre code {
  background-color: #eee;
  border: 1px solid #999;
  display: block;
  padding: 20px;
  margin-bottom: var(--default-margin);
}
/*
  .reset-ul()

  removes margin, padding and bullets from lists.

  Styleguide Config.Mixins.reset-ul()
*/
/* 
*
*   ECONDRED Boilerplate
*   Darkmode
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
@media screen and (prefers-color-scheme: dark) {
  body {
    background: #333;
  }
  .container {
    background-color: #fff;
  }
}
@media screen and (prefers-color-scheme: light) {
  body {
    background: #efefef;
  }
  .container {
    background-color: #fff;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --gridGutter: 50px;
  --colMarginBottom: 20px;
  --layout-tablet: 760px;
  --layout-responsive: 920px;
  --layout-desktop: 1200px;
}
.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
  flex: 0 0 auto;
}
.grid.center {
  justify-content: center;
}
.grid .col {
  width: 100%;
  margin-bottom: var(--colMarginBottom);
  padding: 0 15px;
}
.grid .col-1-1 {
  width: 100%;
}
.grid .col-1-2 {
  width: 50%;
}
.grid .col-1-3 {
  width: 33.33333%;
}
.grid .col-2-3 {
  width: 66.66666%;
}
.grid .col-1-4 {
  width: 25%;
}
.grid .col-3-4 {
  width: 75%;
}
.grid .col-1-5 {
  width: 20%;
}
.grid .col-2-5 {
  width: 40%;
}
.grid .col-3-5 {
  width: 60%;
}
.grid .col-4-5 {
  width: 80%;
}
@media only screen and (max-width: 960px) {
  .grid .col {
    width: 100%;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row {
  padding: 0 30px 100px;
}
.row h2 {
  position: relative;
  font-size: 3.5rem;
  line-height: 114.286%;
  font-weight: bold;
  letter-spacing: -1.12px;
  color: var(--brand-color-1);
}
@media only screen and (max-width: 960px) {
  .row h2 {
    color: black;
  }
}
.row article h2 {
  margin-left: 0;
}
.row article p a {
  font-weight: normal;
  text-decoration: none;
}
.row article p a:hover {
  text-decoration: underline;
}
.row article p em {
  color: var(--color-darkgrey);
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row {
    padding: 0 2.381vw 7.937vw;
  }
  .row h2 {
    font-size: 4.444vw;
  }
}
@media only screen and (max-width: 960px) {
  .row {
    padding: 0 16px 42px;
  }
  .row h2 {
    font-size: 9vw;
  }
}
.row.is-lightblue {
  position: relative;
  background: var(--brand-color-2);
  margin-bottom: 90px;
  padding-bottom: 0;
}
.row.is-lightblue .content-width {
  padding: 100px 0;
}
.row.is-lightblue::before,
.row.is-lightblue::after {
  content: "";
  height: 50px;
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--brand-color-2);
  mask-size: auto 50px;
}
.row.is-lightblue::before {
  -webkit-mask-image: url(../gfx/wave-top.svg);
  mask-image: url(../gfx/wave-top.svg);
  top: -50px;
}
@media only screen and (max-width: 960px) {
  .row.is-lightblue::before {
    top: -30px;
    mask-size: auto 30px;
    height: 30px;
  }
}
.row.is-lightblue::after {
  bottom: -50px;
  -webkit-mask-image: url(../gfx/wave-bottom.svg);
  mask-image: url(../gfx/wave-bottom.svg);
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row.is-lightblue .content-width {
    padding: 7.937vw 0;
  }
}
@media only screen and (max-width: 960px) {
  .row.is-lightblue {
    margin-bottom: 0;
  }
  .row.is-lightblue .content-width {
    padding: 58px 0;
  }
  .row.is-lightblue:last-child::after {
    display: none;
  }
}
.row.is-yellow {
  background: var(--color-yellow);
}
.row.is-yellow h2 {
  color: #000;
}
@media only screen and (min-width: 961px) {
  .row.has-leafs {
    background: #000;
    background: url(../gfx/bg-leafs.jpg) center no-repeat;
    background-size: cover;
    color: #fff;
  }
  .row.has-leafs h2 {
    color: #fff;
  }
  .row.has-leafs .card h2 {
    color: #000;
  }
}
.row-error .content-width {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row-error .content-width article {
  text-align: center;
}
.row-error .content-width p {
  color: #667085;
}
.row-error .content-width img {
  height: auto !important;
}
.row-awards {
  background: #F2F2F2;
  padding: 50px 30px 60px;
}
.row-awards article {
  text-align: center;
  margin-bottom: 50px;
}
.row-awards h2 {
  color: #000;
  font-size: 1.5rem;
  letter-spacing: -0.72px;
  font-weight: 600;
  margin-bottom: 20px;
}
.row-awards p {
  color: #667085;
}
.row-awards .awards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.row-awards .awards figure {
  flex: 0 0 auto;
}
.row-awards .awards img {
  display: block;
}
@media only screen and (max-width: 567px) {
  .row-awards .awards {
    justify-content: center;
    gap: 30px 5vw;
  }
}
@media only screen and (max-width: 390px) {
  .row-awards .awards {
    gap: 30px 20px;
  }
  .row-awards .awards figure {
    width: calc(50% - 20px);
  }
}
/* 
*
*   SECONDRED Boilerplate
*   Header
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Logo Style - */
  --logo-width: 291px;
  --logo-height: 121px;
  --logo-bg: #000;
  --logo-shadow: none;
  --logo-align: none;
  --logo-small-width: 188px;
  --logo-small-height: 40px;
  /* - Header Style  - */
  --header-shadow: none;
  --header-height: 79px;
  --header-small-height: 75px;
  --header-color: #F2F2F2;
  --header-position: sticky;
  --header-top-pos: 0;
  --header-padding: 0 30px;
}
header.header {
  position: var(--header-position);
  box-shadow: var(--header-shadow);
  background: var(--header-color);
  top: var(--header-top-pos);
  z-index: 777;
  color: #fff;
  padding: var(--header-padding);
}
header.header .content-width {
  height: var(--header-height);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  header.header {
    background: #000;
    height: 109px;
  }
}
.logo {
  float: var(--logo-align);
  margin-bottom: -42px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.logo a {
  display: grid;
  justify-content: center;
  align-content: space-between;
  background: var(--logo-bg);
  width: var(--logo-width);
  height: var(--logo-height);
}
.logo a img {
  height: auto !important;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .logo {
    margin-bottom: -3.333vw;
  }
  .logo a {
    width: 23.095vw;
    height: 9.603vw;
  }
}
@media only screen and (max-width: 960px) {
  .logo {
    right: -30px;
    left: auto;
  }
  .logo a {
    width: 234px;
    height: 109px;
  }
}
/* -- Fixed Header -- */
/*
*
*   SECONDRED Boilerplate
*   Menu Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --hamburger-bg-color: transparent;
  --hamburger-position: left;
  --hamburger-height: 30px;
  --hamburger-width: 30px;
  --hamburger-line-color: #fff;
  /* - Menu-Style - */
  --menu-float: left;
  --menu-fontsize: 3.125rem;
  --menu-padding: 28px 0 0 0;
}
.inline ul {
  margin: 0;
  padding: 0;
}
.inline ul li {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hamburger {
  display: flex;
  float: var(--hamburger-position);
  background: var(--hamburger-bg-color);
  min-width: var(--hamburger-width);
  height: var(--hamburger-height);
  margin-left: 0;
  border: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: visible;
  display: none;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.hamburger .burger {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
}
.hamburger em {
  width: 32px;
  height: 4px;
  background: var(--hamburger-line-color);
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: 50%;
  margin-top: -1px;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1), margin 350ms cubic-bezier(0.2, 1, 0.3, 1);
  perspective: 1000;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: 0;
}
.hamburger em.top {
  margin-top: -12px;
  width: 36px;
}
.hamburger em.bottom {
  margin-top: 10px;
  width: 36px;
}
.hamburger:hover em.top {
  margin-top: -8px;
}
.hamburger:hover em.bottom {
  margin-top: 6px;
}
.hamburger.open em.top {
  margin-top: -1px;
  transform: rotate(45deg);
  width: 32px;
}
.hamburger.open em.middle {
  transform: scale(0, 1);
}
.hamburger.open em.bottom {
  margin-top: -1px;
  transform: rotate(-45deg);
  width: 32px;
}
@media only screen and (max-width: 960px) {
  .hamburger {
    display: block;
    position: absolute;
    left: 0;
    bottom: 10px;
  }
}
nav.socialmenu {
  margin-left: auto;
  padding-top: 30px;
  margin-bottom: auto;
}
nav.socialmenu ul {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 0;
}
nav.socialmenu ul li {
  margin-bottom: 0;
}
nav.socialmenu ul li a {
  text-decoration: none;
  color: #353535;
  font-size: 1.25rem;
  display: grid;
  justify-content: center;
  align-content: center;
}
nav.socialmenu ul li a:hover,
nav.socialmenu ul li a:focus {
  color: var(--color-yellow);
}
nav.socialmenu ul li a.icon-twitter:focus,
nav.socialmenu ul li a.icon-twitter:hover {
  color: #1DA1F2;
}
nav.socialmenu ul li a.icon-pinterest:focus,
nav.socialmenu ul li a.icon-pinterest:hover {
  color: #E60023;
}
nav.socialmenu ul li a.icon-instagram:focus,
nav.socialmenu ul li a.icon-instagram:hover {
  color: #C13584;
}
nav.socialmenu ul li a.icon-facebook:focus,
nav.socialmenu ul li a.icon-facebook:hover {
  color: #4267B2;
}
nav.socialmenu ul li a.icon-youtube:focus,
nav.socialmenu ul li a.icon-youtube:hover {
  color: #FF0000;
}
@media only screen and (min-width: 961px) and (max-width: 1180px) {
  nav.socialmenu {
    position: absolute;
    right: 0;
    top: 45px;
    padding-top: 0;
  }
}
@media only screen and (max-width: 960px) {
  nav.socialmenu {
    display: none;
  }
}
nav.langmenu {
  font-size: 1rem;
  margin-left: auto;
  margin-right: 0;
}
nav.langmenu ul {
  display: flex;
  flex-direction: row;
  gap: 0;
  font-size: 0.625rem;
}
nav.langmenu ul li a {
  text-decoration: none;
  color: #C0BABA;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #515151;
}
nav.langmenu ul li a:hover,
nav.langmenu ul li a:focus {
  background: var(--color-yellow);
  color: #000;
}
nav.langmenu ul li a.active {
  color: #000;
  font-weight: bold;
  background: #fff;
}
nav.langmenu ul li a img {
  width: 12px;
}
nav.langmenu ul li:first-child a {
  border-radius: 5px 0 0 5px;
}
nav.langmenu ul li:last-child a {
  border-radius: 0 5px 5px 0;
}
@media only screen and (min-width: 961px) and (max-width: 1180px) {
  nav.langmenu {
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 960px) {
  nav.langmenu {
    display: none;
  }
}
#mainmenu {
  font-size: 1rem;
  padding-left: 335px;
}
#mainmenu ul {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 0;
}
#mainmenu ul li {
  padding-left: 0;
  margin-bottom: 0;
}
#mainmenu ul li a {
  color: #636363;
  display: block;
  text-decoration: none;
}
#mainmenu ul li a:hover,
#mainmenu ul li a:focus {
  color: #000;
}
#mainmenu ul li a:not(.icon-shop)::before {
  display: none;
}
#mainmenu ul li a.active {
  font-weight: bold;
}
#mainmenu ul li a.icon-shop {
  display: flex;
  gap: 5px;
  align-items: center;
}
#mainmenu ul.mobi-langmenu {
  display: none;
  flex-direction: row;
  gap: 0;
  font-size: 1rem;
  padding-left: 40px;
}
#mainmenu ul.mobi-langmenu li a {
  text-decoration: none;
  color: #C0BABA;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  background: #515151;
}
#mainmenu ul.mobi-langmenu li a img {
  width: 16px;
}
#mainmenu ul.mobi-langmenu li a:hover,
#mainmenu ul.mobi-langmenu li a:focus {
  background: var(--color-yellow);
}
#mainmenu ul.mobi-langmenu li a.active {
  color: #000;
  font-weight: bold;
  background: #fff;
}
#mainmenu ul.mobi-langmenu li:first-child a {
  border-radius: 5px 0 0 5px;
}
#mainmenu ul.mobi-langmenu li:last-child a {
  border-radius: 0 5px 5px 0;
}
@media only screen and (min-width: 1121px) and (max-width: 1260px) {
  #mainmenu {
    padding-left: 27vw;
    font-size: 1vw;
  }
}
@media only screen and (min-width: 961px) and (max-width: 985px) {
  #mainmenu {
    font-size: 0.813rem;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1120px) {
  #mainmenu {
    padding-left: 27vw;
    font-size: 1.429vw;
  }
}
@media only screen and (max-width: 960px) {
  #mainmenu {
    display: none;
    font-size: 1.5rem;
    position: absolute;
    left: -30px;
    width: 100vw;
    flex-direction: column;
    background: #000;
    top: 98px;
    padding: 0 30px 30px;
  }
  #mainmenu ul {
    flex-direction: column;
  }
  #mainmenu ul li a {
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  #mainmenu ul li a::before {
    display: block;
    font-size: 1.25rem;
  }
  #mainmenu ul li a:hover {
    color: #999;
  }
  #mainmenu ul.mobi-langmenu {
    display: flex;
    margin-top: 30px;
  }
  #mainmenu.open {
    display: flex;
    flex-direction: column;
  }
}
/* -- Footermenü -- */
.footermenu ul {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footermenu ul li a {
  text-decoration: none;
  color: #6C6C6C;
}
.footermenu ul li a:hover {
  color: #000;
}
@media only screen and (max-width: 960px) {
  .footermenu {
    padding: 0 16px 20px;
    width: 100%;
  }
  .footermenu ul {
    justify-content: center;
    border-bottom: 1px solid #CFDBBA;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
@media only screen and (max-width: 763px) {
  body {
    font-size: 1rem;
    line-height: 150%;
  }
}
.content-width {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--contentPadding);
  max-width: var(--layout-width);
  padding: 0;
}
/*
*
*   SECONDRED Boilerplate
*   Footer Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --footer-bg: var(--brand-color-3);
  --footer-padding: 30px;
  --footer-margin: 0;
}
footer {
  margin-top: auto;
  background: var(--footer-bg);
  color: #000;
  font-size: 1rem;
  position: relative;
}
footer .content-width {
  padding: 60px 0 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  footer .content-width {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0 30px;
  }
}
footer .mobi-topbtn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  bottom: 30px;
  display: none;
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  footer .mobi-topbtn {
    display: grid;
    justify-content: center;
    align-content: center;
    transform: rotate(180deg);
  }
}
footer nav.social-media ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
}
footer nav.social-media ul li {
  margin-bottom: 0;
}
footer nav.social-media ul li.label {
  margin-right: 10px;
}
footer nav.social-media ul li a {
  width: 44px;
  height: 44px;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
footer nav.social-media ul li a:focus,
footer nav.social-media ul li a:hover {
  color: #fff;
}
footer nav.social-media ul li a.icon-twitter:focus,
footer nav.social-media ul li a.icon-twitter:hover {
  color: #1DA1F2;
}
footer nav.social-media ul li a.icon-pinterest:focus,
footer nav.social-media ul li a.icon-pinterest:hover {
  color: #E60023;
}
footer nav.social-media ul li a.icon-instagram:focus,
footer nav.social-media ul li a.icon-instagram:hover {
  color: #C13584;
}
footer nav.social-media ul li a.icon-facebook:focus,
footer nav.social-media ul li a.icon-facebook:hover {
  color: #4267B2;
}
footer nav.social-media ul li a.icon-youtube:focus,
footer nav.social-media ul li a.icon-youtube:hover {
  color: #FF0000;
}
@media only screen and (max-width: 820px) {
  footer nav.social-media ul li a {
    width: 30px;
  }
}
@media only screen and (max-width: 960px) {
  footer nav.social-media {
    padding-left: 16px;
  }
}
@media only screen and (min-width: 961px) {
  body:has(.is-lightblue:last-child) footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: -50px;
    height: 50px;
    width: 100%;
    background: var(--footer-bg);
    -webkit-mask-image: url(../gfx/wave-top.svg);
    mask-image: url(../gfx/wave-top.svg);
    mask-size: auto 50px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.card {
  border-radius: 6px;
}
.card .link-list {
  padding-left: 0;
}
.card .contact-list {
  list-style: none;
  padding-left: 0;
  font-weight: normal;
}
.card .contact-list > div {
  position: relative;
  padding-left: 35px;
}
.card .contact-list > div::before {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 3px;
}
.card .contact-list > div a {
  text-decoration: none;
  color: inherit;
}
.card .card-title {
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 30px;
}
.card .inner {
  padding: 30px;
}
.card-img {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  color: #000;
  background: #fff;
  padding: 11px;
  display: flex;
  flex-direction: column;
}
.card-img img {
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1);
  border-radius: 7px;
}
.card-img h2,
.card-img h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 100%;
}
.card-img h2:last-child,
.card-img h3:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .card-img h2,
  .card-img h3 {
    font-size: 1.905vw;
  }
}
.card-img .card-content {
  padding: 27px 11px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-img .card-content .btn-wrap {
  margin-top: auto;
}
.card-hero {
  border-radius: 15px;
  background: #E9E9E9;
  padding: 0 27px 27px;
}
.card-hero figure img {
  margin-top: -100px;
}
.card-hero h2,
.card-hero h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 100%;
}
.card-hero h2:last-child,
.card-hero h3:last-child {
  margin-bottom: 0;
}
.card-hero .card-content {
  padding: 27px 11px;
  text-align: center;
}
.card-hero:not(:has(img)) {
  padding-top: 27px;
}
.row-cards {
  position: relative;
  padding-top: 100px;
  /* &::before {
        content:"";
        width: 100%; height: 90%;
        background: var(--color-lightgrey);
        position: absolute;
        left: 0; bottom:0;
        transform: skew(0deg, -3deg);        
    }*/
}
.row-cards article {
  max-width: 75%;
  margin-bottom: 100px;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-cards article {
    margin-bottom: 7.937vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-cards article {
    max-width: none;
    margin-bottom: 42px;
  }
}
.row-cards .grid .col:has(.card-hero) {
  padding-top: 100px;
}
.row-cards .grid .col .card-hero {
  height: 100%;
}
/*
*
*   SECONDRED Boilerplate
*   Form.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Formular Styles - */
  --fieldset-padding: 0;
  --fieldset-border: 0;
  --input-fontsize: 1.125rem;
  --input-fontfamiliy: var(--font);
  --input-focus-color: #666;
  --input-bg: rgba(149, 157, 169, 0.15);
  --input-border: 1px solid rgba(149, 157, 169, 0);
  --input-border-radius: 6px;
  --input-padding: 0 16px;
  --input-height: 63px;
  --textarea-padding: 10px;
  --textarea-minheight: 150px;
  --input-placeholder-color: #737373;
  --input-placeholder-style: normal;
  --input-placeholder-opacity: 1;
  --input-disabeld-color: #ccc;
  --input-disabeld-cursor: not-allowed;
  --input-disabeld-border: #ccc;
  --input-error-color: red;
  --input-error-border: red;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
fieldset {
  padding: var(--fieldset-padding);
  border: var(--fieldset-border);
}
fieldset legend {
  font-size: 2.188rem;
  margin-bottom: 30px;
  line-height: 90%;
  font-family: var(--headline-font);
  line-height: var(--headline-line-height);
}
@media only screen and (max-width: 763px) {
  fieldset legend {
    font-size: 1.563rem;
  }
}
fieldset .flexgrid .box {
  margin-bottom: 0;
}
.error-msg {
  font-weight: bold;
  color: var(--colorAlert);
  margin: -40px 0 50px;
}
.form-item {
  margin-bottom: 20px;
  position: relative;
}
.form-item label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  line-height: 80%;
}
.form-item label .hint {
  font-size: 12px;
  position: relative;
  top: 4px;
}
.form-item button.icon-showpass {
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-blue);
  background: transparent;
  border: 0;
  display: grid;
  justify-content: center;
  align-content: center;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.form-item button.icon-showpass:hover {
  color: var(--color-orange);
}
.form-item input.form-text,
.form-item select {
  height: 63px;
}
.form-item input.form-text,
.form-item select,
.form-item textarea {
  border: var(--input-border);
  width: 100%;
  background: var(--input-bg);
  font-size: var(--input-fontsize);
  border-radius: var(--input-border-radius);
  padding: var(--input-padding);
}
.form-item input.form-text[disabled],
.form-item select[disabled],
.form-item textarea[disabled] {
  border: 1px solid var(--colorDisabled);
}
.form-item input.form-text,
.form-item select {
  height: var(--input-height);
  padding: var(--input-padding);
}
.form-item textarea {
  padding: var(--textarea-padding);
  min-height: var(--textarea-minheight);
  resize: vertical;
}
.form-item textarea.autoExpand {
  min-height: 0;
  overflow: hidden;
}
.form-item select:required:invalid {
  color: #959DA9;
  font-style: italic;
}
.form-item option[disabled] {
  display: none;
}
.form-item [disabled] label,
.form-item [disabled] + label {
  color: var(--colorDisabled);
}
.form-item [disabled] label em,
.form-item [disabled] + label em {
  border-color: var(--colorDisabled);
  cursor: not-allowed !important;
}
.form-item input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  padding: 0;
  border: 0;
}
.form-item input[type="range"]:hover {
  opacity: 1;
}
.form-item input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  cursor: pointer;
}
.form-item input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  cursor: pointer;
}
.form-street {
  display: flex;
  flex-direction: row;
}
.form-street .street {
  flex: 1;
  padding-right: 20px;
}
.form-street .number {
  width: 45px;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.form-radio label {
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  line-height: 100%;
}
.form-radio label a {
  text-decoration: none;
  font-weight: bold;
}
.form-radio label a:hover {
  text-decoration: underline;
}
.form-radio label em {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #F2F2F2;
  cursor: pointer;
  border: 1px solid #F2F2F2;
  display: grid;
  justify-content: center;
  align-content: center;
}
.form-radio input[type="radio"] + label em {
  border-radius: 50%;
}
.form-radio input[type="checkbox"] + label em {
  border-radius: 6px;
}
.form-radio span {
  padding-left: 20px;
  flex: 1 1 auto;
}
.form-radio input:checked + label em {
  background: var(--color-blue);
}
.form-radio input:focus + label em {
  border-color: var(--color-blue);
}
.form-tag {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.form-tag input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.form-tag label {
  background: #F2F2F2;
  padding: 11px 15px;
  font-weight: normal;
  border-radius: 20px;
  margin-bottom: 0;
  cursor: pointer;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.form-tag label:hover {
  color: var(--color-blue) !important;
  background: #fff !important;
}
.form-tag input:focus + label {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.form-tag input:checked + label {
  color: #fff !important;
  background: var(--color-blue) !important;
}
.form-error {
  position: relative;
}
.form-error label {
  color: var(--colorAlert);
}
.form-error input,
.form-error select,
.form-error .SumoSelect,
.form-error textarea {
  border: 2px solid var(--colorAlert) !important;
}
.form-error em,
.form-error em:not([class^="icon-"]) {
  border-color: var(--colorAlert);
}
.form-error ul.errors {
  list-style: none;
  padding-left: 0;
  font-size: 0.625rem;
  position: absolute;
  font-weight: normal;
}
.form-error ul.errors li {
  color: var(--colorAlert);
}
.custom-select {
  position: relative;
  font-weight: normal;
  z-index: 20;
}
.custom-select .selected-options {
  border: var(--input-border);
  width: 100%;
  background: var(--input-bg);
  background-image: url(../gfx/select-arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 32px auto;
  font-size: var(--input-fontsize);
  border-radius: var(--input-border-radius);
  height: var(--input-height);
  padding: var(--input-padding);
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  z-index: 2;
}
.custom-select .selected-options > div {
  background: var(--color-blue);
  color: #fff;
  padding: 11px 15px;
  font-weight: normal;
  border-radius: 20px;
  margin-bottom: 0;
  cursor: pointer;
  margin-right: 10px;
  line-height: 100%;
}
.custom-select .selected-options > div:hover {
  background: #000;
}
.custom-select .options-list {
  background: #F2F2F2;
  position: absolute;
  top: 100%;
  padding: 10px 20px;
  left: 0;
  width: 100%;
  z-index: 10;
  border-radius: 6px;
  display: none;
}
.custom-select .options-list > div {
  cursor: pointer;
  padding: 10px 0;
}
.custom-select .options-list > div.selected,
.custom-select .options-list > div:hover {
  color: var(--color-blue);
}
.custom-select .options-list.show {
  display: block;
}
.custom-select select {
  position: absolute;
  opacity: 0;
  z-index: 0;
}
/* -- Custom Forms -- */
fieldset.std ::placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std :-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std ::-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std .form-item label {
  font-weight: normal;
}
fieldset.std .form-item select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../gfx/select-arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 32px auto;
}
fieldset.std .form-radio em {
  min-width: 76px;
  width: 76px;
  height: 38px;
  border-radius: 19px;
  background: var(--color-darkgrey);
  position: relative;
  border: 0;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.std .form-radio em::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  opacity: 1;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.std .form-radio input[type="checkbox"] + label em {
  border-radius: 19px;
}
fieldset.std .form-radio input:checked + label em {
  background: var(--color-blue);
}
fieldset.std .form-radio input:checked + label em::before {
  transform: translate(calc(100% + 4px), 0);
}
dialog fieldset.std .form-item input.form-text,
dialog fieldset.std .form-item .custom-select .selected-options,
dialog fieldset.std .form-item .custom-select .options-list,
dialog fieldset.std .form-item select,
dialog fieldset.std .form-item textarea {
  background-color: #fff;
}
/* -- Kontaktformular -- */
fieldset.contact-form p {
  margin-bottom: 50px;
}
fieldset.contact-form textarea {
  height: 452px;
  display: block;
}
fieldset.ad-request {
  padding: 30px;
}
fieldset.ad-request legend {
  padding-top: 25px;
  margin-bottom: -10px;
  font-weight: 300;
}
fieldset.ad-request h4 {
  color: var(--color-orange);
  margin-bottom: 20px;
  font-size: 1.563rem;
}
@media only screen and (max-width: 763px) {
  fieldset.ad-request h4 {
    font-size: 1.25rem;
  }
}
fieldset.ad-request p {
  margin-bottom: 50px;
}
fieldset.ad-request .grid .form-item:last-child {
  margin-bottom: 0;
}
fieldset.ad-request .grid textarea {
  height: 450px;
}
/* -- Tag Suche Pageopt -- */
fieldset.tag-search {
  position: relative;
  margin-bottom: 10px;
}
fieldset.tag-search .form-item {
  margin-bottom: 0;
}
fieldset.tag-search .form-item input.form-text {
  height: 38px;
  padding: 0 20px;
  font-size: 1rem;
}
fieldset.tag-search button.form-submit {
  width: 38px;
  height: 38px;
  font-size: 20px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
fieldset.tag-search button.form-submit:hover {
  color: var(--color-blue);
}
fieldset.taglist legend {
  font-size: 1rem;
  font-weight: normal;
}
/* -- Thema durchsuchen -- */
fieldset.topic-search {
  background: #fff;
  padding: 24px 30px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  z-index: 6;
  display: none;
}
fieldset.topic-search .form-item {
  margin-bottom: 0;
}
fieldset.topic-search .form-item input.form-text {
  height: 38px;
}
fieldset.topic-search button.form-submit {
  width: 38px;
  height: 38px;
  font-size: 20px;
  border: 0;
  background: transparent;
  position: absolute;
  right: 30px;
  bottom: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
fieldset.topic-search button.form-submit:hover {
  color: var(--color-blue);
}
/* -- Seite durchsuchen -- */
fieldset.search {
  margin-bottom: 40px;
}
fieldset.search .form-item {
  margin-bottom: 10px;
}
fieldset.search .form-item input.form-text {
  font-size: 1.875rem;
  font-weight: 300;
}
fieldset.search .count {
  color: var(--color-blue);
  font-size: 0.875rem;
  font-weight: normal;
}
fieldset.search button.form-submit {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 63px;
  height: 63px;
  font-size: 40px;
  display: grid;
  justify-content: center;
  align-content: center;
  border-radius: 6px;
}
fieldset.search button.form-submit:hover {
  color: var(--color-blue);
}
/*
  Button

  Use this class for the primary call to action button.
  Typically you'll want to use either a `<button>` or an `<a>` element.

  :hover     - Hover State
  :disabled  - Disabled state
  .primary   - Primary Button
  .success   - Success color
  .warning   - Warning color
  .alert     - Alert color
  .link      - Text Link
  .loading   - Loading state
  .min-width - Fixed min width
  .full      - Full width
  .center    - centered
  .ellipsis  - with ellipsis (Button always stays single line and gets shortened with ...)

  Markup:
  <a href="" class="btn {{modifier_class}}">Link Button</a>
  <button class="btn {{modifier_class}}">Button Element</button>
  <input class="btn {{modifier_class}}" type="button" value="Input Button" />

  Style guide: Components.Button
*/
:root {
  --l: 50%;
  --colorHighlightHover: hsl(var(--colorHighlight), calc(var(--l) - 10%));
  /* - Button Style - */
  --button-bg: var(--color-yellow);
  --button-color: #fff;
  --button-fontsize: 1rem;
  --button-fontfamiliy: inherit;
  --button-minheight: 44px;
  --button-minwidth: 250px;
  --button-txtdeco: none;
  --button-padding: 10px 18px;
  --button-margin: 0;
  --button-display: inline-block;
}
.btn-wrap {
  display: flex;
  margin-bottom: 30px;
  /*.btn {margin: 0;border-radius: 0;} */
}
.btn-wrap:last-child {
  margin-bottom: 0;
}
.btn-wrap[data-align="left"] {
  justify-content: start;
}
.btn-wrap[data-align="left"] .btn {
  margin-right: 10px;
}
.btn-wrap[data-align="left"] .btn:last-child {
  margin-right: 0;
}
.btn-wrap[data-align="center"] {
  justify-content: center;
}
.btn-wrap[data-align="center"] .btn {
  margin-right: 10px;
}
.btn-wrap[data-align="center"] .btn:last-child {
  margin-right: 0;
}
.btn-wrap[data-align="right"] {
  justify-content: end;
}
.btn {
  border-radius: 5px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: var(--button-display);
  text-align: center;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 5px;
  padding: var(--button-padding);
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 100%;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), border 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  border-color: var(--brand-color-4);
  background: var(--brand-color-4);
}
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.loading::before {
  position: absolute;
  content: "";
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-left: calc(50% - 5px);
  top: 12px;
  box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  animation: dot-carousel 1.5s infinite linear;
}
.btn.is-blue {
  border-color: var(--brand-color-4);
  background: var(--brand-color-4);
}
.btn.is-blue:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
.btn.btn-yellow {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}
.btn.btn-yellow:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn.btn-yellow:hover.loading {
  color: transparent;
}
.btn.btn-yellow:hover.loading::before {
  box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
  animation: dot-carousel-white 1.5s infinite linear;
}
.btn[disabled],
.btn:disabled {
  border: 1px solid var(--colorDisabled);
  color: var(--colorDisabled);
  background-color: transparent;
  cursor: default;
}
.btn[disabled].primary,
.btn:disabled.primary {
  border-color: var(--colorDisabled);
  background-color: var(--colorDisabled);
  color: #000;
}
.btn[disabled].link,
.btn:disabled.link {
  background-color: transparent;
  border-color: transparent;
  color: var(--colorDisabled);
}
@keyframes dot-carousel {
  0% {
    box-shadow: 9984px 0 0 -1px #000, 9999px 0 0 1px #000, 10014px 0 0 -1px #000;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #000, 9984px 0 0 -1px #000, 9999px 0 0 1px #000;
  }
  100% {
    box-shadow: 9999px 0 0 1px #000, 10014px 0 0 -1px #000, 9984px 0 0 -1px #000;
  }
}
@keyframes dot-carousel-white {
  0% {
    box-shadow: 9984px 0 0 -1px #fff, 9999px 0 0 1px #fff, 10014px 0 0 -1px #fff;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #fff, 9984px 0 0 -1px #fff, 9999px 0 0 1px #fff;
  }
  100% {
    box-shadow: 9999px 0 0 1px #fff, 10014px 0 0 -1px #fff, 9984px 0 0 -1px #fff;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-accordion h2 {
  color: black;
}
.row-accordion details {
  border-top: 1px solid var(--brand-color-4);
  margin: 0 50px;
}
@media (prefers-reduced-motion: no-preference) {
  .row-accordion details {
    interpolate-size: allow-keywords;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-accordion details {
    margin: 0 3.968vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-accordion details {
    margin: 0 -16px;
  }
}
.row-accordion details::details-content {
  opacity: 0;
  block-size: 0;
  overflow-y: clip;
  transition: content-visibility 550ms allow-discrete, opacity 550ms, block-size 550ms;
}
.row-accordion details:last-child {
  border-bottom: 1px solid var(--brand-color-4);
}
.row-accordion details summary {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 110%;
  padding: 40px 0 40px 23px;
  list-style: none;
  user-select: none;
  cursor: pointer;
}
.row-accordion details summary::marker {
  display: none;
}
.row-accordion details summary::before {
  float: right;
  font-size: 24px;
}
.row-accordion details summary small {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 15px;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-accordion details summary {
    font-size: 2.381vw;
    padding: 3.175vw 0 3.175vw 1.825vw;
  }
  .row-accordion details summary small {
    font-size: 1.905vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-accordion details summary {
    font-size: 1.25rem;
    padding: 24px;
  }
  .row-accordion details summary small {
    font-size: 1rem;
  }
}
.row-accordion details .details-content {
  padding: 0 23px 40px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  color: #667085;
}
.row-accordion details .details-content figure,
.row-accordion details .details-content article {
  flex: 1;
}
.row-accordion details .details-content article {
  padding: 5px 0;
  line-height: 155%;
}
.row-accordion details .details-content figure {
  position: relative;
}
@media only screen and (min-width: 961px) {
  .row-accordion details .details-content:has(figure) {
    padding-right: 0;
  }
}
@media only screen and (max-width: 960px) {
  .row-accordion details .details-content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.row-accordion details[open]::details-content {
  opacity: 1;
  block-size: auto;
  overflow: visible;
}
.row-accordion details[open] summary::before {
  transform: rotate(180deg);
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
article ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}
article ul li {
  position: relative;
  padding-left: 25px;
}
article ul li::before {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--color-red);
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}
article h1,
article h2,
article h3 {
  color: var(--brand-color-1);
  font-weight: 700;
}
article a {
  word-break: break-all;
}
article p + h3,
article p + h4,
article p + h5 {
  margin-top: 40px;
}
article.center {
  color: #667085;
}
@media only screen and (max-width: 960px) {
  article.center {
    color: #000;
    text-align: left;
  }
}
article a:not([class]) {
  color: var(--brand-color-4);
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-advantages,
.row-benefits {
  position: relative;
  z-index: 5;
}
.row-advantages .content-width,
.row-benefits .content-width {
  padding-top: 100px;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages .content-width,
  .row-benefits .content-width {
    padding-top: 7.937vw;
  }
}
.row-advantages article,
.row-benefits article {
  width: 75%;
  color: #667085;
}
.row-advantages article.center,
.row-benefits article.center {
  margin: 0 auto 55px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages article,
  .row-benefits article {
    font-size: 1.429vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages article,
  .row-benefits article {
    width: auto;
    color: #000;
  }
}
.row-advantages .benefit,
.row-benefits .benefit {
  position: relative;
  width: 148px;
}
.row-advantages .benefit:hover,
.row-benefits .benefit:hover {
  z-index: 10;
}
.row-advantages .benefit figure,
.row-benefits .benefit figure {
  position: relative;
}
.row-advantages .benefit figure::before,
.row-benefits .benefit figure::before {
  position: absolute;
  right: 0;
  top: 0;
}
.row-advantages .benefit figure figcaption,
.row-benefits .benefit figure figcaption {
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages .benefit,
  .row-benefits .benefit {
    width: 11.746vw;
  }
  .row-advantages .benefit figure figcaption,
  .row-benefits .benefit figure figcaption {
    font-size: 1.27vw;
    padding-top: 2.381vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages .benefit,
  .row-benefits .benefit {
    width: 50%;
  }
  .row-advantages .benefit:nth-child(odd),
  .row-benefits .benefit:nth-child(odd) {
    padding-right: 30px;
  }
  .row-advantages .benefit:nth-child(even),
  .row-benefits .benefit:nth-child(even) {
    padding-left: 30px;
  }
}
.row-advantages .benefits-grid,
.row-benefits .benefits-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 960px) {
  .row-advantages .benefits-grid,
  .row-benefits .benefits-grid {
    flex-wrap: wrap;
  }
  .row-advantages .benefits-grid .benefit,
  .row-benefits .benefits-grid .benefit {
    margin-bottom: 30px;
  }
  .row-advantages .benefits-grid .benefit figure,
  .row-benefits .benefits-grid .benefit figure {
    position: relative;
  }
  .row-advantages .benefits-grid .benefit figure::before,
  .row-benefits .benefits-grid .benefit figure::before {
    position: absolute;
    right: -10px;
    top: 0;
  }
  .row-advantages .benefits-grid .benefit figure figcaptiom,
  .row-benefits .benefits-grid .benefit figure figcaptiom {
    padding-top: 15px;
  }
}
.row-advantages .surface-grid,
.row-benefits .surface-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 0 60px;
}
.row-advantages .surface-grid .benefit,
.row-benefits .surface-grid .benefit {
  width: 120px;
}
.row-advantages .surface-grid .benefit img,
.row-benefits .surface-grid .benefit img {
  border-radius: 50%;
}
.row-advantages .surface-grid .benefit figure,
.row-benefits .surface-grid .benefit figure {
  position: relative;
}
.row-advantages .surface-grid .benefit figure::before,
.row-benefits .surface-grid .benefit figure::before {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages .surface-grid .benefit,
  .row-benefits .surface-grid .benefit {
    width: 9.524vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages .surface-grid,
  .row-benefits .surface-grid {
    flex-wrap: wrap;
  }
  .row-advantages .surface-grid .benefit,
  .row-benefits .surface-grid .benefit {
    width: 25%;
    margin-bottom: 10px;
  }
  .row-advantages .surface-grid .benefit figure,
  .row-benefits .surface-grid .benefit figure {
    position: relative;
  }
  .row-advantages .surface-grid .benefit figure::before,
  .row-benefits .surface-grid .benefit figure::before {
    position: absolute;
    right: -10px;
    bottom: 0;
  }
  .row-advantages .surface-grid .benefit figure figcaptiom,
  .row-benefits .surface-grid .benefit figure figcaptiom {
    padding-top: 15px;
  }
}
.row-advantages .planter-grid,
.row-benefits .planter-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: 40px 0 60px;
}
.row-advantages .planter-grid .benefit,
.row-benefits .planter-grid .benefit {
  width: 102px;
}
.row-advantages .planter-grid .benefit figure,
.row-benefits .planter-grid .benefit figure {
  position: relative;
}
.row-advantages .planter-grid .benefit figure::before,
.row-benefits .planter-grid .benefit figure::before {
  position: absolute;
  right: -10px;
  bottom: 0;
  top: auto;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages .planter-grid .benefit,
  .row-benefits .planter-grid .benefit {
    width: 8.095vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages .planter-grid,
  .row-benefits .planter-grid {
    flex-wrap: wrap;
  }
  .row-advantages .planter-grid .benefit,
  .row-benefits .planter-grid .benefit {
    width: 25%;
    margin-bottom: 20px;
  }
}
.row-advantages .tooltip,
.row-benefits .tooltip {
  position: absolute;
  color: #fff;
  padding: 20px 30px;
  background: #2F2F2F;
  font-size: 1.125rem;
  line-height: 155.556%;
  font-weight: bold;
  width: 548px;
  opacity: 0;
  top: calc(100% + 20px);
  transform: translate(0, 20%);
  pointer-events: none;
  transition: opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.row-advantages .tooltip::before,
.row-benefits .tooltip::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0px 14px 20px 14px;
  border-color: transparent transparent #2F2F2F transparent;
  transform: rotate(0deg);
  position: absolute;
  top: -19px;
}
@media only screen and (min-width: 764px) {
  .row-advantages .tooltip[data-arrow="left"],
  .row-benefits .tooltip[data-arrow="left"] {
    left: 20px;
  }
  .row-advantages .tooltip[data-arrow="left"]::before,
  .row-benefits .tooltip[data-arrow="left"]::before {
    left: 40px;
  }
  .row-advantages .tooltip[data-arrow="center"],
  .row-benefits .tooltip[data-arrow="center"] {
    left: 50%;
    transform: translate(-50%, 20%);
  }
  .row-advantages .tooltip[data-arrow="center"]::before,
  .row-benefits .tooltip[data-arrow="center"]::before {
    left: 50%;
    margin-left: -20px;
  }
  .row-advantages .tooltip[data-arrow="right"],
  .row-benefits .tooltip[data-arrow="right"] {
    right: 40px;
  }
  .row-advantages .tooltip[data-arrow="right"]::before,
  .row-benefits .tooltip[data-arrow="right"]::before {
    right: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages#surfaces .benefit,
  .row-benefits#surfaces .benefit {
    padding: 0 10px;
  }
  .row-advantages#surfaces .benefit:nth-child(odd),
  .row-benefits#surfaces .benefit:nth-child(odd) {
    padding-right: 10px;
  }
  .row-advantages#surfaces .benefit:nth-child(even),
  .row-benefits#surfaces .benefit:nth-child(even) {
    padding-left: 10px;
  }
}
.row-advantages#container .tooltip,
.row-benefits#container .tooltip {
  width: auto;
  white-space: nowrap;
}
@media only screen and (max-width: 960px) {
  .row-advantages#container .benefit,
  .row-benefits#container .benefit {
    padding: 0 10px;
  }
  .row-advantages#container .benefit:nth-child(odd),
  .row-benefits#container .benefit:nth-child(odd) {
    padding-right: 10px;
  }
  .row-advantages#container .benefit:nth-child(even),
  .row-benefits#container .benefit:nth-child(even) {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 960px) {
  .row-advantages#advantages-pon .benefits-grid,
  .row-benefits#advantages-pon .benefits-grid {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 763px) {
  .row-advantages .tooltip,
  .row-benefits .tooltip {
    width: calc(100vw - (8.974vw * 2));
  }
  .row-advantages .benefits-grid .benefit:nth-child(odd) .tooltip,
  .row-benefits .benefits-grid .benefit:nth-child(odd) .tooltip {
    left: 0;
  }
  .row-advantages .benefits-grid .benefit:nth-child(odd) .tooltip::before,
  .row-benefits .benefits-grid .benefit:nth-child(odd) .tooltip::before {
    left: 40px;
  }
  .row-advantages .benefits-grid .benefit:nth-child(even) .tooltip,
  .row-benefits .benefits-grid .benefit:nth-child(even) .tooltip {
    right: 0;
  }
  .row-advantages .benefits-grid .benefit:nth-child(even) .tooltip::before,
  .row-benefits .benefits-grid .benefit:nth-child(even) .tooltip::before {
    right: 40px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+2) .tooltip,
  .row-benefits .surface-grid .benefit:nth-child(4n+2) .tooltip,
  .row-advantages .planter-grid .benefit:nth-child(4n+2) .tooltip,
  .row-benefits .planter-grid .benefit:nth-child(4n+2) .tooltip {
    left: -100px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+2) .tooltip::before,
  .row-benefits .surface-grid .benefit:nth-child(4n+2) .tooltip::before,
  .row-advantages .planter-grid .benefit:nth-child(4n+2) .tooltip::before,
  .row-benefits .planter-grid .benefit:nth-child(4n+2) .tooltip::before {
    left: 140px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+3) .tooltip,
  .row-benefits .surface-grid .benefit:nth-child(4n+3) .tooltip,
  .row-advantages .planter-grid .benefit:nth-child(4n+3) .tooltip,
  .row-benefits .planter-grid .benefit:nth-child(4n+3) .tooltip {
    left: auto;
    right: -30px;
    max-width: 290px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+3) .tooltip::before,
  .row-benefits .surface-grid .benefit:nth-child(4n+3) .tooltip::before,
  .row-advantages .planter-grid .benefit:nth-child(4n+3) .tooltip::before,
  .row-benefits .planter-grid .benefit:nth-child(4n+3) .tooltip::before {
    left: auto;
    right: 20px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+4) .tooltip,
  .row-benefits .surface-grid .benefit:nth-child(4n+4) .tooltip,
  .row-advantages .planter-grid .benefit:nth-child(4n+4) .tooltip,
  .row-benefits .planter-grid .benefit:nth-child(4n+4) .tooltip {
    left: auto;
    right: 30px;
  }
  .row-advantages .surface-grid .benefit:nth-child(4n+4) .tooltip::before,
  .row-benefits .surface-grid .benefit:nth-child(4n+4) .tooltip::before,
  .row-advantages .planter-grid .benefit:nth-child(4n+4) .tooltip::before,
  .row-benefits .planter-grid .benefit:nth-child(4n+4) .tooltip::before {
    left: auto;
    right: 20px;
  }
}
.row-advantages figure:hover + .tooltip,
.row-benefits figure:hover + .tooltip {
  opacity: 1;
  pointer-events: all;
  transform: translate(0, 0);
}
@media only screen and (min-width: 764px) {
  .row-advantages figure:hover + .tooltip[data-arrow="center"],
  .row-benefits figure:hover + .tooltip[data-arrow="center"] {
    transform: translate(-50%, 0);
  }
}
.row-advantages:has(.pon-logo) .content-width,
.row-benefits:has(.pon-logo) .content-width {
  padding-top: 0;
}
.row-advantages:has(.pon-logo) .pon-logo,
.row-benefits:has(.pon-logo) .pon-logo {
  margin: 0 0 50px;
  text-align: center;
}
.row-advantages:has(.pon-logo) .pon-logo img,
.row-benefits:has(.pon-logo) .pon-logo img {
  height: auto !important;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-advantages:has(.pon-logo) .pon-logo img,
  .row-benefits:has(.pon-logo) .pon-logo img {
    width: 27.063vw !important;
  }
}
.row-advantages:has(.pon-logo) h2,
.row-benefits:has(.pon-logo) h2 {
  text-align: center;
}
.row-benefits article:has(.btn-wrap:first-child) {
  width: auto;
  margin-top: 40px;
}
.row-benefits .surface-grid .benefit figure::before {
  color: #989898;
}
/*
*
*   SECONDRED Boilerplate
*   Cookiebar
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --savebtn-color: #fff;
  --savebtn-background: #000;
  --savebtn-fontsize: 1rem;
  --savebtn-border: 0;
  --savebtn-borderadius: 6px;
}
/* -- Cookiebar -- */
.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8878;
  background: var(--color-yellow);
  padding: 0 30px;
}
.cookie-bar .content-width {
  width: 100%;
  max-width: var(--layout-width);
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  padding: 30px 0;
  border: 0;
  font-size: 1rem;
  gap: 20px;
}
.cookie-bar .content-width p {
  margin: 0;
  padding: 0;
  flex: 1;
}
@media only screen and (max-width: 567px) {
  .cookie-bar .content-width {
    flex-direction: column;
  }
}
.cookie-bar .cookie-desc {
  flex: 1 1 auto;
  width: 55%;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
.cookie-bar .cookie-desc a {
  text-decoration: underline;
}
.cookie-bar .cookie-desc a:hover {
  text-decoration: none;
}
.cookie-bar .cookie-desc p {
  margin: 0;
  padding: 0;
}
.cookie-bar .cookie-options {
  width: 45%;
  text-align: right;
}
.cookie-bar .cookie-options button {
  margin: 0 0 10px 10px;
  display: inline-block;
}
.cookie-bar button {
  border-radius: 5px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: var(--button-padding);
  font-family: var(--font);
  font-size: var(--button-fontsize);
  font-weight: 500;
}
.cookie-bar button:hover {
  background: var(--brand-color-4);
  border-color: var(--brand-color-4);
}
/* -- Buttons als Normaler Textlink-- */
.cookie-bar .cookie-options a.filled {
  border-radius: 6px;
  border: 2px solid #CED2DB;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-align: center;
  display: inline-block;
  padding: 4px 20px 3px;
  font-weight: normal;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1.688rem;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), border 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.cookie-bar .cookie-options a.btn-config.filled {
  background: transparent;
  border-color: var(--color-yellow);
}
.cookie-bar .cookie-options a.btn-config.filled:hover {
  background: var(--color-yellow);
}
.cookie-bar .cookie-options a.btn-accept.filled {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}
.cookie-bar .cookie-options a.btn-accept.filled:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.cookie-bar .cookie-options a.filled:hover {
  opacity: 0.8;
}
/* -- -- */
.cookie-opt-overlay {
  font-family: "Arial", "Helvetica", sans-serif;
  max-width: 600px;
  padding: 40px;
  color: #595959;
  background: #fff;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cookie-opt-overlay .cookie-top-container {
  max-height: 70vh;
  overflow: auto;
}
.cookie-opt-overlay #cookiebar-overlay-description-container p {
  margin-bottom: 30px !important;
}
.cookie-opt-overlay .cookie-opt-title {
  font-size: 22px;
  margin-bottom: 30px;
}
.cookie-opt-overlay * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cookie-opt-overlay .cookie-opt-close {
  float: right;
  border: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  appearance: none;
  cursor: pointer;
  position: relative;
  top: -5px;
}
.cookie-opt-overlay .cookie-opt-close span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  display: inline;
}
.cookie-opt-overlay .cookie-opt-close::before,
.cookie-opt-overlay .cookie-opt-close::after {
  width: 20px;
  height: 2px;
  content: "";
  position: absolute;
  background: #808080;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -1px;
}
.cookie-opt-overlay .cookie-opt-close::before {
  transform: rotate(45deg);
}
.cookie-opt-overlay .cookie-opt-close::after {
  transform: rotate(-45deg);
}
.cookie-opt-overlay .cookie-opt-close:hover::before,
.cookie-opt-overlay .cookie-opt-close:hover::after {
  background: var(--brand-color-4);
}
.cookie-opt-overlay .cookie-opt-content {
  text-align: left;
}
.cookie-opt-overlay .cookie-opt-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}
.cookie-opt-overlay .cookie-opt-toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -9px;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  display: block;
  transform: rotate(45deg);
}
.cookie-opt-overlay .cookie-opt-toggle.open {
  transform: rotate(180deg);
}
.cookie-opt-overlay .cookie-opt-toggle:hover::before {
  border-color: var(--brand-color-4);
}
.cookie-opt-overlay .cookie-opt-cattitle {
  background: #EDEDED;
  padding: 11px 10px;
  min-height: 40px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  border-top: 2px solid #fff;
}
.cookie-opt-overlay .cookie-opt-cattitle small {
  display: block;
  text-transform: none;
  font-size: 12px;
  padding-left: 30px;
  font-weight: normal;
  filter: alpha(opacity=75);
  opacity: 0.75;
  margin-right: 40px;
  padding-top: 5px;
  line-height: normal;
}
.cookie-opt-overlay .cookie-opt-cattitle:first-child {
  border-top: 0;
}
.cookie-opt-overlay .cookie-single-opt-toggle input,
.cookie-opt-overlay .cookie-opt-cattitle input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.cookie-opt-overlay .cookie-single-opt-toggle label,
.cookie-opt-overlay .cookie-opt-cattitle label {
  cursor: pointer;
}
.cookie-opt-overlay .cookie-single-opt-toggle label em,
.cookie-opt-overlay .cookie-opt-cattitle label em {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #E1E1E1;
  color: #ccc;
  float: left;
  margin-right: 10px;
  border: 0;
  border-radius: 50%;
  margin-top: -1px;
  background-position: 3px 6px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTEgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPjxwYXRoIGQ9Ik0xMC4wNTYsMC4wMDJjMC43ODcsMC4wNjYgMS4yMDYsMS4xMTggMC42NTEsMS43MDVsLTUuNzA3LDUuNzA3bC0zLjcwNywtMy43MDdjLTEuNDA5LC0xLjQ5IDAuNjMyLC0yLjE1NCAxLjQxNCwtMS40MTRsMi4yOTMsMi4yOTNsNC4yOTMsLTQuMjkzYzAuMzM1LC0wLjMxNyAwLjQwNCwtMC4zMDIgMC43NjMsLTAuMjkxWiIgc3R5bGU9ImZpbGw6I2NjYzsiLz48L3N2Zz4=);
}
.cookie-opt-overlay .cookie-opt-cattitle label > span {
  padding: 2px 0;
  display: block;
  line-height: normal;
  margin: auto;
}
.cookie-opt-overlay .cookie-single-opt-toggle:has(input:checked) label em,
.cookie-opt-overlay .cookie-opt-cattitle:has(input:checked) label em {
  color: #fff;
  background-color: var(--brand-color-4);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTEgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPjxwYXRoIGQ9Ik0xMC4wNTYsMC4wMDJjMC43ODcsMC4wNjYgMS4yMDYsMS4xMTggMC42NTEsMS43MDVsLTUuNzA3LDUuNzA3bC0zLjcwNywtMy43MDdjLTEuNDA5LC0xLjQ5IDAuNjMyLC0yLjE1NCAxLjQxNCwtMS40MTRsMi4yOTMsMi4yOTNsNC4yOTMsLTQuMjkzYzAuMzM1LC0wLjMxNyAwLjQwNCwtMC4zMDIgMC43NjMsLTAuMjkxWiIgc3R5bGU9ImZpbGw6I2ZmZjsiLz48L3N2Zz4=);
}
.cookie-opt-overlay .cookie-opt-catinfo {
  font-size: 13px;
  line-height: 16px;
  background: #F1F1F1;
  display: none;
}
.cookie-opt-overlay .cookie-opt-catinfo.active {
  display: block;
}
.cookie-opt-overlay .cookie-opt-catinfo p {
  padding: 15px 18px;
  margin: 0;
}
.cookie-opt-overlay .cookie-opt-catinfo .cookie-opt-table-wrap {
  padding: 15px 0;
  border-top: 1px solid #E4E4E4;
}
.cookie-opt-overlay .cookie-opt-catinfo table {
  table-layout: fixed;
}
.cookie-opt-overlay .cookie-opt-catinfo table th,
.cookie-opt-overlay .cookie-opt-catinfo table td {
  text-align: left;
  vertical-align: top;
  padding: 2px 18px;
}
.cookie-opt-overlay .cookie-opt-catinfo table th {
  width: 120px;
}
@media only screen and (max-width: 567px) {
  .cookie-opt-overlay .cookie-opt-catinfo table th {
    width: 70px;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.cookie-opt-overlay .cookie-single-opt-toggle {
  padding-left: 18px;
  float: left;
}
.cookie-opt-overlay .cookie-single-opt-toggle + table {
  margin-left: 50px;
  width: calc(100% - 50px);
}
.cookie-opt-overlay .cookie-single-opt-toggle + table th {
  padding-right: 0;
  padding-left: 0;
}
.cookie-opt-overlay .cookie-single-opt-toggle label {
  position: relative;
  top: 2px;
}
.cookie-opt-overlay .cookie-single-opt-toggle label span {
  display: none;
}
.cookie-opt-overlay .cookie-top-savebtn {
  width: 100%;
  cursor: pointer;
  background: var(--savebtn-background);
  color: var(--savebtn-color);
  font-size: var(--savebtn-fontsize);
  font-weight: bold;
  border-radius: var(--savebtn-borderadius);
  height: 40px;
  margin-top: 30px;
  border: 0;
}
.cookie-opt-overlay .cookie-top-savebtn:hover {
  color: #000;
  background: var(--color-yellow);
}
.cookie-opt-catinfo {
  transition: height 0.35s ease-in-out;
  overflow: hidden;
}
.cookie-opt-overlay .cookie-opt-catinfo {
  display: block;
}
.cookie-opt-catinfo:not(.active) {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .cookie-bar .cookie-desc {
    padding-left: 20px;
  }
  .cookie-bar .cookie-options {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .cookie-bar .content-width {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .cookie-bar .cookie-desc {
    padding: 0 0 20px;
  }
  .cookie-bar .cookie-desc,
  .cookie-bar .cookie-options {
    width: 100%;
    text-align: center;
  }
  .cookie-bar .cookie-options {
    padding-right: 0;
  }
  .cookie-bar .cookie-options a.btn-config,
  .cookie-bar .cookie-options a.btn-accept {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cookie-opt-overlay {
    max-width: 95%;
    padding: 20px;
  }
  .cookie-opt-overlay .cookie-top-savebtn {
    margin-top: 20px;
  }
  .cookie-bar .cookie-options a.btn-config,
  .cookie-bar .cookie-options a.btn-accept {
    font-size: 12px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-swiper {
  padding-top: 60px;
  position: relative;
  padding-bottom: 200px;
}
.row-swiper::before {
  content: "";
  width: 100%;
  height: 110%;
  background: var(--color-lightgrey);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: skew(0deg, -3deg);
  transform-origin: 0% 100%;
}
.row-swiper .swiper-slide .mobi-headline {
  display: none;
}
.row-swiper .swiper-slide h1,
.row-swiper .swiper-slide h2,
.row-swiper .swiper-slide .mobi-headline {
  font-size: 6.813rem;
  font-weight: 700;
  font-style: italic;
  line-height: 95%;
  color: var(--slide-color);
}
.row-swiper .swiper-slide p {
  font-size: 1.688rem;
  margin-bottom: 0;
}
.row-swiper .swiper-slide p strong {
  font-size: 1.875rem;
}
.row-swiper .swiper-slide .btn {
  background: var(--slide-color);
  border: var(--slide-color);
  color: #fff;
}
.row-swiper .swiper-slide .btn:hover,
.row-swiper .swiper-slide .btn:focus {
  background: #000;
  border-color: #000;
  color: #fff;
}
.row-swiper .swiper-slide figure {
  display: flex;
  flex-direction: row;
}
.row-swiper .swiper-slide figure .img {
  display: block;
  width: 66.666%;
  border-radius: 10px;
  overflow: hidden;
}
.row-swiper .swiper-slide figure .img img {
  display: block;
}
.row-swiper .swiper-slide figure figcaption {
  width: 33.333%;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translate(40%, 0);
  transition: opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), transform 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.row-swiper .swiper-slide .btn-wrap {
  margin-top: 65px;
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  .row-swiper .swiper-slide .btn-wrap {
    margin-top: 3.385vw;
  }
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-slide .btn-wrap {
    margin-top: 5.641vw;
  }
}
.row-swiper .swiper-slide.show-figcaption figcaption {
  opacity: 1;
  transition-delay: 0;
  transform: translate(0, 0);
}
.row-swiper .swiper-pagination {
  text-align: right;
  width: 66.666%;
  padding-right: 20px;
  padding-bottom: 5px;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  background: #DBDBDB;
  opacity: 1;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--color-yellow);
}
.row-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  .row-swiper {
    padding-top: 3.125vw;
  }
  .row-swiper .swiper-slide h1,
  .row-swiper .swiper-slide h2,
  .row-swiper .swiper-slide .mobi-headline {
    font-size: 5.677vw;
  }
  .row-swiper .swiper-slide p {
    font-size: 1.406vw;
  }
  .row-swiper .swiper-slide p strong {
    font-size: 1.563vw;
  }
  .row-swiper .swiper-slide figure figcaption {
    padding-left: 3.125vw;
  }
  .row-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media only screen and (max-width: 820px) {
  .row-swiper {
    padding-top: 7.692vw;
    padding-bottom: 100px;
  }
  .row-swiper::before {
    height: 150%;
    bottom: -5%;
  }
  .row-swiper .swiper-slide .mobi-headline {
    display: block;
    font-size: 14vw;
    text-align: center;
    margin-bottom: 5.128vw;
    margin-top: -5px;
    font-style: italic;
    font-family: var(--headline-font);
  }
  .row-swiper .swiper-slide h1,
  .row-swiper .swiper-slide h2 {
    display: none;
  }
  .row-swiper .swiper-slide figure {
    flex-direction: column;
  }
  .row-swiper .swiper-slide figure .img {
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 16 / 15;
  }
  .row-swiper .swiper-slide figure .img img {
    object-fit: cover;
    height: 100% !important;
  }
  .row-swiper .swiper-slide figure figcaption {
    text-align: center;
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
    opacity: 1;
    transition-delay: 0;
    transform: translate(0, 0);
  }
  .row-swiper .swiper-slide figure figcaption .btn-wrap[data-align="left"] {
    justify-content: center;
  }
  .row-swiper .swiper-pagination {
    width: 100%;
    text-align: center;
    bottom: -50px;
  }
  .row-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}
@media only screen and (max-width: 567px) {
  .row-swiper {
    padding-top: 50px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-related {
  padding-bottom: 0;
}
.row-related article {
  margin-bottom: 108px;
  width: 75%;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-related article {
    margin-bottom: 7.937vw;
    font-size: 1.429vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-related article {
    width: auto;
    margin-bottom: 42px;
  }
}
.row-related .content-width {
  padding: 122px 0;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-related .content-width {
    padding: 9.683vw 0;
  }
}
@media only screen and (max-width: 960px) {
  .row-related .content-width {
    padding: 42px 0;
  }
}
.row-related .grid {
  margin: 0 -15px;
  margin-bottom: -30px;
}
.row-related .grid .col {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.row-related .grid .col .card {
  height: 100%;
}
@media only screen and (max-width: 960px) {
  .row-related .card {
    background: #E9E9E9;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-teaser {
  padding: 0 0 100px;
}
.row-teaser figure {
  position: relative;
}
.row-teaser figure figcaption {
  position: relative;
}
.row-teaser .figure {
  position: relative;
}
.row-teaser .figure .figcaption {
  position: relative;
}
.row-teaser .img {
  overflow: hidden;
  max-height: 80vh;
  min-height: 500px;
}
.row-teaser .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 485px;
}
.row-teaser .img img {
  max-height: 80vh;
  height: 100% !important;
  object-position: center;
  object-fit: cover;
  min-height: 500px;
}
.row-teaser .label {
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
.row-teaser .label::before {
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.row-teaser h1 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  hyphens: auto;
  font-size: var(--headline-1-size);
  font-size: var(--headline-1-clamp-size);
  line-height: 4.5rem;
  line-height: clamp(3rem, 1.203rem + 3.77vw, 4.5rem);
}
@media only screen and (max-width: 567px) {
  .row-teaser h1 {
    font-size: 2rem;
    line-height: 100%;
  }
}
.row-teaser:has(.card-opt) h1 {
  max-width: calc(100% - 420px);
}
@media only screen and (max-width: 820px) {
  .row-teaser:has(.card-opt) h1 {
    max-width: none;
  }
}
.row-teaser .teaser-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 60px 115px;
}
.row-teaser .card {
  position: absolute;
  right: 60px;
  bottom: -30px;
}
@media only screen and (max-width: 1400px) {
  .row-teaser .teaser-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row-teaser .card {
    right: 30px;
  }
}
.row-teaser[data-style="dark"] .img::before {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-teaser[data-style="light"] h1 {
  color: #000;
}
.row-teaser[data-style="light"] .img::before {
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.row-teaser[data-style="noimg"] h1 {
  color: #000;
}
.row-teaser[data-style="noimg"] .teaser-content {
  position: relative;
  padding-top: 50px;
}
.row-teaser[data-style="404"] {
  height: 100%;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-teaser[data-style="404"] .figure,
.row-teaser[data-style="404"] figure {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.row-teaser[data-style="404"] h1 {
  margin-bottom: 30px;
}
.row-teaser[data-style="404"] .img {
  max-height: calc(100vh - 100px);
  flex: 1;
}
.row-teaser[data-style="404"] .img::before {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 820px) {
  .row-teaser .img::before {
    display: none;
  }
  .row-teaser .label {
    position: absolute;
    left: 30px;
    top: 20px;
  }
  .row-teaser h1 {
    color: #000;
    order: 2;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .row-teaser .card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
  }
  .row-teaser figure figcaption {
    position: static;
  }
  .row-teaser .figure .figcaption {
    position: static;
  }
  .row-teaser .teaser-content {
    position: static;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-image {
  background-image: url(../gfx/image-bg-lft.png), url(../gfx/image-bg-rt.png);
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
}
.row-image .content-width {
  position: relative;
}
.row-image figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.row-image figure img {
  display: block;
}
.row-image figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 30px 20px;
  color: #fff;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-image figure:has(figcaption) {
  background: #000;
}
.row-image article {
  position: absolute;
  right: 120px;
  bottom: -20px;
  border-radius: 10px;
  background: var(--color-orange);
  padding: 30px;
  max-width: 448px;
}
.row-image article p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1120px) {
  .row-image article {
    right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .row-image figure figcaption {
    bottom: auto;
    top: 0;
    padding: 20px 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  }
  .row-image article {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -30px 30px 0;
    max-width: none;
  }
}
@media only screen and (max-width: 820px) {
  .row-image article {
    padding: 20px;
    position: relative;
    right: auto;
    bottom: auto;
    margin: -20px 20px 0;
    max-width: none;
  }
}
/* -- Collage -- */
.row-collage {
  background-image: url(../gfx/image-bg-lft.png), url(../gfx/image-bg-rt.png);
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
}
.row-collage .has-desc {
  position: relative;
}
.row-collage .has-desc + figure,
.row-collage .has-desc + .has-desc {
  margin-top: 30px;
}
.row-collage .grid {
  margin: 0 -15px;
}
.row-collage .grid .col {
  padding: 0 15px;
}
.row-collage figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.row-collage figure img {
  display: block;
  position: relative;
}
.row-collage figure:has(figcaption) {
  background: #000;
}
.row-collage figure:has(figcaption)::before {
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30%;
  z-index: 2;
  border-radius: 0 0 10px 10px;
}
.row-collage figure figcaption {
  font-size: 0.75rem;
  color: #fff;
  font-style: italic;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 20px;
  z-index: 3;
}
.row-collage figure .desc-wrap {
  position: relative;
}
.row-collage figure + figure,
.row-collage figure + .has-desc {
  margin-top: 30px;
}
.row-collage article {
  position: absolute;
  bottom: -15px;
  right: 30px;
  padding: 20px;
  background: var(--color-orange);
  width: 40%;
  border-radius: 6px;
  z-index: 3;
  max-width: 300px;
}
.row-collage.no-shadow figure::before {
  display: none;
}
.row-collage[data-count="2"] .grid .col:last-child {
  padding-top: 120px;
}
@media only screen and (max-width: 820px) {
  .row-collage[data-count="2"] .grid .col {
    width: 100%;
  }
  .row-collage[data-count="2"] .grid .col:last-child {
    padding-top: 0;
  }
}
.row-collage[data-count="3"] .grid .col {
  justify-content: center;
}
.row-collage[data-count="3"] .grid .col,
.row-collage[data-count="4"] .grid .col {
  display: flex;
  flex-direction: column;
}
.row-collage[data-count="3"] .grid .col:first-child,
.row-collage[data-count="4"] .grid .col:first-child {
  flex-wrap: wrap;
  align-items: flex-end;
}
.row-collage[data-count="3"] .grid .col:first-child figure.small,
.row-collage[data-count="4"] .grid .col:first-child figure.small {
  width: 65%;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc:has(.small),
.row-collage[data-count="4"] .grid .col:last-child .has-desc:has(.small),
.row-collage[data-count="3"] .grid .col:last-child figure.small,
.row-collage[data-count="4"] .grid .col:last-child figure.small {
  width: 45%;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc,
.row-collage[data-count="4"] .grid .col:last-child .has-desc {
  margin-right: auto;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc figure.small,
.row-collage[data-count="4"] .grid .col:last-child .has-desc figure.small {
  width: auto;
}
@media only screen and (max-width: 820px) {
  .row-collage[data-count="3"] .has-desc {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid .col {
    width: 100%;
    position: relative;
  }
  .row-collage[data-count="3"] .grid .col:first-child {
    align-items: flex-start;
  }
  .row-collage[data-count="3"] .grid .col:first-child figure:not(.small) {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid .col:first-child figure.small {
    width: calc(40% - 15px);
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 20px;
  }
  .row-collage[data-count="3"] .grid .col:last-child {
    align-items: flex-end;
  }
  .row-collage[data-count="3"] .grid .col:last-child figure {
    width: calc(60% - 15px);
  }
  .row-collage[data-count="4"] .grid {
    margin: 0;
  }
  .row-collage[data-count="4"] .grid .col {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .row-collage[data-count="4"] .grid .col figure {
    width: 100%;
  }
  .row-collage[data-count="4"] .grid .col figure + figure {
    margin-top: 20px;
  }
  .row-collage[data-count="4"] .grid .col figure.small {
    width: calc(50% - 20px);
  }
  .row-collage[data-count="4"] .grid .col:first-child figure.small {
    width: calc(50% - 10px);
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 20px;
  }
  .row-collage[data-count="4"] .grid .col:last-child {
    padding-top: 0;
  }
  .row-collage[data-count="4"] .grid .col:last-child figure.small {
    width: calc(50% - 10px);
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-text .content-width {
  padding-top: 100px;
}
.row-text .content-width article {
  width: 75%;
  color: #667085;
}
.row-text .content-width article h1,
.row-text .content-width article h2,
.row-text .content-width article h3 {
  color: var(--brand-color-1);
}
.row-text .content-width article h1,
.row-text .content-width article h2 {
  letter-spacing: -1.12px;
  font-size: 3.5rem;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-text .content-width {
    padding-top: 7.937vw;
  }
  .row-text .content-width article {
    font-size: 1.429vw;
  }
  .row-text .content-width article h1,
  .row-text .content-width article h2 {
    font-size: 4.444vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-text .content-width {
    padding-top: 42px;
  }
  .row-text .content-width article {
    width: auto;
    color: #000;
  }
  .row-text .content-width article h1,
  .row-text .content-width article h2 {
    font-size: 9vw;
    color: #000;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-text-image {
  overflow: hidden;
}
.row-text-image h1,
.row-text-image h2 {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 114.286%;
  letter-spacing: -1.12px;
  color: var(--brand-color-1);
}
.row-text-image h1.highlight {
  color: var(--color-green);
  font-family: 'Playfair Display';
  font-style: italic;
}
.row-text-image article {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 155.556%;
  color: #667085;
}
@media only screen and (max-width: 960px) {
  .row-text-image article {
    color: #000;
  }
}
.row-text-image article .btn-wrap {
  margin-top: 60px;
}
.row-text-image .col:first-child article {
  width: 100%;
}
.row-text-image .col-1-1 article {
  left: 0;
  padding: 0 115px;
}
@media only screen and (min-width: 961px) and (max-width: 1260px) {
  .row-text-image h1,
  .row-text-image h2 {
    font-size: 4.444vw;
  }
  .row-text-image article {
    font-size: 1.429vw;
  }
  .row-text-image .btn-wrap {
    margin-top: 4.762vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-text-image h1,
  .row-text-image h2 {
    font-size: 9vw;
  }
}
.row-text-image .grid {
  margin: 0 -25px;
}
.row-text-image .grid .col {
  padding: 0 25px;
}
@media only screen and (max-width: 960px) {
  .row-text-image .grid {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.row-text-image .col-img figure img {
  display: block;
  border-radius: 0 0 15px 15px;
}
.row-text-image .col-img figure figcaption {
  font-size: 1rem;
  line-height: 100%;
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  .row-text-image .col-img figure figcaption {
    font-size: 0.833vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-text-image .col-img figure img {
    aspect-ratio: 1/1;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
  }
}
.row-text-image .col-img:first-child figure {
  left: 5%;
  position: relative;
  top: 5%;
}
@media only screen and (max-width: 820px) {
  .row-text-image .col-img:first-child figure {
    left: 0;
    top: 0;
  }
}
.row-text-image .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-text-image .col-text:last-child article {
  left: 0;
  width: 100%;
}
.row-text-image.has-serifheadline h1,
.row-text-image.has-serifheadline h2 {
  font-family: 'Playfair Display', serif;
  color: var(--color-green);
  font-style: italic;
  letter-spacing: normal;
}
@media only screen and (max-width: 960px) {
  .row-text-image {
    padding-top: 30px;
  }
}
.row-text-image:first-child article {
  padding-top: 70px;
}
@media only screen and (max-width: 960px) {
  .row-text-image:first-child article {
    padding-top: 0;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.map-pin {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-radius 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.map-pin::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  background: black;
  opacity: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 450ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.map-pin.cluster {
  width: 40px;
  height: 40px;
  background: #737373;
}
.map-pin.cluster button {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-family: var(--font);
  border: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
.map-pin.open {
  border-radius: 50%;
}
.map-pin.open::before {
  opacity: 0.4;
  transform: scale(1);
}
#content-hub-map {
  overflow: hidden;
}
.row-map {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-map .content {
  height: 100%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 800px;
}
.row-map .map-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.row-map .map-wrap img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
.row-map .map-options {
  position: relative;
  margin-top: auto;
}
.row-map .map-options .btn {
  position: absolute;
  right: 0;
  bottom: 100px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.row-map .card-related {
  width: 264px;
}
.row-map .card-related h3 {
  font-size: 1.25rem;
}
.row-map .card-related .label {
  left: 30px;
  font-size: 0.875rem;
}
.row-map .card-related .inner {
  padding: 30px;
}
.row-map .card-related.open {
  display: block;
}
.row-map .gm-style .gm-style-iw-c {
  background: transparent;
  border-radius: 6px;
  padding: 0;
}
.row-map .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.row-map .gm-style .gm-style-iw-tc {
  display: none !important;
}
.row-map .gm-style button.gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important;
}
.row-map .map-placeholder {
  position: relative;
  flex: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  background-image: url(../gfx/map-placeholder-bg.png), url(../gfx/map-placeholder.png);
  background-position: left top, 55% center;
  background-repeat: no-repeat;
  background-size: auto, contain;
}
.row-map .map-placeholder .map-placeholder-text {
  font-size: 1.25rem;
  max-width: 550px;
  text-align: center;
  font-weight: normal;
  padding: 0 20px;
  padding-top: 100px;
}
.row-map .map-placeholder .map-placeholder-text p {
  margin-bottom: 50px;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-wizard {
  position: relative;
}
.row-wizard .content-width {
  padding-top: 100px;
}
.row-wizard::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #F4F2F2;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: skew(0deg, -3deg);
}
.row-wizard .swiper-button-next {
  position: relative;
  right: auto;
  margin: auto;
  width: auto;
  padding: 0 20px;
}
.row-wizard .swiper-button-next:after {
  display: none;
}
.row-wizard .swiper-nav {
  display: flex;
  flex-direction: column;
}
.row-wizard .swiper-slide {
  height: auto;
}
.row-wizard .swiper-slide .form-radio label,
.row-wizard .swiper-slide .form-radio input {
  display: none;
}
.row-wizard .swiper-slide.swiper-slide-active .form-radio label {
  display: flex;
}
.row-wizard .swiper-slide.swiper-slide-active .form-radio input {
  display: block;
}
.wizard-card h2 {
  text-align: center;
  font-size: 3.75rem;
  line-height: 90%;
  color: #8E8E8E;
  max-width: 1095px;
  margin: 0 auto;
  font-style: italic;
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  .wizard-card h2 {
    font-size: 3.125vw;
    max-width: 57.031vw;
  }
}
@media only screen and (max-width: 820px) {
  .wizard-card h2 {
    font-size: 12.821vw;
    max-width: none;
  }
}
[data-step="1"] fieldset.wizard h3 {
  color: var(--color-green);
}
fieldset.wizard {
  padding: 30px 0;
}
fieldset.wizard h3 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: var(--color-yellow-text);
  margin-bottom: 40px;
  font-family: var(--font);
  margin-top: 75px;
}
fieldset.wizard[data-step="1"] h3 {
  color: var(--color-green);
}
fieldset.wizard .fill-volume-result {
  max-width: 400px;
  padding: 30px 30px;
  border-radius: 10px;
  background: var(--color-lightgrey);
  text-align: center;
  font-size: 3rem;
  color: var(--color-darkgrey);
  font-weight: bold;
  margin: 0 auto;
}
@media only screen and (max-width: 567px) {
  fieldset.wizard .fill-volume-result {
    width: 100%;
  }
}
fieldset.wizard .volume-inputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}
fieldset.wizard .volume-inputs .form-item {
  max-width: 254px;
  display: flex;
  flex-direction: column-reverse;
}
fieldset.wizard .volume-inputs .form-item label {
  font-size: 1rem;
  text-align: center;
  pointer-events: none;
  background: #F4F2F2;
  margin: 0 auto -10px;
  padding: 5px 10px;
  position: relative;
  z-index: 2;
}
fieldset.wizard .volume-inputs .form-item input {
  border: 0;
  background: transparent;
  font-size: 2rem;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #000;
}
@media only screen and (max-width: 763px) {
  fieldset.wizard .volume-inputs {
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 20px;
  }
  fieldset.wizard .volume-inputs .form-item {
    max-width: none;
  }
}
fieldset.wizard .option-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 75px;
}
fieldset.wizard .option-list .option-card {
  width: 254px;
  border-radius: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.11);
  position: relative;
  overflow: hidden;
}
fieldset.wizard .option-list .option-card input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
fieldset.wizard .option-list .option-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  cursor: pointer;
  background: #E6E6E6;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.wizard .option-list .option-card label img {
  margin: 20px auto;
  height: auto !important;
}
fieldset.wizard .option-list .option-card label span.icon {
  display: block;
  padding: 0 20px;
}
fieldset.wizard .option-list .option-card label span.text {
  padding: 20px 20px;
  background: #fff;
  width: 100%;
  flex: 1;
  color: #8E8E8E;
  text-align: center;
  min-height: 115px;
  display: grid;
  justify-content: center;
  align-content: center;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 120%;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1), color 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.wizard .option-list .option-card:hover span.text {
  color: #fff;
  background: #000;
}
fieldset.wizard .option-list .option-card input:checked + label {
  background: #fff;
}
fieldset.wizard .option-list .option-card input:checked + label span.text {
  color: #000;
  background: var(--color-yellow);
}
fieldset.wizard .substrat-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 75px;
}
fieldset.wizard .substrat-list .product-card {
  width: calc(calc(100% / 4) - 30px);
}
fieldset.wizard .substrat-list .product-card .product-img {
  height: 455px;
}
fieldset.wizard .substrat-list .product-card .product-img img {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain;
}
@media only screen and (min-width: 820px) and (max-width: 1920px) {
  fieldset.wizard h3 {
    font-size: 1.667vw;
    line-height: 1.719vw;
  }
  fieldset.wizard .option-list {
    gap: 2.083vw;
    margin-bottom: 3.906vw;
  }
  fieldset.wizard .option-list .option-card {
    border-radius: 1.302vw;
    width: 12.229vw;
  }
  fieldset.wizard .option-list .option-card label span.text {
    font-size: 1.354vw;
    padding: 1.042vw;
    min-height: 5.99vw;
  }
  fieldset.wizard .substrat-list {
    gap: 2.083vw;
  }
  fieldset.wizard .substrat-list .product-card {
    width: calc(calc(100% / 4) - 2.083vw);
  }
  fieldset.wizard .substrat-list .product-card .product-img {
    height: 23.698vw;
  }
}
@media only screen and (max-width: 1120px) {
  fieldset.wizard .substrat-list .product-card {
    width: calc(calc(100% / 3) - 2.083vw);
  }
}
@media only screen and (max-width: 820px) {
  fieldset.wizard .option-list {
    gap: 30px 2.083vw;
    margin-bottom: 3.906vw;
  }
  fieldset.wizard .option-list .option-card {
    border-radius: 1.302vw;
    width: 38.487vw;
  }
  fieldset.wizard .option-list .option-card label span.text {
    font-size: 4.103vw;
    padding: 3.077vw;
    min-height: 17.692vw;
  }
  fieldset.wizard .substrat-list-outer {
    overflow: auto;
    max-width: 100vw;
    margin: 0 -30px;
  }
  fieldset.wizard .substrat-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
    scroll-padding-left: 30px;
    scroll-padding-right: 30px;
    width: auto;
    overflow-x: scroll;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
  }
  fieldset.wizard .substrat-list .product-card {
    min-width: calc(100vw - 120px);
    width: auto;
    scroll-snap-align: start;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/* Custom Styles & Experimental  - */
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --color-yellow: #FFD500;
  --color-yellow-text: #F6C451;
  --color-black: #000;
  --color-red: #EB5A16;
  --color-pink: #E3B3C2;
  --color-green: #A1BE00;
  --brand-color-1: #344054;
  --brand-color-2: #B8F2FF;
  --brand-color-3: #F3FFDF;
  --brand-color-4: #3445FF;
  --color-grey: #B2B2B2;
  --color-darkgrey: #8E8E8E;
  --color-lightgrey: #E6E6E6;
}
.hidden {
  display: none !important;
}
.anchor {
  scroll-margin-top: 250px;
  /*height: 100px; margin-bottom: -100px; */
}
@media only screen and (max-width: 820px) {
  .anchor {
    scroll-margin-top: 150px;
  }
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: #fff;
}
.container main {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/*
*
*   SECONDRED Boilerplate
*   Debug Style
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
/* Custom Focus */
.cookie-bar:focus-visible {
  outline: none;
}
.cookie-bar:focus-visible .content-width {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.card-related:focus-within {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.custom-select:focus-within .selected-options,
.privacy-container input:focus-visible + label em,
.fui-checkbox input:focus-visible + label::before,
.fui-radio input:focus-visible + label::before,
.form-radio input[type="radio"]:focus-visible + label,
.form-radio input[type="checkbox"]:focus-visible + label em {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.privacy-container .form-radio input:focus-visible + label {
  outline: none;
}
/* -- Skip Nav -- */
.nav-skip-wrap {
  position: relative;
}
.nav-skip {
  position: fixed;
  top: -500px;
  left: 30px;
  padding: 1rem;
  z-index: 10000;
}
.nav-skip:focus-within {
  top: 0;
}
.nav-skip a {
  padding: 1rem;
  display: block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  margin-bottom: 1em;
}
.nav-skip a:hover,
.nav-skip a:focus {
  color: var(--color-blue);
}
.nav-skip a:last-child {
  margin-bottom: 0;
}
body:has(.cookie-bar[style*="display: none"]) a.focus-cookiebar {
  display: none;
}
@media (hover: hover), (pointer: fine) {
  body.focus-within {
    /* display: flex;
        flex-direction: column; */
    /*   .cookie-bar{ order: 0}
        .container { order: 1; min-height: auto}*/
  }
  body.focus-within .header,
  body.focus-within .cookie-bar {
    position: relative;
  }
  body.focus-within .row-tabs nav.tabs,
  body.focus-within .accordion details summary {
    position: static;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media (prefers-color-scheme: dark), (prefers-contrast: more) {
  /* Dark Mode styles go here */
}
@media (prefers-contrast: more), (forced-colors: active) {
  :root {
    --color-grey: #555;
    --color-blue: #005274;
    --color-midgrey: #575757;
    --color-orange: #bf5200;
    --color-darkgrey: #444;
    --input-border: 1px solid #333;
    --input-bg: rgba(149, 157, 169, 0.1);
    --input-placeholder-color: #222;
    --fui-check-label-border: 1px solid #333;
    --fui-error: #AD0000;
    --fui-submit-btn-bg-color: #AD0000;
    --fui-error-color: #AD0000;
    --fui-required-color: #AD0000;
    --fui-submit-btn-border: 1px solid #AD0000;
  }
  .row-teaser figure {
    background: #000;
  }
  .breadcrumb a {
    color: black;
  }
  .row-overview,
  body.has-gradient .container,
  #mainContent > .row-swiper:first-child {
    background-image: linear-gradient(0deg, rgba(0, 82, 116, 0) 0%, #005274 90%), url(../gfx/overview-bg.png);
  }
  nav.optmenu ul li button:hover,
  nav.optmenu ul li button:focus,
  nav.topmenu ul li a:hover,
  nav.topmenu ul li a:focus,
  .row-filter .btn.btn-blank:hover,
  .row-filter .btn.btn-blank:focus {
    background: rgba(0, 0, 0, 0.5);
  }
  .row-text-image .col-img .desc-wrap article {
    color: #fff;
  }
  #mainmenu > ul li.has-sub.open > a {
    background: rgba(0, 0, 0, 0.8);
  }
  .row-wizard .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-swiper .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-related .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-gallery .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag {
    background: #000;
  }
  .fui-radio label::before {
    border: 1px solid #949494;
  }
  .form-radio label em {
    border-color: #949494;
  }
}
@media (prefers-reduced-transparency) {
  #mainmenu {
    background: #fff;
  }
}

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