@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: 'Degular', sans-serif;
  --headline-font-weight: 700;
  --headline-line-height: 125%;
  --headline-margin: 0 0 50px 0;
  --headline-1-size: 4.5rem;
  --headline-1-clamp-size: clamp(2.5rem, 1.003rem + 3.14vw, 4.5rem);
  --headline-2-size: 2.5rem;
  --headline-2-clamp-size: clamp(1.8rem, 1.1vw + 1.3rem, 2.2rem);
  --headline-3-size: 2.5rem;
  --headline-3-clamp-size: clamp(1.5rem, 1.4vw + 0.9rem, 2.5rem);
  --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;
  --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;
}
a[href^="tel"] {
  color: inherit !important;
  /* Inherit text color of parent element. */
  text-decoration: none;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
.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
*
*/
/* dm-sans-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: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-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: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-800 - 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: 'DM Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/dm-sans-v17-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Degular';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Degular-Bold.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Degular';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Degular-Black.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-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;
}
.row h2 {
  position: relative;
  font-size: 3.5rem;
  line-height: 114.286%;
  font-weight: bold;
  letter-spacing: -1.5px;
  color: var(--brand-color-1);
}
.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-filled {
  background: var(--brand-color-5);
  margin-bottom: 45px;
}
.row.is-filled .content-width {
  padding-top: 75px;
  padding-bottom: 75px;
}
.row:last-child {
  margin-bottom: 0;
}
.row-error .content-width {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row-error .content-width article {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
}
.row-error .content-width p {
  color: #667085;
}
.row-error .content-width .large-txt {
  font-size: 13.5rem;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 40px;
  color: var(--brand-color-1);
  font-family: var(--headline-font);
}
/* 
*
*   SECONDRED Boilerplate
*   Header
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Logo Style - */
  --logo-width: 286px;
  --logo-height: 162px;
  --logo-bg: transparent;
  --logo-shadow: none;
  --logo-align: none;
  --logo-small-width: 188px;
  --logo-small-height: 40px;
  /* - Header Style  - */
  --header-shadow: none;
  --header-height: 311px;
  --header-small-height: 75px;
  --header-color: transparent;
  --header-position: fixed;
  --header-top-pos: 0;
  --header-padding: 0 30px;
}
header.header {
  position: var(--header-position);
  box-shadow: var(--header-shadow);
  background: var(--header-color);
  background: var(--brand-color-1) url(../gfx/hero-bg.png) no-repeat center 0;
  background-size: cover;
  background-attachment: fixed;
  top: var(--header-top-pos);
  z-index: 777;
  color: #fff;
  padding: var(--header-padding);
  width: 100dvw;
}
header.header .content-width {
  height: var(--header-height);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
}
@media only screen and (max-width: 960px) {
  header.header .content-width {
    height: 175px;
  }
}
@supports (-webkit-touch-callout: none) {
  header.header {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    background-size: 0px !important;
  }
  header.header:before {
    background-image: inherit !important;
    background-repeat: inherit !important;
    background-size: cover;
    background-position: inherit;
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1 !important;
    will-change: transform;
    pointer-events: none;
  }
  header.header:has(#mainmenu.open) {
    -webkit-clip-path: unset;
    clip-path: unset;
  }
}
.logo {
  float: var(--logo-align);
  margin-bottom: -42px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 60px;
}
.logo a {
  display: grid;
  justify-content: center;
  align-content: space-between;
  background: var(--logo-bg);
}
.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 {
    top: 36px;
  }
  .logo a img {
    height: auto !important;
    width: 166px;
    height: 94px;
  }
}
#mainContent:not(:has(.row-teaser)) {
  padding-top: 311px;
}
@media only screen and (max-width: 960px) {
  #mainContent:not(:has(.row-teaser)) {
    padding-top: 175px;
  }
}
/* -- Fixed Header -- */
@media only screen and (min-width: 961px) {
  @keyframes scale-header {
    to {
      height: 125px;
      padding-top: 0;
    }
  }
  @keyframes scale-maincontent {
    to {
      padding-top: 125px;
    }
  }
  @keyframes scale-logo {
    to {
      width: 106px;
      height: 60px;
    }
  }
  @keyframes pos-logo {
    to {
      top: 30px;
    }
  }
  @supports (animation-timeline: scroll()) {
    .logo {
      animation: pos-logo linear both;
    }
    .logo img {
      animation: scale-logo linear both;
    }
    header.header .content-width {
      animation: scale-header linear both;
    }
    header.header .content-width,
    .logo,
    .logo img,
    #mainContent:not(:has(.row-teaser)) {
      animation-timeline: scroll();
      animation-range: 0 150px;
    }
  }
  @supports not (animation-timeline: scroll()) {
    header.header .content-width {
      height: 125px;
      padding-top: 0;
    }
    .logo {
      top: 30px;
    }
    .logo img {
      width: 106px;
      height: 60px;
    }
    #mainContent:not(:has(.row-teaser)) {
      padding-top: 125px;
    }
  }
}
@media only screen and (max-width: 960px) {
  @keyframes scale-header {
    to {
      height: 95px;
      padding-top: 0;
    }
  }
  @keyframes scale-maincontent {
    to {
      padding-top: 95px;
    }
  }
  @keyframes scale-logo {
    to {
      width: 71px;
      height: 40px;
    }
  }
  @keyframes pos-menu {
    to {
      top: 95px;
    }
  }
  @keyframes pos-logo {
    to {
      top: 30px;
    }
  }
  @keyframes pos-hamburger {
    to {
      top: 30px;
    }
  }
  @supports (animation-timeline: scroll()) {
    .logo {
      animation: pos-logo linear both;
    }
    .hamburger {
      animation: pos-hamburger linear both;
    }
    .logo img {
      animation: scale-logo linear both;
    }
    header.header .content-width {
      animation: scale-header linear both;
    }
    #mainmenu {
      animation: pos-menu linear both;
    }
    header.header .content-width,
    .logo,
    .logo img,
    .hamburger,
    #mainmenu,
    #mainContent:not(:has(.row-teaser)) {
      animation-timeline: scroll();
      animation-range: 0 150px;
    }
  }
  @supports not (animation-timeline: scroll()) {
    header.header .content-width {
      height: 95px;
      padding-top: 0;
    }
    .logo {
      top: 30px;
    }
    .logo img {
      width: 71px;
      height: 40px;
    }
    .hamburger {
      top: 30px;
    }
    #mainmenu {
      top: 95px;
    }
    #mainContent:not(:has(.row-teaser)) {
      padding-top: 95px;
    }
  }
}
@-moz-document url-prefix() {
  :root {
    --scroll-progress: 0;
  }
  /* HEADER */
  header.header .content-width {
    height: var(--header-height-start);
  }
  .logo {
    top: var(--logo-top);
  }
  /* LOGO */
  .logo img {
    width: var(--logo-width-start) !important;
    height: var(--logo-height-start) !important;
  }
  .hamburger {
    top: var(--hamburger-top) !important;
  }
  #mainmenu {
    top: var(--menu-top) !important;
  }
  /* MAIN */
  #mainContent {
    padding-top: var(--main-padding-start);
  }
}
/*
*
*   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;
    right: 0;
    top: 64px;
  }
}
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(--brand-color-6);
  color: #fff;
}
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: 1.125rem;
  margin-left: 50%;
}
#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: #fff;
  display: block;
  text-decoration: none;
}
#mainmenu ul li a:hover,
#mainmenu ul li a:focus {
  color: var(--brand-color-2);
}
#mainmenu ul li a::before {
  display: none;
}
#mainmenu ul li a.active {
  text-shadow: 1px 0 0 #fff;
}
#mainmenu ul li a.active:hover,
#mainmenu ul li a.active:focus {
  text-shadow: 1px 0 0 var(--brand-color-2);
}
#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 (max-width: 960px) {
  #mainmenu {
    display: none;
    font-size: 1.5rem;
    position: absolute;
    left: -30px;
    width: 100vw;
    flex-direction: column;
    background: var(--brand-color-1) url(../gfx/hero-bg.png) no-repeat center 0;
    background-size: cover;
    background-attachment: fixed;
    top: 175px;
    padding: 0 30px 95px;
    margin-left: 0;
  }
  #mainmenu ul {
    flex-direction: column;
  }
  #mainmenu ul li a {
    color: #fff;
    text-align: center;
    gap: 20px;
  }
  #mainmenu ul li a:hover {
    color: var(--brand-color-2);
  }
  #mainmenu ul.mobi-langmenu {
    display: flex;
    margin-top: 30px;
  }
  #mainmenu.open {
    display: flex;
    flex-direction: column;
  }
  @supports (-webkit-touch-callout: none) {
    #mainmenu {
      background-attachment: initial !important;
      background-size: 200vw 100dvh;
      background: none;
    }
  }
}
/* -- Footermenü -- */
.footermenu ul {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footermenu ul li a {
  text-decoration: none;
  color: #fff;
}
.footermenu ul li a:hover {
  color: #000;
}
@media only screen and (max-width: 960px) {
  .footermenu {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footermenu {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
/*
*
*   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: #fff;
  font-size: 1rem;
  position: relative;
}
footer .grid {
  margin-bottom: 0;
}
footer .grid .col {
  margin-bottom: 0;
}
footer .grid .col:has(.copy) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 35px;
}
footer .grid .col:has(figure) {
  text-align: center;
}
footer .grid .col:has(figure) figure img {
  height: auto !important;
}
footer .grid .col:has(figure) figure figcaption {
  padding-bottom: 10px;
}
footer .content-width {
  padding: 55px 0 60px;
}
@media only screen and (max-width: 960px) {
  footer .content-width {
    padding: 55px 16px 60px;
  }
  footer .grid .col {
    width: 33.333333%;
  }
  footer .grid .col:nth-child(1) {
    order: 1;
  }
  footer .grid .col:nth-child(2) {
    order: 2;
  }
  footer .grid .col:nth-child(3) {
    order: 4;
    width: 100%;
    padding-top: 20px;
  }
  footer .grid .col:nth-child(4) {
    order: 3;
  }
}
@media only screen and (max-width: 768px) {
  footer .content-width {
    font-size: 0.83333333rem;
  }
}
/*
*
*   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: #fff;
  --input-border: 1px solid #D0D0D0;
  --input-border-radius: 30px;
  --input-padding: 0 16px;
  --input-height: 57px;
  --textarea-padding: 10px;
  --textarea-minheight: 150px;
  --input-placeholder-color: #ACACAC;
  --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);
}
/*
*
*   SECONDRED Boilerplate
*   Form.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --fui-input-font-size: var(--input-fontsize);
  --fui-input-padding: 0 20px;
  --fui-input-background-color: var(--input-bg);
  --fui-input-border: var(--input-border);
  --fui-input-border-radius: var(--input-border-radius);
  --fui-input-placeholder-color: var(--input-placeholder-color);
  --fui-input-width: 100%;
  --fui-check-font-size: 16px;
  --fui-check-label-padding-left: 80px;
  --fui-check-label-top: 5px;
  --fui-check-label-width: 60px;
  --fui-check-label-height: 60px;
  --fui-check-label-border: 2px solid #D9D9D9;
  --fui-check-label-bg-color: #fff;
  --fui-field-gutter: 50px;
  --fui-row-gutter: 10px;
  --fui-column-gutter: 20px;
  --fui-btn-container-padding: 20px 0 0 0;
  --fui-btn-container-margin: 0 0;
  --fui-btn-margin: 0 --fui-submit-btn-color: #fff;
  --fui-submit-btn-bg-color: red;
  --fui-submit-btn-border: 1px solid red;
  --fui-error-color: #F00;
  --fui-required-color: #F00;
  --fui-error: #F00;
}
/* -- Defaults -- */
.fui-hidden {
  display: none;
}
.fui-sr-only {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
[data-fui-page-hidden] {
  display: none;
}
.fui-row:not(.fui-row-empty):not(:last-child) {
  margin-bottom: 0;
}
/* -- Alert -- */
:root {
  --fui-alert-padding: 20px;
  --fui-alert-border-radius: 0;
  --fui-alert-line-height: 120%;
  --fui-alert-font-size: 1rem;
  --fui-alert-font-weight: 500;
  --fui-alert-margin-bottom: 1rem;
  --fui-alert-error-bg-color: #F00;
  --fui-alert-error-color: #fff;
  --fui-alert-success-bg-color: #008000;
  --fui-alert-success-color: #fff;
}
.fui-alert {
  padding: var(--fui-alert-padding);
  border-radius: var(--fui-alert-border-radius);
  line-height: var(--fui-alert-line-height);
  font-size: var(--fui-alert-font-size);
  font-weight: var(--fui-alert-font-weight);
  margin-bottom: var(--fui-alert-margin-bottom);
  margin: 0 0 50px;
}
.fui-alert-error {
  background-color: var(--fui-alert-error-bg-color);
  color: var(--fui-alert-error-color);
}
.fui-alert-success {
  background-color: var(--fui-alert-success-bg-color);
  color: var(--fui-alert-success-color);
}
.fui-alert-error.fui-alert-bottom-form {
  margin-top: 1rem;
  margin-bottom: 0;
}
.text + .fui-i {
  margin-top: 40px;
}
/* -- Form Outer -- */
.fui-row {
  display: flex;
}
.fui-row h2 {
  margin-left: 0;
}
@media only screen and (max-width: 820px) {
  .fui-row {
    flex-direction: column;
    gap: 0;
  }
}
.fui-row h3 {
  margin-bottom: 0;
  padding-top: 30px;
}
.fui-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.fui-legend {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.fui-instructions p {
  margin-bottom: 0;
}
/* -- Formular Elemente  -- */
.fui-label,
.fui-legend {
  font-weight: normal;
}
.fui-label {
  font-family: var(--headline-font);
  font-size: 1.25rem;
  padding: 0 20px;
  margin-bottom: 10px;
  display: block;
}
.fui-field {
  flex: 1;
}
.fui-field:not(.fui-type-hidden-field) {
  margin-bottom: var(--fui-column-gutter);
}
.fui-field:not(.fui-type-hidden-field) .fui-field:not(.fui-type-hidden-field) {
  margin-bottom: 0;
}
.fui-layout-horizontal .fui-layout-wrap {
  display: flex;
}
.fui-submit,
.fui-save {
  order: 10;
}
.fui-label-left-input .fui-field-container,
.fui-label-right-input .fui-field-container {
  display: flex;
  align-items: baseline;
}
.fui-label-left-input .fui-input-container,
.fui-label-right-input .fui-input-container {
  flex: 1;
}
.fui-label-below-input > .fui-field-container > .fui-input-container > .fui-fieldset > .fui-legend {
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
.fui-input,
.fui-select {
  font-size: var(--fui-input-font-size);
  line-height: var(--fui-input-line-height);
  border-radius: var(--fui-input-border-radius);
  background-color: #fff;
  background-color: var(--fui-input-background-color);
  border: var(--fui-input-border);
  padding: var(--fui-input-padding);
  width: 100%;
  height: var(--input-height);
  color: #000;
}
textarea.fui-input {
  min-height: 150px;
  padding: 15px 20px;
  display: block;
}
input::-webkit-date-and-time-value {
  text-align: left !important;
}
@media (hover: none) {
  input[type="date"] {
    -webkit-appearance: none;
  }
  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
}
.fui-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../gfx/select-arrow.svg);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.fui-input::-moz-placeholder,
.fui-select::-moz-placeholder {
  color: var(--fui-input-placeholder-color);
  font-size: 0.75rem;
  position: relative;
  top: -1px;
}
.fui-input:focus::-moz-placeholder,
.fui-select:focus::-moz-placeholder {
  opacity: 0;
}
.fui-input::placeholder,
.fui-select::placeholder {
  color: var(--fui-input-placeholder-color);
  font-size: 0.75rem;
  position: relative;
  top: -1px;
}
.fui-input:focus::placeholder,
.fui-select:focus::placeholder {
  opacity: 0;
}
.fui-input[type="file"],
.fui-select[type="file"] {
  height: auto;
  font-size: 1rem;
}
.fui-input[type="color"],
.fui-select[type="color"] {
  height: 39px;
  padding: 0.1rem;
}
.fui-type-dropdown.fui-group-anzeigenformat .fui-label {
  width: 25%;
  width: calc(25% - 10px);
}
@media only screen and (max-width: 768px) {
  .fui-type-dropdown.fui-group-anzeigenformat .fui-label {
    width: 100%;
  }
}
[data-conditionally-hidden="true"] {
  display: none;
}
.formie-hcaptcha-placeholder,
.formie-recaptcha-placeholder {
  margin-left: 25%;
  margin-left: calc(25% - 10px);
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .formie-hcaptcha-placeholder,
  .formie-recaptcha-placeholder {
    margin-left: 0;
  }
}
.fui-heading-h6 {
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .fui-heading-h6 {
    padding-left: 20px;
  }
}
/* -- Radio Checkbox -- */
.fui-layout-vertical .fui-legend {
  /*padding-left: 60px;
		@media only screen and (max-width: 768px) {
			padding-left: 20px;
		} */
}
.fui-layout-vertical .fui-checkbox,
.fui-layout-vertical .fui-radio {
  /*margin-left: 25%; margin-left: calc(25% - 10px); */
}
@media only screen and (max-width: 768px) {
  .fui-layout-vertical .fui-checkbox,
  .fui-layout-vertical .fui-radio {
    margin-left: 0;
  }
}
.fui-layout-vertical .fui-checkbox + .fui-checkbox,
.fui-layout-vertical .fui-radio + .fui-radio {
  margin-top: 20px;
}
.fui-checkbox input,
.fui-radio input {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
/*
.fui-checkbox input:focus + label::before,
.fui-radio input:focus + label::before {
  border-color: #a4cafe;
  border-color: var(--fui-check-border-color-focus, var(--fui-focus-border-color));
  box-shadow: 0 0 0 3px rgba(164, 202, 254, 0.45);
  box-shadow: var(--fui-check-box-shadow-focus, var(--fui-focus-shadow));
}
.fui-checkbox input:checked + label::before,
.fui-radio input:checked + label::before {
  background-color: #516fea;
  background-color: var(--fui-check-bg-color-checked, var(--fui-primary-color));
  border-color: #516fea;
  border-color: var(--fui-check-border-color-checked, var(--fui-primary-color));
}
.fui-checkbox input:active + label::before,
.fui-radio input:active + label::before {
  background-color: #f0f1f4;
  background-color: var(--fui-check-bg-color);
}
*/
.fui-checkbox label,
.fui-radio label {
  position: relative;
  font-size: var(--fui-check-font-size);
  padding-left: var(--fui-check-label-padding-left);
  line-height: 1.5rem;
}
.fui-checkbox label::before,
.fui-radio label::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: var(--fui-check-label-width);
  height: var(--fui-check-label-height);
  content: "";
  cursor: pointer;
  border: var(--fui-check-label-border);
  background-color: var(--fui-check-label-bg-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--fui-check-label-transition);
}
.fui-radio label {
  padding-left: 60px;
  line-height: 1.5rem;
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 36px;
}
@media only screen and (max-width: 960px) {
  .fui-radio label {
    display: inline-block;
  }
}
.fui-radio label::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 36px;
  height: 36px;
  content: "";
  cursor: pointer;
  border: 2px solid var(--fui-input-background-color);
  background: var(--fui-input-background-color);
  border: 1px solid #d0d0d0;
  background-image: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--fui-check-label-transition);
}
.fui-radio label:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 13px;
  top: 50%;
  margin-top: -5px;
  background: var(--brand-color-2);
  z-index: 3;
  border-radius: 50%;
  display: block;
  opacity: 0;
}
.fui-checkbox label {
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-left: 55px;
  min-height: 36px;
  align-items: center;
  font-family: var(--headline-font);
  font-size: 1rem;
}
.fui-checkbox label a {
  margin: 0 3px;
}
@media only screen and (max-width: 960px) {
  .fui-checkbox label {
    display: inline-block;
  }
}
.fui-checkbox label::before {
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  display: grid;
  justify-content: center;
  align-content: center;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  z-index: 2;
  content: "\e900";
  z-index: 3;
  background: transparent;
  color: var(--brand-color-2);
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}
.fui-checkbox label::after {
  width: 36px;
  height: 36px;
  border: 1px solid #d0d0d0;
  background: var(--fui-input-background-color);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  content: "";
}
.fui-checkbox input:checked + label::before {
  opacity: 1;
}
.fui-radio label::before {
  border-radius: 50%;
}
.fui-radio input:checked + label::after {
  opacity: 1;
}
.fui-type-radio-buttons legend,
.fui-type-checkboxes legend {
  font-weight: 700;
  padding-top: 25px;
}
/* -- Submit Button -- */
.fui-btn-wrapper,
.fui-btn-container {
  display: flex;
  justify-content: flex-start;
}
.fui-btn-wrapper.fui-btn-right,
.fui-btn-container.fui-btn-right {
  justify-content: flex-end;
}
.fui-btn-wrapper.fui-btn-center,
.fui-btn-wrapper.fui-btn-center-save-right,
.fui-btn-wrapper.fui-btn-center-save-left,
.fui-btn-container.fui-btn-center,
.fui-btn-container.fui-btn-center-save-right,
.fui-btn-container.fui-btn-center-save-left {
  justify-content: center;
}
.fui-btn-wrapper.fui-btn-left-right,
.fui-btn-wrapper.fui-btn-save-right,
.fui-btn-wrapper.fui-btn-save-left,
.fui-btn-container.fui-btn-left-right,
.fui-btn-container.fui-btn-save-right,
.fui-btn-container.fui-btn-save-left {
  justify-content: space-between;
}
.fui-btn-wrapper.fui-btn-right-save-left,
.fui-btn-container.fui-btn-right-save-left {
  justify-content: flex-start;
}
.fui-btn-wrapper.fui-btn-save-left,
.fui-btn-wrapper.fui-btn-right-save-left,
.fui-btn-wrapper.fui-btn-center-save-left,
.fui-btn-container.fui-btn-save-left,
.fui-btn-container.fui-btn-right-save-left,
.fui-btn-container.fui-btn-center-save-left {
  flex-direction: row-reverse;
}
.fui-btn-wrapper .fui-btn[data-conditionally-hidden],
.fui-btn-container .fui-btn[data-conditionally-hidden] {
  display: none;
}
.fui-btn-wrapper {
  padding: var(--fui-btn-container-padding);
  margin: var(--fui-btn-container-margin);
}
.fui-btn-wrapper,
.fui-btn-container {
  display: flex;
  justify-content: flex-start;
}
.fui-submit {
  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: 10px;
  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);
}
.fui-submit:hover,
.fui-submit:focus {
  text-decoration: none;
  border-color: var(--brand-color-3);
  background: var(--brand-color-3);
}
.fui-submit::before {
  content: "\e907";
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fui-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.fui-btn.disabled,
.fui-btn:disabled {
  opacity: 0.65;
  opacity: var(--fui-btn-opacity-disabled);
  pointer-events: none;
}
/* -- Preloader -- */
:root {
  --fui-loading-min-height: 1rem;
  --fui-loading-height: 1rem;
  --fui-loading-width: 1rem;
}
.fui-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
  min-height: var(--fui-loading-min-height);
}
.fui-loading::after {
  position: absolute;
  display: block;
  height: var(--fui-loading-height);
  width: var(--fui-loading-width);
  margin-top: -0.5rem;
  margin-top: var(--fui-loading-margin-top);
  margin-left: -0.5rem;
  margin-left: var(--fui-loading-margin-left);
  border-width: 2px;
  border-width: var(--fui-loading-border-width);
  border-style: solid;
  border-radius: 9999px;
  border-color: #516fea;
  border-color: var(--fui-loading-border-color, var(--fui-primary-color));
  -webkit-animation: loading 0.5s infinite linear;
  animation: loading 0.5s infinite linear;
  -webkit-animation: var(--fui-loading-animation);
  animation: var(--fui-loading-animation);
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  left: 50%;
  left: var(--fui-loading-left);
  top: calc(50% - 1px);
  top: var(--fui-loading-top);
  z-index: 1;
  z-index: var(--fui-loading-z-index);
}
@-webkit-keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -- Tabs -- */
:root {
  --fui-tabs-margin-bottom: 1rem;
  --fui-tabs-font-size: 0.875rem;
  --fui-tabs-border-bottom: 1px solid #D1D5DB;
  --fui-tab-color: #6B7280;
  --fui-tab-padding: 0.5rem 1rem;
  --fui-tab-margin-bottom: -1px;
  --fui-tab-border: 1px solid transparent;
  --fui-tab-active-color: #374151;
  --fui-tab-active-bg-color: #fff;
  --fui-tab-active-border-color: #D1D5DB;
}
.fui-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--fui-tabs-margin-bottom);
  font-size: var(--fui-tabs-font-size);
  border-bottom: var(--fui-tabs-border-bottom);
}
.fui-tab {
  color: var(--fui-tab-color);
  padding: var(--fui-tab-padding);
  margin-bottom: var(--fui-tab-margin-bottom);
  border: var(--fui-tab-border);
}
.fui-tab a {
  color: inherit;
  text-decoration: none;
}
.fui-tab[data-conditionally-hidden] {
  display: none;
}
.fui-tab-active {
  font-weight: 500;
  color: var(--fui-tab-active-color);
  background-color: var(--fui-tab-active-bg-color);
  border-color: var(--fui-tab-active-border-color);
  border-bottom-color: transparent;
  border-bottom-color: var(--fui-tab-active-border-bottom-color);
  border-radius: 0.25rem 0.25rem 0 0;
  border-radius: var(--fui-tab-active-border-radius, var(--fui-border-radius) var(--fui-border-radius) 0 0);
}
.fui-tab-error {
  color: #f56565;
  color: var(--fui-tab-error-color, var(--fui-error));
}
/* -- Fehlermeldung -- */
.fui-error-message {
  color: #fff;
}
.fui-required {
  color: var(--fui-required-color, var(--fui-error));
}
.fui-error {
  position: relative;
}
.fui-error .fui-input,
.fui-error .fui-checkbox label::after,
.fui-error .fui-select {
  border-color: #F00;
}
.fui-error .fui-error-message {
  font-size: 0.875rem;
  padding-top: 10px;
  z-index: 2;
  line-height: 130%;
  color: #F00;
}
.fui-instructions {
  margin-bottom: 25px;
  padding: 0 20px;
}
.fui-layout-wrap:has(.fui-checkbox) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fui-field-rows:has(.fui-row) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fui-type-file-upload .fui-input-wrapper input {
  padding: 40px;
  color: var(--text-color);
  outline: 1px dashed var(--color-lightgreen);
  outline-offset: -19px;
}
.fui-type-file-upload .fui-input-wrapper input::-webkit-file-selector-button,
.fui-type-file-upload .fui-input-wrapper input::file-selector-button {
  color: #fff;
  padding: 10px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--color-green) linear-gradient(90deg, #008847 -0.91%, #106550 100%);
  margin-right: 20px;
}
/*
  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-3);
  background: var(--brand-color-3);
  color: #fff;
}
.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-white {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.btn.is-white:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
.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
*
*/
article {
  color: var(--brand-color-6);
}
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(--brand-color-3);
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}
article h1,
article h2 {
  color: var(--brand-color-1);
}
article h1,
article h2,
article h3 {
  font-weight: 700;
}
article a {
  word-break: break-all;
}
article p + h3,
article p + h4,
article p + h5 {
  margin-top: 40px;
}
article a:not([class]) {
  color: var(--brand-color-4);
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-headline {
  padding-bottom: 0;
  padding-top: 110px;
}
.row-headline h1 {
  font-weight: 700;
  margin-bottom: 0;
  color: var(--brand-color-1);
}
@media only screen and (max-width: 563px) {
  .row-headline {
    padding-bottom: 0;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-form .content-width {
  padding-top: 80px;
  padding-bottom: 178px;
}
.row-form article {
  margin-bottom: 50px;
  font-weight: 700;
}
.row-form article small {
  font-weight: normal;
}
.row-form .contact-info {
  color: var(--brand-color-6);
  padding-bottom: 50px;
}
.row-form address {
  margin-bottom: 30px;
}
.row-form .fui-i {
  background: var(--brand-color-5);
  border-radius: 5px;
  padding: 30px;
}
.row-form .grid {
  margin: 0 -45px;
}
.row-form .grid .col {
  padding: 0 45px;
}
/*
*
*   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(--brand-color-1);
  padding: 0 30px;
  color: #fff;
}
.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(--brand-color-2);
}
.cookie-bar .cookie-options a.btn-config.filled:hover {
  background: var(--brand-color-2);
}
.cookie-bar .cookie-options a.btn-accept.filled {
  background: var(--brand-color-2);
  border-color: var(--brand-color-2);
}
.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%;
  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 * {
  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(--brand-color-2);
}
.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 {
  background: var(--brand-color-1) url(../gfx/hero-bg.png) no-repeat center 0;
  background-size: cover;
  background-attachment: fixed;
}
.row-teaser .content-width {
  padding: 311px 0 100px;
  height: calc(100dvh - 50px);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.row-teaser .content-width .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}
@media only screen and (max-width: 763px) {
  .row-teaser .content-width {
    padding: 335px 0 50px;
  }
  .row-teaser .content-width .scroll-down {
    bottom: -20px;
  }
}
.row-teaser h1 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  hyphens: auto;
  font-size: var(--headline-1-size);
  font-size: var(--headline-1-clamp-size);
  line-height: 4.25rem;
  line-height: clamp(3rem, 1.203rem + 3.77vw, 4.25rem);
  letter-spacing: -1.44px;
}
.row-teaser h1 strong {
  color: var(--brand-color-2);
  font-weight: 700;
}
@media only screen and (max-width: 567px) {
  .row-teaser h1 {
    font-size: 2rem;
    line-height: 100%;
  }
}
@supports (-webkit-touch-callout: none) {
  .row-teaser {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    background-size: 0px !important;
  }
  .row-teaser:before {
    background-image: inherit !important;
    background-repeat: inherit !important;
    background-size: cover;
    background-position: inherit;
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1 !important;
    will-change: transform;
    pointer-events: none;
  }
  .row-teaser:has(#mainmenu.open) {
    -webkit-clip-path: unset;
    clip-path: unset;
  }
}
/*
*
*   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;
  padding-bottom: 130px;
}
.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.5px;
  font-size: 3.5rem;
}
.row-text .content-width article strong {
  font-weight: 700;
}
@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;
    padding-bottom: 65px;
  }
  .row-text .content-width article {
    width: auto;
  }
  .row-text .content-width article h1,
  .row-text .content-width article h2 {
    font-size: 7vw;
  }
}
@media only screen and (min-width: 961px) {
  .row-text.has-bg {
    background: #fff url(../gfx/text-bg.png) no-repeat center;
  }
}
.row-headline + .row-text .content-width {
  padding-top: 35px;
}
.row-herotext {
  background: var(--brand-color-1) url(../gfx/hero-bg.png) no-repeat center top;
  background-size: cover;
  margin-bottom: 150px;
}
.row-herotext .content-width {
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}
.row-herotext .content-width h2,
.row-herotext .content-width h3 {
  color: #fff;
}
.row-herotext .content-width article {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
.row-herotext .btn:hover,
.row-herotext .btn:focus {
  text-decoration: none;
  border-color: #fff;
  background: #fff;
  color: #000;
}
.row-herotext .btn.is-white:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
@media only screen and (max-width: 960px) {
  .row-herotext {
    margin-bottom: 70px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-text-image {
  padding-bottom: 130px;
}
.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);
}
@media only screen and (max-width: 960px) {
  .row-text-image h3 {
    font-size: 2.125rem;
    line-height: 2.25rem;
  }
}
.row-text-image figure {
  margin-bottom: 50px;
}
.row-text-image figure img {
  display: block;
  border-radius: 5px;
  image-rendering: crisp-edges;
}
.row-text-image article {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 155.556%;
  color: #667085;
}
.row-text-image article h3 {
  color: #000;
}
.row-text-image article .btn-wrap {
  margin-top: 60px;
}
.row-text-image:not(.is-half) .article-content + figure {
  margin-top: 60px;
}
@media only screen and (min-width: 961px) {
  .row-text-image.is-half article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: min-content auto;
    gap: 37px;
  }
  .row-text-image.is-half article > h2 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .row-text-image.is-half article figure {
    grid-area: 2 / 2 / 3 / 3;
  }
  .row-text-image.is-half article .article-content {
    grid-area: 2 / 1 / 3 / 2;
  }
  .row-text-image.is-half article:has(figure:last-child) figure {
    grid-area: 2 / 1 / 3 / 2;
  }
  .row-text-image.is-half article:has(figure:last-child) .article-content {
    grid-area: 2 / 2 / 3 / 3;
  }
}
@media only screen and (max-width: 960px) {
  .row-text-image.is-half article:has(figure:last-child) {
    display: flex;
    flex-direction: column;
  }
  .row-text-image.is-half article:has(figure:last-child) > h2 {
    order: 0;
  }
  .row-text-image.is-half article:has(figure:last-child) figure {
    order: 1;
  }
  .row-text-image.is-half article:has(figure:last-child) .article-content {
    order: 2;
  }
}
.row-text-image.is-filled {
  padding-bottom: 0;
}
@media only screen and (min-width: 961px) {
  .row-text-image.has-bg {
    background: #fff url(../gfx/text-bg.png) no-repeat center;
  }
}
@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;
  }
}
@media only screen and (max-width: 960px) {
  .row-text-image {
    padding-top: 30px;
    padding-bottom: 65px;
  }
  .row-text-image.is-filled {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.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
*
*/
.row-quote .content-width {
  padding: 120px 0;
}
.row-quote blockquote {
  text-align: center;
  color: var(--brand-color-3);
  font-family: var(--headline-font);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 114.286%;
  letter-spacing: -2%;
}
@media only screen and (max-width: 1366px) {
  .row-quote blockquote {
    font-size: 4.2vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-quote {
    padding: 0 16px;
  }
  .row-quote .content-width {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .row-quote blockquote {
    font-size: 1.875rem;
  }
}
/*
*
*   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 {
  --brand-color-1: #344054;
  --brand-color-2: #C5D76A;
  --brand-color-3: #009DB0;
  --brand-color-4: #000;
  --brand-color-5: #F5F5F5;
  --brand-color-6: #667085;
  --color-grey: #B2B2B2;
  --color-darkgrey: #8E8E8E;
  --color-lightgrey: #E6E6E6;
}
.hidden {
  display: none !important;
}
.scroll-anchor,
.anchor {
  scroll-margin-top: 150px;
  /*height: 100px; margin-bottom: -100px; */
}
@media only screen and (max-width: 960px) {
  .scroll-anchor,
  .anchor {
    scroll-margin-top: 120px;
  }
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: #fff;
}
.container main {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.marken-grid {
  margin-bottom: 50px;
}
.marken-grid button.mobi-icon {
  color: #fff;
  border: 0;
  cursor: pointer;
  background: transparent;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 1.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .marken-grid button.mobi-icon {
    display: none;
  }
}
.marken-grid .col {
  position: relative;
}
.marken-grid figure {
  position: relative;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.marken-grid figure figcaption {
  background: var(--brand-color-3);
  padding: 20px;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 50px);
  opacity: 0;
  width: 300px;
  pointer-events: none;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.marken-grid figure figcaption::before {
  width: 0px;
  height: 0px;
  transform: rotate(360deg);
  border-style: solid;
  border-width: 0 14px 22px 14px;
  border-color: transparent transparent var(--brand-color-3) transparent;
  content: "";
  position: absolute;
  top: -20px;
  right: 46px;
}
.marken-grid figure:hover figcaption,
.marken-grid figure:focus figcaption {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 960px) {
  .marken-grid figure {
    align-items: center;
  }
  .marken-grid figure figcaption::before {
    right: auto;
    left: 50%;
    margin-left: -14px;
  }
}
@media (hover: none) {
  .marken-grid figure {
    margin-bottom: 50px;
  }
}
.marken-grid button:focus + figure figcaption,
.marken-grid button:hover + figure figcaption {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}
/*
*
*   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;
  }
}

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