@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: 'Figtree', sans-serif;
  --font-size: 1.125rem;
  --body-color: #fff;
  --layout-width: 2048px;
  --layout-max-width: 2048px;
  --line-height: 150%;
  --text-color: #000;
  --border-radius: 15px;
  --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: 20px;
  /* - Headline - Typografie  - */
  --headline-font: 'Figtree', sans-serif;
  --headline-font-weight: normal;
  --headline-line-height: 125%;
  --headline-margin: 0 0 50px 0;
  --headline-1-size: 2.813rem;
  --headline-1-clamp-size: clamp(2.188rem, 1.096rem + 2.29vw, 2.813rem);
  --headline-2-size: 1.563rem;
  --headline-2-clamp-size: clamp(1.25rem, 0.704rem + 1.14vw, 1.563rem);
  --headline-3-size: 1.25rem;
  --headline-3-clamp-size: 1.25rem;
  --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;
  --link-color: var(--primary-color);
  --fill-color: #eee;
  --border-color: #eee;
  --colorHighlight: #008BCC;
  --colorSuccess: #6A9618;
  --colorWarning: #F59400;
  --colorAlert: #AD0009;
  --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);
}
/*
*
*   Collider Custom CSS
*   Base Framework
*   Author: Andreas Beck
*
*/
/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
/*
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
*/
/* Preferred box-sizing value */
/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}
/* Removes spacing between cells in tables */
table {
  border-collapse: collapse;
}
/* Revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}
/* -- Reset -- */
* {
  padding: 0;
  margin: 0;
  /* -webkit-tap-highlight-color: transparent; */
}
*:focus {
  outline: none;
}
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html[dir="rtl"] {
  direction: rtl;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  width: 100%;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
input.formText,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  /* -webkit-border-radius: 0;
  border-radius: 0; */
}
select,
input {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
button {
  cursor: pointer;
  overflow: hidden;
  user-select: none;
}
textarea {
  resize: vertical;
  overflow: auto;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
img.responsive {
  width: 100% !important;
  height: auto !important;
}
/* Accessibility */
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/* Correctures */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
table {
  border-collapse: collapse;
}
img {
  border-style: none;
}
iframe {
  border-style: none;
}
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}
/* -- Experimental Features  -- */
html,
body {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  display: inline;
}
/* -- Wiederverwendabr-- */
.fltrt {
  float: right;
}
.fltlft {
  float: left;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/*
*
*   SECONDRED Boilerplate
*   Fonts.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/* figtree-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: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/figtree-v6-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/figtree-v6-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-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: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/figtree-v6-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-500 - 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: 'Figtree';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/figtree-v6-latin-500.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: 'Figtree';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/figtree-v6-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-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: 'Figtree';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/figtree-v6-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* figtree-600italic - 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: 'Figtree';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/figtree-v6-latin-600italic.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-compass:before {
  content: "\e917";
}
.icon-facebook:before {
  content: "\e916";
}
.icon-youtube:before {
  content: "\e913";
}
.icon-instagram:before {
  content: "\e914";
}
.icon-x:before {
  content: "\e915";
}
.icon-checked:before {
  content: "\e911";
}
.icon-quote:before {
  content: "\e912";
}
.icon-linkedin:before {
  content: "\e910";
}
.icon-fax:before {
  content: "\e900";
}
.icon-phone:before {
  content: "\e901";
}
.icon-tooltip:before {
  content: "\e902";
}
.icon-minus-circle:before {
  content: "\e903";
}
.icon-add-circle:before {
  content: "\e904";
}
.icon-chat:before {
  content: "\e905";
}
.icon-forest:before {
  content: "\e906";
}
.icon-work:before {
  content: "\e907";
}
.icon-city:before {
  content: "\e908";
}
.icon-check-rectangle:before {
  content: "\e909";
}
.icon-mail:before {
  content: "\e90a";
}
.icon-download:before {
  content: "\e90b";
}
.icon-search:before {
  content: "\e90c";
}
.icon-arrow-left:before {
  content: "\e90d";
}
.icon-arrow-down:before {
  content: "\e90e";
}
.icon-arrow-up:before {
  content: "\e90f";
}
/*
*
*   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(--primary-color);
}
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-yellow);
}
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);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: inherit;
}
h1 {
  font-size: var(--headline-1-size);
  font-size: var(--headline-1-clamp-size);
}
h2 {
  font-size: var(--headline-2-size);
  font-size: var(--headline-2-clamp-size);
}
h3 {
  font-size: var(--headline-3-size);
  font-size: var(--headline-3-clamp-size);
}
h4 {
  font-size: var(--headline-4-size);
  font-size: var(--headline-4-clamp-size);
}
h5 {
  font-size: var(--headline-5-size);
  font-size: var(--headline-5-clamp-size);
}
h6 {
  font-size: var(--headline-6-size);
  font-size: var(--headline-6-clamp-size);
}
p {
  margin-bottom: var(--default-margin);
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin-bottom: var(--default-margin);
  padding-left: 23px;
}
ul li {
  margin-bottom: 20px;
}
ol {
  margin-bottom: var(--default-margin);
  padding-left: 23px;
}
ol li {
  margin-bottom: 20px;
}
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);
}
/* -- Figure -- */
figure .img {
  overflow: hidden;
}
figure figcaption {
  padding-top: 20px;
}
.node figure figcaption {
  font-size: 12px;
  font-style: italic;
  color: #999;
}
/*
  .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: 50px;
  --grid-gap: 80px;
  --grid-margin: 0 -25px;
  --gridcol-margin: 0 25px;
  --layout-tablet: 760px;
  --layout-responsive: 920px;
  --layout-desktop: 1200px;
}
.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--grid-gap);
}
.grid.center {
  justify-content: center;
}
.grid .col {
  width: calc(100% - var(--grid-gap));
  flex: 0 0 auto;
}
.grid .col-1-1 {
  width: 100%;
}
.grid .col-1-2 {
  width: calc(50% - (var(--grid-gap) / 2));
}
.grid .col-1-3 {
  width: calc(33.33333% - (var(--grid-gap) / 1.5));
}
.grid .col-2-3 {
  width: calc(66.66666% - (var(--grid-gap) / 3));
}
.grid .col-1-4 {
  width: calc(25% - var(--grid-gap) / 1.3333333);
}
.grid .col-3-4 {
  width: calc(75% - var(--grid-gap));
}
.grid .col-1-5 {
  width: calc(20% - var(--grid-gap));
}
.grid .col-2-5 {
  width: calc(40% - var(--grid-gap));
}
.grid .col-3-5 {
  width: calc(60% - var(--grid-gap));
}
.grid .col-4-5 {
  width: calc(80% - var(--grid-gap));
}
.grid[data-use="grid-template"] {
  display: grid;
  margin: 0;
}
.grid[data-use="grid-template"] .col {
  width: auto;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1400px) {
  :root {
    --grid-gap: 60px;
  }
}
@media only screen and (max-width: 1120px) {
  :root {
    --grid-gap: 30px;
  }
}
@media only screen and (max-width: 960px) {
  .grid .col {
    width: 100%;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row {
  font-weight: 300;
  padding: 0;
  padding-top: 180px;
}
.row .content-width {
  padding: 0 120px;
}
@media only screen and (max-width: 1400px) {
  .row {
    padding-top: 90px;
  }
  .row .content-width {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1120px) {
  .row .content-width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 960px) {
  .row .content-width {
    padding: 0 20px;
  }
}
.row h1,
.row h2 {
  font-size: 3.75rem;
  margin-bottom: 0;
  padding-left: 80px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 65px;
}
@media only screen and (min-width: 1366px) and (max-width: 1800px) {
  .row h1,
  .row h2 {
    font-size: 3.333vw;
  }
}
@media only screen and (max-width: 1400px) {
  .row h1,
  .row h2 {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .row h1,
  .row h2 {
    padding-left: 0;
  }
}
@media only screen and (max-width: 763px) {
  .row h1,
  .row h2 {
    font-size: 2.188rem;
    margin-bottom: 35px;
  }
}
.row article h2 {
  margin-left: 0;
}
.row article h2:last-child {
  margin-bottom: 0;
}
.row article p a {
  font-weight: 600;
  text-decoration: underline;
}
.row article p a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}
.row article p em {
  color: var(--color-darkgrey);
}
.row .row-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.row .row-head h1,
.row .row-head h2 {
  margin-bottom: 0;
}
@media only screen and (max-width: 960px) {
  .row .row-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.row.is-projectheader {
  padding-top: 0;
}
.row.is-projectheader .content-width {
  position: relative;
}
.row.is-projectheader .content-width:before {
  content: "";
  position: absolute;
  right: calc(100% - 120px);
  top: 0;
  bottom: 22px;
  height: calc(100% - 8px);
  width: 120px;
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  .row.is-projectheader .content-width:before {
    width: 60px;
    right: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1120px) {
  .row.is-projectheader .content-width:before {
    width: 30px;
    right: calc(100% - 30px);
  }
}
@media only screen and (max-width: 960px) {
  .row.is-projectheader .content-width:before {
    width: 20px;
    right: calc(100% - 20px);
  }
}
main > .row:last-child {
  padding-bottom: 150px;
}
@media only screen and (max-width: 960px) {
  main > .row:last-child:last-child {
    padding-bottom: 100px;
  }
}
.row-external h2 {
  margin-left: 0;
}
.row-external .privacy-container {
  border-radius: 6px;
  background: var(--color-lightgrey);
  padding: 60px;
  font-size: 1rem;
  max-width: 1042px;
  margin: 0 auto;
}
.row-external fieldset {
  margin-bottom: 0;
}
.row-external fieldset label,
.row-external fieldset .form-item {
  margin-bottom: 0;
}
.row-exerpt {
  background-position: left 100px !important;
}
.row-exerpt .exerpt-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.row-exerpt .exerpt-header fieldset {
  min-width: 350px;
}
@media only screen and (max-width: 960px) {
  .row-exerpt .exerpt-header {
    flex-direction: column;
    padding-top: 50px;
    align-items: flex-start;
  }
  .row-exerpt .exerpt-header fieldset {
    min-width: 0;
    width: 100%;
  }
}
.row-form {
  overflow: hidden;
}
.row-form article {
  width: 33.333333%;
  padding-left: 80px;
  position: relative;
  flex: 0 0 auto;
}
.row-form article h2 {
  padding-left: 0;
  font-size: 2.5rem;
  margin-top: -10px;
}
@media only screen and (max-width: 763px) {
  .row-form article h2 {
    font-size: 2.188rem;
  }
}
.row-form article::before {
  content: "";
  position: absolute;
  width: 120px;
  right: 100%;
  height: 2px;
  background: var(--primary-color);
}
.row-form .content-width {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
@media only screen and (max-width: 960px) {
  .row-form article {
    width: auto;
    padding-left: 0;
  }
  .row-form article::before {
    display: none;
  }
  .row-form .content-width {
    flex-direction: column;
    gap: 40px;
  }
}
.row-form .fui-layout-vertical .fui-checkbox + .fui-checkbox,
.row-form .fui-layout-vertical .fui-radio + .fui-radio {
  margin-top: 0;
}
.row-form .fui-input-container .fui-layout-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}
.row-form .fui-input-container .fui-layout-wrap .fui-checkbox {
  flex: 0 1 auto;
  width: calc(50% - 25px);
  box-sizing: content-box;
}
@media only screen and (max-width: 763px) {
  .row-form .fui-input-container .fui-layout-wrap {
    flex-direction: column;
  }
  .row-form .fui-input-container .fui-layout-wrap .fui-checkbox {
    width: 100%;
  }
}
.row-form .fui-type-radio-buttons .fui-layout-wrap {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 763px) {
  .row-form .fui-type-radio-buttons .fui-layout-wrap {
    flex-direction: column;
  }
}
.row-form .fui-type-radio-buttons .fui-layout-wrap .fui-radio {
  flex: 1;
}
.row-form .grid .col {
  margin-bottom: 0;
}
.row-projectfilter {
  padding-top: 0;
}
.row-projectfilter h1 {
  padding-left: 0;
  margin-bottom: 35px;
}
.row-projectfilter p {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 160%;
}
@media only screen and (max-width: 1120px) {
  .row-projectfilter h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  .row-projectfilter p {
    font-size: 1rem;
  }
}
.row-projectfilter .content-width {
  position: relative;
}
.row-projectfilter .content-width::before {
  content: "";
  speak: never;
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  right: calc(100% - 120px);
  background: var(--primary-ocker);
}
@media only screen and (max-width: 1400px) {
  .row-projectfilter .content-width::before {
    width: 60px;
    right: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1120px) {
  .row-projectfilter .content-width::before {
    width: 30px;
    right: calc(100% - 30px);
  }
}
@media only screen and (max-width: 960px) {
  .row-projectfilter .content-width::before {
    width: 20px;
    right: calc(100% - 20px);
  }
}
.row-projectfilter .content-width .grid {
  background: var(--color-lightgrey);
  padding: 80px;
}
@media only screen and (max-width: 1440px) {
  .row-projectfilter .content-width .grid {
    padding: 40px;
  }
}
.row-projectfilter .project-filter {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
@media only screen and (max-width: 1400px) {
  .row-projectfilter .project-filter {
    gap: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .row-projectfilter .project-filter {
    flex-direction: column;
  }
}
.row-projectfilter .project-filter .category-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.row-projectfilter .project-filter .category-list .subcat-list {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.row-projectfilter .project-filter .category {
  border-radius: 22px;
  border: 2px solid var(--color-midgrey);
  padding: 6px 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  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);
}
.row-projectfilter .project-filter .category button.remove {
  width: 12px;
  height: 12px;
  background: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  display: none;
}
.row-projectfilter .project-filter .category button.remove::before,
.row-projectfilter .project-filter .category button.remove::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -1px;
}
.row-projectfilter .project-filter .category button.remove::before {
  transform: rotate(45deg);
}
.row-projectfilter .project-filter .category button.remove::after {
  transform: rotate(-45deg);
}
.row-projectfilter .project-filter .category button.remove:hover {
  opacity: 0.5;
}
.row-projectfilter .project-filter .category:hover,
.row-projectfilter .project-filter .category:focus {
  border-color: var(--color-darkgrey);
}
.row-projectfilter .project-filter .category.active {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: #fff;
}
.row-projectfilter .project-filter .category.active button.remove {
  display: block;
}
@media only screen and (max-width: 1400px) {
  .row-projectfilter .project-filter .category {
    font-size: 0.875rem;
  }
}
.row-workingfields {
  overflow: hidden;
}
.row-workingfields:first-child {
  padding-top: 0;
}
.row-workingfields h2 {
  margin-bottom: 35px;
}
.row-workingfields .fields-wrapper {
  position: relative;
  padding-left: 80px;
}
.row-workingfields .fields-wrapper::before {
  content: "";
  speak: never;
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  right: 100%;
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  .row-workingfields .fields-wrapper {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-workingfields .fields-wrapper {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 960px) {
  .row-workingfields .fields-wrapper {
    padding-left: 0;
  }
}
.row-workingfields .grid {
  --grid-gap: 10px;
}
.row-workingfields .grid .col-1-4 {
  position: relative;
  width: calc(25% - var(--grid-gap) / 1.3333333);
}
.row-workingfields .svg-wrap {
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  margin-right: calc(0px - ((100vw - 1580px) / 2));
}
.row-workingfields .svg-wrap img {
  position: relative;
  width: auto;
  max-width: none;
}
@media only screen and (max-width: 1400px) {
  .row-workingfields .svg-wrap {
    margin-right: -60px;
  }
}
.row-workingfields .card-field {
  height: 100%;
}
.row-workingfields .card-field h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  height: 100%;
}
@media only screen and (min-width: 1120px) and (max-width: 1680px) {
  .row-workingfields .card-field h3 {
    font-size: 1.19vw;
  }
}
.row-workingfields .card-field a {
  display: block;
  padding: 25px 30px;
  height: 100%;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-lightgrey);
}
.row-workingfields .card-field a:hover,
.row-workingfields .card-field a:focus {
  color: #fff;
  background: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
.row-workingfields .card-field::before {
  content: "";
  width: 100%;
  height: 535px;
  background: var(--color-lightgrey);
  pointer-events: none;
  speak: never;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: 0% 100%;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.row-workingfields .card-field.active::before,
.row-workingfields .card-field:has(a:hover)::before {
  opacity: 1;
  transform: scale(1);
}
.row-workingfields .card-field.active a {
  color: #fff;
  background: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
.row-workingfields .mobi-scrollbar {
  padding: 20px 40px;
  display: none;
}
.row-workingfields .mobi-scrollbar input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  overflow: visible;
  background: transparent linear-gradient(0deg, #D9D9D9 5%, #D9D9D9 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: center;
}
.row-workingfields .mobi-scrollbar input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 1120px) {
  .row-workingfields .scroll-area {
    overflow: hidden;
  }
  .row-workingfields .svg-wrap,
  .row-workingfields .grid {
    width: calc(360px * 4);
  }
  .row-workingfields .card-field {
    min-width: 350px;
  }
  .row-workingfields .mobi-scrollbar {
    display: block;
  }
}
/* 
*
*   SECONDRED Boilerplate
*   Header
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Logo Style - */
  --logo-width: 210px;
  --logo-height: 52px;
  --logo-bg: #fff;
  --logo-shadow: none;
  --logo-align: right;
  --logo-small-width: 188px;
  --logo-small-height: 40px;
  /* - Header Style  - */
  --header-bg: #fff;
  --header-shadow: none;
  --header-height: 132px;
  --header-small-height: 75px;
  --header-color: var(--color-blue);
  --header-position: sticky;
  --header-top-pos: 0;
  --header-padding: 0;
}
header.header {
  position: var(--header-position);
  box-shadow: var(--header-shadow);
  background: var(--header-bg);
  top: var(--header-top-pos);
  padding: var(--header-padding);
  z-index: 777;
}
header.header .content-width {
  height: var(--header-height);
  position: relative;
  padding: 0 120px;
}
header.header .content-width::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  top: 0;
  right: calc(100% - 120px);
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  header.header .content-width {
    height: 100px;
    padding: 0 60px;
  }
  header.header .content-width::before {
    width: 60px;
    right: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1120px) {
  header.header .content-width {
    height: 80px;
    padding: 0 30px;
  }
  header.header .content-width::before {
    width: 30px;
    right: calc(100% - 30px);
  }
}
@media only screen and (max-width: 960px) {
  header.header .content-width::before {
    width: 20px;
    right: calc(100% - 20px);
  }
}
@media only screen and (max-width: 820px) {
  header.header .content-width {
    height: 74px;
  }
}
.logo {
  float: var(--logo-align);
  padding-top: 40px;
}
.logo a {
  background-image: var(--logo-img);
  display: grid;
  justify-content: center;
  align-content: center;
  background-repeat: no-repeat;
  background-position: left center;
  width: var(--logo-width);
  height: var(--logo-height);
  box-shadow: var(--logo-shadow);
  background-color: var(--logo-bg);
}
@media only screen and (max-width: 1400px) {
  .logo {
    padding-top: 23px;
  }
}
@media only screen and (max-width: 1120px) {
  .logo {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 960px) {
  .logo {
    padding-top: 23px;
  }
  .logo a {
    width: 138px;
    height: 34px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Menu Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --hamburger-bg-color: transparent;
  --hamburger-position: left;
  --hamburger-height: 80px;
  --hamburger-width: auto;
  --hamburger-line-color: var(--color-darkgrey);
  /* - 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: 12;
  display: none;
  gap: 15px;
  margin-top: -23px;
  margin-bottom: -25px;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
  color: var(--color-black);
}
.hamburger .burger {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
}
.hamburger .burger-text {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.hamburger em {
  width: 50px;
  height: 2px;
  background: var(--hamburger-line-color);
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  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: 2px;
}
.hamburger em.top {
  margin-top: -10px;
}
.hamburger em.bottom {
  margin-top: 8px;
}
.hamburger:hover em.top,
.hamburger:focus em.top {
  margin-top: -12px;
}
.hamburger:hover em.bottom,
.hamburger:focus em.bottom {
  margin-top: 10px;
}
.hamburger.open {
  color: #fff;
  padding-right: 20px;
  /*    &:hover,
        &:focus{
            color: var(--color-lightergreen);
            em {
                background:  var(--color-lightergreen);
            }
        } */
}
.hamburger.open em {
  background: #fff;
}
.hamburger.open em.top {
  margin-top: -1px;
  transform: rotate(45deg);
}
.hamburger.open em.middle {
  transform: scale(0, 1);
}
.hamburger.open em.bottom {
  margin-top: -1px;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  .hamburger {
    display: flex;
    width: auto;
    height: 60px;
    margin-top: 6px;
    margin-left: 20px;
  }
  .hamburger .burger {
    display: none;
  }
  .hamburger.open {
    font-size: 20px;
    z-index: 20;
    opacity: 0.5;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
  }
  .hamburger.open::before {
    content: "Zurück";
    padding-left: 10px;
  }
  .hamburger.open .burger-text {
    display: none;
  }
}
#mainmenu {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  position: absolute;
  top: 20px;
  left: 200px;
  z-index: 10;
  display: block;
}
#mainmenu.open {
  display: block;
}
#mainmenu ul {
  margin-bottom: 0;
  display: flex;
  list-style: none;
  text-transform: uppercase;
  gap: 30px;
}
#mainmenu ul li {
  margin-bottom: 0;
}
#mainmenu a {
  text-decoration: none;
  color: inherit;
  padding: 30px 0;
  display: block;
}
#mainmenu a:hover,
#mainmenu a:focus,
#mainmenu a.active {
  color: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  #mainmenu {
    top: 7px;
    left: 120px;
  }
}
@media only screen and (max-width: 1120px) {
  #mainmenu {
    top: 0;
    left: 60px;
  }
  #mainmenu a {
    padding: 28px 0;
  }
}
@media only screen and (max-width: 960px) {
  #mainmenu {
    display: none;
    background: var(--color-darkgrey);
    top: 0;
    right: 0;
    left: auto;
    width: 400px;
    color: #fff;
    padding: 84px 60px 60px;
  }
  #mainmenu ul {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 567px) {
  #mainmenu {
    width: 100%;
  }
  #mainmenu a {
    padding: 10px 0;
  }
}
/* -- Mobile View -- */
/* -- Footermenü -- */
.footermenu ul {
  margin-bottom: 0;
}
.footermenu ul li {
  margin-bottom: 0;
}
.footermenu ul li + li {
  margin-top: 15px;
}
@media only screen and (max-width: 763px) {
  .footermenu ul li + li {
    margin-top: 10px;
  }
}
.footermenu a {
  display: block;
  text-decoration: underline;
}
.footermenu a[class^="icon"] {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footermenu a[class^="icon"]::before {
  opacity: 0.5;
}
.footermenu a:hover,
.footermenu a:focus {
  color: var(--primary-color);
  text-decoration: none;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.content-width {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--contentPadding);
  max-width: var(--layout-width);
  padding: 0;
}
.content-width.wide {
  max-width: var(--layout-width);
}
/*
*
*   SECONDRED Boilerplate
*   Footer Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --footer-bg: var(--color-beige);
  --footer-padding: 30px;
  --footer-margin: 0;
}
footer {
  margin-top: auto;
  font-size: 1.125rem;
  background: var(--color-darkgrey);
  color: #fff;
}
footer .content-width {
  padding: 80px 80px 0 120px;
}
footer .content-width::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 120px);
  height: 100%;
  width: 100%;
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  footer .content-width {
    padding: 60px 60px 0 60px;
  }
  footer .content-width::before {
    right: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1120px) {
  footer .content-width {
    padding: 40px 60px 0 60px;
  }
  footer .content-width::before {
    right: calc(100% - 30px);
  }
}
@media only screen and (max-width: 960px) {
  footer .content-width {
    padding: 40px 60px 0 60px;
    display: flex;
    flex-direction: column-reverse;
  }
  footer .content-width::before {
    right: calc(100% - 20px);
  }
}
footer .grid {
  margin-bottom: 0;
  margin-right: auto;
  width: 75%;
}
@media only screen and (max-width: 1400px) {
  footer .grid {
    width: 85%;
  }
}
@media only screen and (max-width: 1120px) {
  footer .grid {
    width: 100%;
  }
}
footer .grid .col {
  padding: 0;
  margin-bottom: 0;
  position: relative;
  padding-left: 80px;
  padding-bottom: 80px;
}
footer .grid .col::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
}
footer .grid .col:first-child::before {
  display: none;
}
@media only screen and (max-width: 1120px) {
  footer .grid .col {
    padding-left: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 960px) {
  footer .grid .col {
    padding-left: 0;
    padding-bottom: 20px;
  }
  footer .grid .col::before {
    display: none;
  }
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a:hover,
footer a:focus {
  color: var(--secondary-color);
  text-decoration: underline;
}
footer .btn {
  width: 100%;
}
footer .menu-title,
footer .social-media-title {
  font-weight: 300;
  font-size: 1.125rem;
}
footer .social-media-title {
  margin-bottom: 10px;
}
@media only screen and (max-width: 820px) {
  footer .social-media-title {
    text-align: center;
  }
}
footer nav.social-media {
  margin-bottom: 0;
  position: absolute;
  right: 120px;
  top: 60px;
}
footer nav.social-media ul {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
footer nav.social-media ul li {
  margin-bottom: 0;
}
footer nav.social-media ul li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  direction: ltr;
  display: grid;
  justify-content: center;
  align-content: center;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
footer nav.social-media ul li a:focus,
footer nav.social-media ul li a:hover {
  color: #fff;
  text-decoration: none;
}
footer nav.social-media ul li a.icon-x:focus,
footer nav.social-media ul li a.icon-x:hover {
  background: #1DA1F2;
}
footer nav.social-media ul li a.icon-xing:focus,
footer nav.social-media ul li a.icon-xing:hover {
  background: #126567;
}
footer nav.social-media ul li a.icon-linkedin:focus,
footer nav.social-media ul li a.icon-linkedin:hover {
  background: #0072b1;
}
footer nav.social-media ul li a.icon-instagram:focus,
footer nav.social-media ul li a.icon-instagram:hover {
  background: #C13584;
}
footer nav.social-media ul li a.icon-facebook:focus,
footer nav.social-media ul li a.icon-facebook:hover {
  background: #4267B2;
}
footer nav.social-media ul li a.icon-youtube:focus,
footer nav.social-media ul li a.icon-youtube:hover {
  background: #FF0000;
}
@media only screen and (max-width: 960px) {
  footer nav.social-media {
    margin-bottom: 45px;
    margin-top: 30px;
    position: static;
  }
  footer nav.social-media ul {
    display: flex;
    flex-direction: row;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.card {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.card h3 {
  font-weight: 400;
  font-size: 1.563rem;
  line-height: 130%;
  margin-bottom: 20px;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.card img {
  display: block;
  width: 100%;
}
.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;
  margin-bottom: 30px;
}
.card .inner {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
.card .inner .btn-wrap {
  margin-top: auto;
}
@media only screen and (max-width: 960px) {
  .card .inner {
    padding: 25px;
  }
}
.card .group-list .group-title {
  font-size: 2.188rem;
  margin-bottom: 40px;
}
.card .group-list .group-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.card .group-list .group-item img {
  border-radius: 50%;
}
.card .group-list .group-item .group-desc {
  flex: 1;
}
.card .group-list .group-item .group-desc strong,
.card .group-list .group-item .group-desc small {
  display: block;
}
.card .group-list .group-item .group-desc strong a,
.card .group-list .group-item .group-desc small a {
  text-decoration: none;
  color: inherit;
}
.card .group-list .group-item .group-desc strong a:focus,
.card .group-list .group-item .group-desc small a:focus,
.card .group-list .group-item .group-desc strong a:hover,
.card .group-list .group-item .group-desc small a:hover {
  color: var(--color-lightgreen);
}
.card .group-list .group-item + .group-item {
  margin-top: 25px;
}
.card .group-list + .btn-wrap {
  margin-top: 50px;
}
.grid .card-img {
  height: 100%;
}
.card-hero {
  display: flex;
  flex-direction: row;
  background: var(--color-lightgrey);
  align-items: flex-end;
}
.card-hero::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  top: 0;
  right: calc(100% - 120px);
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  .card-hero::before {
    width: 60px;
    right: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1120px) {
  .card-hero::before {
    width: 30px;
    right: calc(100% - 30px);
  }
}
@media only screen and (max-width: 960px) {
  .card-hero::before {
    width: 20px;
    right: calc(100% - 20px);
  }
}
.card-hero .btn-wrap {
  margin-top: 40px;
}
.card-hero h2 {
  margin-bottom: 35px;
  padding-left: 0;
}
.card-hero h3 {
  font-size: 1.875rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (min-width: 960px) and (max-width: 1800px) {
  .card-hero h2 {
    font-size: 3.333vw;
    margin-bottom: 20px;
  }
  .card-hero h3 {
    font-size: 1.667vw;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 960px) {
  .card-hero h2 {
    font-size: 7vw;
    margin-bottom: 20px;
  }
  .card-hero h3 {
    font-size: 5vw;
    margin-bottom: 25px;
  }
  .card-hero .btn-wrap {
    margin-top: 20px;
  }
}
.card-hero article {
  padding: 80px;
}
.card-hero img,
.card-hero picture {
  display: block;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
.card-hero figure,
.card-hero article {
  flex: 1;
  width: 50%;
}
@media only screen and (max-width: 960px) {
  .card-hero {
    flex-direction: column-reverse;
  }
  .card-hero article {
    padding: 25px;
  }
  .card-hero figure,
  .card-hero article {
    width: 100%;
  }
  .card-hero figure {
    aspect-ratio: 350 / 260;
  }
}
/* -- Card News -- */
.card-img {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 80px;
  background: var(--color-lightgrey);
}
.card-img h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media only screen and (max-width: 763px) {
  .card-img h3 {
    font-size: 1.563rem;
    margin-bottom: 25px;
  }
}
.card-img p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 763px) {
  .card-img p {
    margin-bottom: 20px;
  }
}
.card-img .tag,
.card-img time {
  font-size: 0.75rem;
  display: block;
  font-weight: 500;
  color: #fff;
  background: var(--secondary-color);
  position: absolute;
  text-transform: uppercase;
  left: 100px;
  top: 20px;
  padding: 6px 10px;
  border-radius: 20px;
  line-height: 100%;
}
.card-img .tags {
  left: 100px;
  top: 20px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.card-img .tags .tag {
  display: block;
  position: static;
}
.card-img figure {
  overflow: hidden;
}
.card-img figure img {
  display: block;
  width: 100%;
}
.card-img article {
  padding: 40px 60px 80px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-img .btn-wrap {
  margin-top: auto;
}
@media only screen and (max-width: 960px) {
  .card-img .btn-wrap {
    padding-top: 25px;
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 763px) {
  .card-img .btn-wrap {
    padding-top: 0;
  }
}
@media only screen and (max-width: 1400px) {
  .card-img {
    padding-left: 40px;
  }
  .card-img article {
    padding: 40px 30px 40px 0;
  }
  .card-img .tags,
  .card-img time {
    left: 60px;
  }
}
@media only screen and (max-width: 960px) {
  .card-img .tags,
  .card-img time {
    left: 50px;
    top: 10px;
  }
}
@media only screen and (max-width: 763px) {
  .card-img article {
    padding: 30px 30px 30px 0;
  }
}
.col-1-3 .card-img h3 {
  font-size: 1.563rem;
}
/* -- -- */
.card-meta {
  background: var(--color-lightgrey);
  padding: 80px 40px 80px 80px;
}
.card-meta dl dt {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-meta dl dd {
  margin-bottom: 35px;
}
.card-meta dl a {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.card-meta dl a::before {
  width: 24px;
  height: 24px;
  min-width: 24px;
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  speak: never;
  display: block;
}
.card-meta dl a:hover,
.card-meta dl a:focus {
  color: var(--secondary-color);
}
.card-meta dl a:hover::before,
.card-meta dl a:focus::before {
  background: var(--secondary-color);
}
.card-meta .category {
  border-radius: 22px;
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 15px;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 563px) {
  .card-meta .category {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 1400px) {
  .card-meta {
    padding: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .card-meta {
    padding: 20px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.card-skeleton {
  background: rgba(0, 136, 71, 0.05) !important;
  position: relative;
}
.card-skeleton .skeleton-label {
  position: absolute;
  left: 30px;
  top: 0;
  height: 44px;
  border-radius: 0 0 6px 6px;
  padding: 10px 15px;
  font-weight: normal;
  max-width: calc(100% - 60px);
  width: 100px;
}
.card-skeleton .skeleton-img {
  aspect-ratio: 35/26;
  background: rgba(0, 136, 71, 0.05);
}
.card-skeleton .skeleton-headline {
  height: 65px;
  border-radius: 6px;
}
.card-skeleton .skeleton-p {
  height: 48px;
  border-radius: 6px;
  margin-bottom: 50px;
}
.card-skeleton .skeleton-figcaption {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 0  0 6px 6px;
  justify-content: flex-end;
}
.card-skeleton .skeleton-excerpt {
  max-height: 300px;
  padding-top: 20px;
}
.card-skeleton .skeleton-btn {
  height: 38px;
  width: 120px;
  border-radius: 6px;
}
.card-skeleton.card-large .skeleton-headline {
  height: 40px;
}
.card-skeleton.card-large .skeleton-p {
  height: 75px;
  max-width: 80%;
  margin-bottom: 20px;
  border-radius: 6px;
}
.card-skeleton .skeleton-img,
.card-skeleton .skeleton-headline,
.card-skeleton .skeleton-btn,
.card-skeleton .skeleton-p {
  background: rgba(0, 136, 71, 0.05);
  background: linear-gradient(110deg, rgba(0, 136, 71, 0.05) 8%, rgba(255, 255, 255, 0.05) 18%, rgba(0, 136, 71, 0.05) 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  background-attachment: fixed;
}
.skeleton-download {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
.skeleton-download .skeleton-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.skeleton-download .skeleton-title {
  border-radius: 6px;
  height: 35px;
  flex: 1;
}
.skeleton-download .skeleton-filesize {
  height: 20px;
  border-radius: 6px;
  width: 120px;
}
.skeleton-download .skeleton-filesize,
.skeleton-download .skeleton-circle,
.skeleton-download .skeleton-title {
  background: rgba(0, 136, 71, 0.05);
  background: linear-gradient(110deg, rgba(0, 136, 71, 0.05) 8%, rgba(255, 255, 255, 0.15) 18%, rgba(0, 136, 71, 0.05) 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  background-attachment: fixed;
}
.is-violet .card-skeleton,
.row-events .events-wrapper .card-skeleton {
  background: rgba(255, 255, 255, 0.05) !important;
}
.is-violet .card-skeleton .skeleton-img,
.row-events .events-wrapper .card-skeleton .skeleton-img {
  background: rgba(255, 255, 255, 0.05);
}
.is-violet .card-skeleton .skeleton-img,
.row-events .events-wrapper .card-skeleton .skeleton-img,
.is-violet .card-skeleton .skeleton-headline,
.row-events .events-wrapper .card-skeleton .skeleton-headline,
.is-violet .card-skeleton .skeleton-btn,
.row-events .events-wrapper .card-skeleton .skeleton-btn,
.is-violet .card-skeleton .skeleton-p,
.row-events .events-wrapper .card-skeleton .skeleton-p {
  background: rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 8%, rgba(255, 255, 255, 0.15) 18%, rgba(255, 255, 255, 0.05) 33%);
}
.is-violet .skeleton-download .skeleton-filesize,
.row-events .events-wrapper .skeleton-download .skeleton-filesize,
.is-violet .skeleton-download .skeleton-circle,
.row-events .events-wrapper .skeleton-download .skeleton-circle,
.is-violet .skeleton-download .skeleton-title,
.row-events .events-wrapper .skeleton-download .skeleton-title {
  background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 8%, rgba(255, 255, 255, 0.15) 18%, rgba(255, 255, 255, 0.05) 33%);
}
@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .card-skeleton::before {
    content: "Inhalt wird geladen...";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .card-skeleton .skeleton-label,
  .card-skeleton .skeleton-headline,
  .card-skeleton .skeleton-btn,
  .card-skeleton .skeleton-p {
    animation: none;
  }
}
/* 
*
*   SECONDRED Custom Multiselect CSS v1
*   Forms Framework
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --sr_selectFontFamily: inherit;
  --sr_selectFontColor: inherit;
  --sr_selectFontSize: 1rem;
  --sr_selectWidth: 100%;
  --sr_selectPadding: 13px 20px;
  --sr_selectBackground: var(--input-bg);
  --sr_selectBorder: 0;
  --sr_selectPlaceholderColor: inherit;
  --sr_selectPlaceholderFontStyle: normal;
}
.sr-select {
  position: relative;
  word-break: normal;
  color: var(--color-black, #000);
}
.sr-select .sr-select-activator {
  padding: var(--sr_selectPadding);
  padding-right: 45px;
  border: var(--sr_selectBorder);
  background: var(--sr_selectBackground);
  font-size: var(--sr_selectFontSize);
  accent-color: var(--primary-color);
  font-family: var(--sr_selectFontFamily);
  width: var(--sr_selectWidth);
  color: var(--sr_selectFontColor);
  text-align: left;
  display: block;
  min-height: 50px;
  width: 100%;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-placeholder {
  color: var(--sr_selectPlaceholderColor);
  font-style: var(--sr_selectPlaceholderFontStyle);
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option {
  padding: 5px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option > div figure {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close {
  margin-left: 10px;
  font-weight: bold;
  padding-right: 5px;
  display: inline-grid;
  justify-content: center;
  align-content: center;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close::before {
  content: "\2715";
  speak: never;
}
.sr-select .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close:hover {
  color: var(--primary-color);
}
.sr-select .sr-select-activator .sr-select-selected:has(.sr-select-selected-option) {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.sr-select .sr-select-activator::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
  speak: none;
  transform: rotate(45deg);
}
.sr-select:not(.sr-select-multiple) .sr-select-close {
  display: none;
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option {
  padding: 5px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  margin: -5px 0;
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option > a figure {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close {
  margin-left: 10px;
  font-weight: bold;
  padding-right: 5px;
  display: inline-grid;
  justify-content: center;
  align-content: center;
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close::before {
  content: "\2715";
  speak: never;
}
.sr-select:not(.sr-select-multiple) .sr-select-activator .sr-select-selected .sr-select-selected-option .sr-select-close:hover {
  color: var(--primary-color);
}
.sr-select:has(.sr-select-optionList:not([style*="display: none"])) .sr-select-activator {
  border-radius: 5px 5px 0 0;
  background: #E5EFF0;
}
.sr-select:has(.sr-select-optionList:not([style*="display: none"])) .sr-select-activator::before {
  transform: rotate(224deg);
  margin-top: -2px;
}
.sr-select .sr-select-optionList {
  background-color: var(--sr_selectBackground);
  border: var(--sr_selectBorder);
  position: absolute;
  min-width: 100%;
  left: 0;
  top: 100%;
  padding: 0;
  border-bottom: 2px solid var(--primary-color);
  border-radius: 0 0 5px 5px;
  z-index: 100;
}
.sr-select .sr-select-optionList input.sr-select-search {
  padding: 10px 20px;
  font-size: var(--sr_selectFontSize);
  border: var(--sr_selectBorder);
  font-family: inherit;
  width: 100%;
  margin-bottom: 5px;
  background: #E5EFF0;
}
.sr-select .sr-select-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  max-height: 200px;
  overflow-y: auto;
}
.sr-select .sr-select-list.sr-select-loading {
  position: relative;
  min-height: 50px;
}
.sr-select .sr-select-list.sr-select-loading::before {
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(0, 0, 0, 0) 38%, #000000 42%, #000000 48%, rgba(0, 0, 0, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
  content: "";
  position: absolute;
  width: 60px;
  height: 24px;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -12px;
}
.sr-select .sr-select-list .sr-select-list-option {
  cursor: pointer;
  padding: 13px 20px;
}
.sr-select .sr-select-list .sr-select-list-option > div:not([class]) {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sr-select .sr-select-list .sr-select-list-option > div:not([class]) span {
  color: var(--color-green);
  font-weight: 700;
}
.sr-select .sr-select-list .sr-select-list-option figure {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
}
.sr-select .sr-select-list .sr-select-list-option figure picture,
.sr-select .sr-select-list .sr-select-list-option figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.sr-select .sr-select-list .sr-select-list-option:empty {
  display: none;
}
.sr-select .sr-select-list .sr-select-list-option.sr-select-selected,
.sr-select .sr-select-list .sr-select-list-option:hover {
  color: #fff;
  background: var(--color-green) linear-gradient(90deg, #008847 -0.91%, #106550 100%);
}
.sr-select .sr-select-list .sr-select-list-option.sr-select-selected a,
.sr-select .sr-select-list .sr-select-list-option:hover a {
  color: #fff;
}
.sr-select .sr-select-list .sr-select-list-option:focus,
.sr-select .sr-select-list .sr-select-list-option.sr-select-active {
  background: #f2f2f2;
}
.sr-select .sr-select-list ul.sr-select-group {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.sr-select .sr-select-list ul.sr-select-group li {
  margin-bottom: 0;
}
.sr-select .sr-select-list ul.sr-select-group li[role="presentation"] {
  color: var(--color-violet);
  font-size: 1.25rem;
  padding: 13px 20px;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option {
  padding: 0;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option a {
  position: relative;
  color: var(--text-color);
  padding: 13px 20px;
  display: block;
  text-decoration: none;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option a span {
  font-weight: bold;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option a:hover {
  color: #fff;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option a:has(figure) {
  padding-left: 50px;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option figure {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 20px;
  top: 15px;
}
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option figure picture,
.sr-select .sr-select-list ul.sr-select-group li.sr-select-list-option figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option:empty {
  display: none;
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option::before {
  content: "\e92c";
  width: 24px;
  height: 25px;
  min-width: 24px;
  background: #fff;
  border-bottom: 1px solid var(--color-green);
  border-radius: 5px;
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 14px;
  color: #fff;
  display: grid;
  justify-content: center;
  align-content: center;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option.sr-select-selected {
  background: transparent;
  color: var(--color-black);
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option.sr-select-selected::before {
  background: var(--color-green) linear-gradient(90deg, #008847 -0.91%, #106550 100%);
}
.sr-select.sr-select-multiple .sr-select-list .sr-select-list-option:hover {
  color: var(--color-green);
  background: transparent;
}
/*
*
*   SECONDRED Boilerplate
*   Form.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Formular Styles - */
  --fieldset-padding: 0;
  --fieldset-border: 0;
  --input-fontsize: 1rem;
  --input-fontfamiliy: var(--font);
  --input-focus-color: #666;
  --input-bg: var(--color-lightgrey);
  --input-border: 2px solid var(--color-lightgrey);
  --input-border-radius: 0;
  --input-padding: 0 20px;
  --input-height: 50px;
  --textarea-padding: 10px;
  --textarea-minheight: 150px;
  --input-placeholder-color: #20201E;
  --input-placeholder-style: italic;
  --input-placeholder-opacity: 1;
  --input-disabeld-color: #ccc;
  --input-disabeld-cursor: not-allowed;
  --input-disabeld-border: #ccc;
  --input-error-color: #AD0009;
  --input-error-border: #AD0009;
}
/* 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: 25px;
  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 input.form-text,
.form-item select {
  height: var(--input-height);
}
.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);
  border-bottom-color: var(--color-green);
}
.form-item input.form-text[disabled],
.form-item select[disabled],
.form-item textarea[disabled] {
  border: 1px solid var(--colorDisabled);
}
.form-item input.form-text:read-only,
.form-item select:read-only,
.form-item textarea:read-only {
  border-bottom-color: #C7C7C7;
  color: #4D4D4D;
}
.form-item:has(input.form-text:read-only) label,
.form-item:has(textarea:read-only) label,
.form-item:has(select:read-only) label {
  color: #C7C7C7;
}
.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;
  filter: alpha(opacity=0);
  opacity: 0;
}
.form-radio label {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.form-radio label em {
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: var(--color-violet);
  background: var(--input-bg);
  border: 2px solid var(--input-bg);
  display: grid;
  justify-content: center;
  align-content: center;
  border-bottom: 2px solid var(--color-green);
  border-radius: 5px;
}
.form-radio label em::before {
  opacity: 0;
  transform: scale(0);
}
.form-radio label span {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  padding-left: 20px;
}
@media only screen and (max-width: 763px) {
  .form-radio label span {
    font-size: 12px;
  }
}
.form-radio label:focus .form-radio label:hover em {
  border-color: var(--color-green);
}
.form-radio input:checked + label em::before {
  opacity: 1;
  transform: scale(1);
}
.form-radio input:hover:checked + label em::before {
  opacity: 1;
  transform: scale(1);
}
.form-radio input[type="radio"] + label em {
  border-radius: 50%;
}
.form-radio input[type="radio"] + label em::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-violet);
}
.form-lightswitch {
  position: relative;
}
.form-lightswitch input {
  position: absolute;
  filter: alpha(opacity=0);
  opacity: 0;
}
.form-lightswitch label {
  gap: 10px;
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
}
.form-lightswitch em {
  min-width: 105px;
  width: 105px;
  height: 50px;
  border-radius: 25px;
  background: var(--input-bg);
  position: relative;
  border: 0;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
  display: inline-flex;
  cursor: pointer;
}
.form-lightswitch em::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--input-bg);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1);
  border: 2px solid var(--color-violet);
}
.form-lightswitch input[type="checkbox"] + label em {
  border-radius: 25px;
}
.form-lightswitch input:focus + label em {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.form-lightswitch input:checked + label em::before {
  transform: translate(calc(100% + 6px), 0);
  background: var(--color-green);
  border-color: var(--color-green);
}
.form-error {
  position: relative;
}
.form-error input,
.form-error select,
.form-error .SumoSelect,
.form-error textarea {
  border-bottom: 2px solid var(--colorAlert) !important;
}
.form-error label em,
.form-error em:not([class^="icon-"]) {
  border-bottom-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 -- */
.sr-select .sr-select-activator {
  border: 2px solid #E5EFF0;
  background: #E5EFF0;
  border-bottom: 2px solid var(--color-green);
  border-radius: 5px;
}
/* -- Custom Forms -- */
fieldset ::placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset :-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset ::-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
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(--primary-color);
}
fieldset.std .form-radio input:checked + label em::before {
  transform: translate(calc(100% + 4px), 0);
}
fieldset.login .form-radio label,
fieldset.new-chat .form-radio label,
fieldset.invite .form-radio label,
fieldset.new-group .form-radio label,
fieldset.reset-password .form-radio label,
fieldset.change-password .form-radio label,
fieldset.subscribe-newsfeed .form-radio label,
fieldset.profile-information .form-radio label {
  font-weight: normal;
}
fieldset.login .form-item:not(.form-radio) label,
fieldset.new-chat .form-item:not(.form-radio) label,
fieldset.invite .form-item:not(.form-radio) label,
fieldset.new-group .form-item:not(.form-radio) label,
fieldset.reset-password .form-item:not(.form-radio) label,
fieldset.change-password .form-item:not(.form-radio) label,
fieldset.subscribe-newsfeed .form-item:not(.form-radio) label,
fieldset.profile-information .form-item:not(.form-radio) label {
  padding: 0 20px 10px;
}
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;
}
fieldset.subscribe-newsfeed .grid .col-1-1:last-child {
  margin-bottom: 0;
}
fieldset.subscribe-newsfeed .form-item {
  margin-bottom: 0;
}
/* -- Kontaktformular -- */
fieldset.contact-form p {
  margin-bottom: 50px;
}
fieldset.contact-form textarea {
  height: 452px;
  display: block;
}
fieldset.show-past-events {
  margin: 0 auto;
  max-width: 1150px;
  display: flex;
  justify-content: flex-end;
}
ul.error {
  list-style: none;
  padding-left: 0;
}
ul.error li {
  font-size: 0.75rem;
  padding-top: 10px;
  z-index: 2;
  padding-left: 20px;
  font-weight: 600;
  line-height: 130%;
}
ul.error li::before {
  content: "\e931";
  float: right;
  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;
  font-size: 20px;
}
/*
*
*   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: #A2A3A1;
  --fui-input-width: 100%;
  --fui-check-font-size: 18px;
  --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: 1px solid #D9D9D9;
  --fui-check-label-bg-color: #fff;
  --fui-field-gutter: 30px;
  --fui-row-gutter: 10px;
  --fui-column-gutter: 35px;
  --fui-btn-container-padding: 20px 0 0 0;
  --fui-btn-container-margin: 0 0;
  --fui-submit-btn-color: #fff;
  --fui-submit-btn-bg-color: red;
  --fui-submit-btn-border: 1px solid red;
  --fui-error-color: #AD0009;
  --fui-required-color: #AD0009;
  --fui-error: #AD0009;
}
/* -- 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;
}
/* -- Alert -- */
:root {
  --fui-alert-padding: 1rem;
  --fui-alert-border-radius: 0.25rem;
  --fui-alert-line-height: 1.25rem;
  --fui-alert-font-size: 0.875rem;
  --fui-alert-font-weight: 500;
  --fui-alert-margin-bottom: 1rem;
  --fui-alert-error-bg-color: #fdf2f2;
  --fui-alert-error-color: #771d1d;
  --fui-alert-success-bg-color: #f3faf7;
  --fui-alert-success-color: #03543f;
}
.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;
}
.fui-i {
  position: relative;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  width: 100%;
}
.fui-i::before,
.fui-i::after {
  width: 100vw;
  left: 0;
  height: 2px;
  content: "";
  position: absolute;
  background: var(--color-midgrey);
}
.fui-i::before {
  top: 0;
}
.fui-i::after {
  bottom: 0;
}
@media only screen and (max-width: 960px) {
  .fui-i {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* -- Form Outer -- */
.fui-row {
  display: flex;
  margin: 0 -30px;
}
.fui-row h2 {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 25px;
}
@media only screen and (max-width: 820px) {
  .fui-row {
    flex-direction: column;
    gap: 0;
  }
}
.fui-title {
  padding-left: 0 !important;
}
.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-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.fui-field {
  flex: 1;
  padding-left: var(--fui-field-gutter);
  padding-right: var(--fui-field-gutter);
}
.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: 1.125rem;
  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: var(--fui-input-width);
  height: var(--input-height);
  color: var(--color-black);
}
textarea.fui-input {
  min-height: 150px;
  padding: 15px 20px;
  display: block;
}
.fui-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../gfx/select-arrow.svg);
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
  background-size: 13px auto;
}
.fui-input::-moz-placeholder,
.fui-select::-moz-placeholder {
  color: var(--fui-input-placeholder-color);
  font-style: normal;
  color: #A2A3A1;
}
.fui-input::placeholder,
.fui-select::placeholder {
  color: var(--fui-input-placeholder-color);
  font-style: normal;
}
.fui-input[type="file"],
.fui-select[type="file"] {
  height: auto;
  font-size: 1rem;
}
input[type="file"]::file-selector-button {
  background: #fff;
  color: #343531 !important;
  border: #343531 1px solid !important;
  border-radius: 0px !important;
  margin-right: 15px;
  cursor: pointer;
  transition: 100ms ease;
}
input[type="file"]::file-selector-button:hover {
  background: #D5A71A !important;
  color: #343531 !important;
  border: #D5A71A 1px solid !important;
  border-radius: 0px !important;
}
.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: 50px;
}
.fui-radio label::before {
  width: 50px;
  height: 50px;
  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;
  content: "\e911";
  z-index: 3;
  background: transparent;
  color: #fff;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}
.fui-radio label::after {
  width: 50px;
  height: 50px;
  border: 2px solid var(--fui-input-background-color);
  background: var(--fui-input-background-color);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  content: "";
}
.fui-checkbox label {
  display: block;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-left: 75px;
  min-height: 50px;
  align-items: center;
}
.fui-checkbox label a {
  margin: 0 3px;
}
.fui-checkbox label::before {
  width: 50px;
  height: 50px;
  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;
  content: "\e911";
  z-index: 3;
  background: transparent;
  color: #fff;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}
.fui-checkbox label::after {
  width: 50px;
  height: 50px;
  border: 2px solid var(--fui-input-background-color);
  border-radius: 50px;
  background: var(--fui-input-background-color);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.fui-checkbox input:checked + label::before {
  opacity: 1;
}
.fui-checkbox input:checked + label::after {
  background: var(--color-ocker);
  border-color: var(--color-ocker);
}
.fui-radio label::before {
  border-radius: 50%;
}
.fui-radio input:checked + label::before {
  opacity: 1;
}
.fui-radio input:checked + label::after {
  background: var(--color-ocker);
  border-color: var(--color-ocker);
}
.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: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-transform: uppercase;
  padding: 10px 20px 10px 0;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1rem;
  gap: 15px;
  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);
  position: relative;
  align-items: center;
}
.fui-submit::before {
  width: 24px;
  height: 24px;
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  speak: never;
  display: block;
}
.fui-submit:hover::before,
.fui-submit:focus::before {
  background: var(--color-cyan);
}
.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-select {
  border-bottom-color: #AD0009;
  color: #AD0009;
}
.fui-error .fui-input::-moz-placeholder,
.fui-error .fui-select::-moz-placeholder {
  color: #AD0009;
}
.fui-error .fui-input::placeholder,
.fui-error .fui-select::placeholder {
  color: #AD0009;
}
.fui-error .fui-error-message {
  font-size: 0.75rem;
  padding-top: 10px;
  z-index: 2;
  padding-left: 20px;
  font-weight: 600;
  line-height: 130%;
}
.fui-instructions {
  margin-bottom: 25px;
  font-size: 1rem;
}
.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: transparent;
  --button-color: #000;
  --button-fontsize: 1.125rem;
  --button-fontfamiliy: inherit;
  --button-minheight: 38x;
  --button-minwidth: 250px;
  --button-txtdeco: none;
  --button-padding: 10px 25px;
  --button-margin: 0;
  --button-display: inline-flex;
}
.btn-wrap {
  display: flex;
  margin-bottom: 30px;
  gap: 25px;
  /*.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="center"] {
  justify-content: center;
}
.btn-wrap[data-align="right"] {
  justify-content: end;
}
.btn-wrap[data-align="between"] {
  justify-content: space-between;
}
.btn {
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-transform: uppercase;
  padding: 10px 20px 10px 0;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1rem;
  gap: 15px;
  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);
  position: relative;
  align-items: center;
}
.btn::before {
  width: 24px;
  height: 24px;
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  speak: never;
  min-width: 24px;
  display: block;
}
.btn:hover::before,
.btn:focus::before {
  background: var(--secondary-color);
}
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.loading::before {
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(0, 0, 0, 0) 38%, #000000 42%, #000000 48%, rgba(0, 0, 0, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
  content: "";
  position: absolute;
  width: 60px;
  height: 24px;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -12px;
}
.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);
}
.btn-splitt {
  display: flex;
  flex-direction: row;
}
.btn-splitt a,
.btn-splitt button {
  display: grid;
  justify-content: center;
  align-content: center;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-family: inherit;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 50px;
  cursor: pointer;
  text-decoration: none;
}
.btn-splitt a:focus,
.btn-splitt button:focus,
.btn-splitt a:hover,
.btn-splitt button:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}
.btn-splitt .btn-text {
  border-radius: 5px 0 0 5px;
  margin-right: -1px;
  padding: 0 25px;
  font-weight: 700;
  font-size: 0.875rem;
}
.btn-splitt .btn-ico {
  width: 50px;
  font-size: 18px;
  border-radius: 0 5px 5px 0;
}
.btn-arrow {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  font-size: 0.875rem;
  padding-top: 15px;
  min-width: 185px;
  letter-spacing: 2px;
  margin-right: auto;
}
.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
}
.btn-arrow::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: var(--color-black);
}
.btn-arrow::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg);
  right: 0;
  top: -2px;
}
.btn-arrow:focus,
.btn-arrow:hover {
  color: var(--color-green);
}
.btn-arrow:focus::before,
.btn-arrow:hover::before {
  background: var(--color-green);
}
.btn-arrow:focus::after,
.btn-arrow:hover::after {
  border-color: var(--color-green);
}
.btn-arrow.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
  background: radial-gradient(circle, var(--color-black) 0%, var(--color-black) 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
.btn-arrow.loading::before {
  background-color: transparent;
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(0, 0, 0, 0) 38%, #000000 42%, #000000 48%, rgba(0, 0, 0, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
  width: 60px;
  height: 34px;
  left: 0;
  top: auto;
  margin-left: 0;
  margin-top: 0;
  bottom: 0;
}
.btn-arrow.is-white {
  color: #fff;
}
.btn-arrow.is-white::before {
  background: #fff;
}
.btn-arrow.is-white::after {
  border-color: #fff;
}
.btn-arrow.is-white:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn-arrow.is-white:focus,
.btn-arrow.is-white:hover {
  color: var(--color-lightgreen);
}
.btn-arrow.is-white:focus::before,
.btn-arrow.is-white:hover::before {
  background: var(--color-lightgreen);
}
.btn-arrow.is-white:focus::after,
.btn-arrow.is-white:hover::after {
  border-color: var(--color-lightgreen);
}
.btn-arrow.is-white.loading {
  background: radial-gradient(circle, #ffffff 0%, #ffffff 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  color: transparent;
}
.btn-arrow.is-white.loading::before {
  background-color: transparent;
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(255, 255, 255, 0) 38%, #ffffff 42%, #ffffff 48%, rgba(255, 255, 255, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
button.btn,
button.btn-arrow {
  background: transparent;
  overflow: visible;
  text-align: left;
  font-family: inherit;
}
button.btn-arrow {
  padding-top: 20px;
  border: 0;
}
button.load-more {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  width: 100%;
  background: transparent;
  cursor: pointer;
  max-width: 350px;
  padding: 20px 0;
  letter-spacing: 2.1px;
  border: 0;
  color: var(--color-violet);
  border-top: 1px solid var(--color-green);
}
button.load-more:focus,
button.load-more:hover {
  color: var(--color-green);
}
button.load-more.loading {
  color: transparent;
}
button.load-more.loading::before {
  background-color: transparent;
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(0, 0, 0, 0) 38%, #000000 42%, #000000 48%, rgba(0, 0, 0, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
button.load-more.disabled {
  display: none;
}
@media only screen and (max-width: 960px) {
  button.load-more {
    max-width: none;
  }
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
  33% {
    background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%;
  }
  50% {
    background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%;
  }
  66% {
    background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%;
  }
}
@keyframes dot-carousel {
  33% {
    background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%;
  }
  50% {
    background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%;
  }
  66% {
    background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%;
  }
}
@keyframes dot-carousel-white {
  33% {
    background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%;
  }
  50% {
    background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%;
  }
  66% {
    background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%;
  }
}
@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(25%);
  }
}
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25%);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  to {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 20px;
}
.notyf__icon--error,
.notyf__icon--success {
  height: 21px;
  width: 21px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
}
.notyf__icon--error:after,
.notyf__icon--error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 9px;
  height: 12px;
  top: 5px;
}
.notyf__icon--error:after {
  transform: rotate(-45deg);
}
.notyf__icon--error:before {
  transform: rotate(45deg);
}
.notyf__icon--success:after,
.notyf__icon--success:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
}
.notyf__icon--success:after {
  height: 6px;
  transform: rotate(-45deg);
  top: 9px;
  left: 6px;
}
.notyf__icon--success:before {
  height: 11px;
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}
.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: all;
  -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
  animation: notyf-fadeinup 0.3s ease-in forwards;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  border-radius: 15px;
  max-width: 1150px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}
.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.notyf__toast--disappear .notyf__icon,
.notyf__toast--disappear .notyf__message {
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
  animation: notyf-fadeoutdown 0.3s forwards;
  opacity: 1;
  transform: translateY(0);
}
.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright 0.3s forwards;
  animation: notyf-fadeoutright 0.3s forwards;
  opacity: 1;
  transform: translateX(0);
}
.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.notyf__toast--upper {
  margin-bottom: 20px;
}
.notyf__toast--lower {
  margin-top: 20px;
}
.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 90px;
}
.notyf__ripple {
  height: 2000px;
  width: 2000px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple 0.4s ease-out forwards;
  animation: ripple 0.4s ease-out forwards;
}
.notyf__wrapper {
  display: flex;
  align-items: center;
  padding: 45px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
  background-image: url(../gfx/message-bubbles.png);
  background-repeat: no-repeat;
  background-position: 10px top;
  overflow: hidden;
}
.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  margin-right: 13px;
  display: none;
}
.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  margin-right: 0;
  -webkit-animation: notyf-fadeinleft 0.3s forwards;
  animation: notyf-fadeinleft 0.3s forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
  opacity: 0;
}
.notyf__dismiss-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -14px;
}
.notyf__dismiss-btn:after,
.notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  height: 14px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 7px);
}
.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}
.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}
.notyf__dismiss-btn:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.15);
}
.notyf__dismiss-btn:active {
  opacity: 0.8;
}
.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
  animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  line-height: 1.5em;
}
@media only screen and (max-width: 567px) {
  .notyf {
    padding: 0;
  }
  .notyf__wrapper {
    padding: 25px;
  }
  .notyf__ripple {
    height: 2000px;
    width: 2000px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .notyf__toast {
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
    width: 100%;
  }
  .notyf__dismiss {
    width: 56px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
article ul {
  margin-bottom: 40px;
  list-style: none;
  padding-left: 40px;
  padding-top: 30px;
}
article ul li {
  position: relative;
  padding-left: 40px;
}
article ul li:not([class])::before {
  width: 20px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
}
@media only screen and (max-width: 960px) {
  article ul {
    padding-left: 25px;
  }
}
article ol {
  padding-left: 65px;
  list-style-position: inside;
}
article ol li::marker {
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  article ol {
    padding-left: 25px;
  }
}
article p a {
  word-break: break-all;
}
article p + h3,
article p + h4,
article p + h5 {
  margin-top: 40px;
}
article dl dt {
  font-size: 1.25rem;
}
article dl dd {
  margin-bottom: 50px;
}
article dl dd:last-child {
  margin-bottom: 0;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-related {
  overflow: hidden;
}
.row-related .related-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.row-related .related-header h2 {
  margin-bottom: 0;
}
.row-related .related-header fieldset {
  width: 33.333%;
  width: calc(33.333333% - 30px);
  margin-left: 50px;
}
.row-related .related-header fieldset .form-item {
  margin-bottom: 0;
}
@media only screen and (max-width: 567px) {
  .row-related .related-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 567px) {
  .row-related.is-news .related-header {
    flex-direction: row;
  }
}
@media only screen and (max-width: 567px) {
  .row-related:has(.col-1-3) .related-header .btn {
    display: none;
  }
}
.row-related .no-content {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 100px 0;
  color: var(--color-midgrey);
  width: 100%;
}
.row-related button.load-more.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.row-related button.load-more.loading::before {
  animation: dot-carousel 1.5s infinite linear;
  --_g: no-repeat radial-gradient(circle, rgba(0, 0, 0, 0) 38%, #000000 42%, #000000 48%, rgba(0, 0, 0, 0) 52%);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
  content: "";
  position: absolute;
  width: 60px;
  height: 24px;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -12px;
}
.row-related button.load-more.disbled {
  display: none;
}
.row-related-swiper .swiper-nav {
  margin-top: 50px;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-accordion {
  overflow: hidden;
}
.row-accordion .content-width {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.row-accordion .content-width h2 {
  padding-left: 0;
  font-size: 2.5rem;
  margin-top: -10px;
}
.row-accordion .content-width article {
  width: 33.333333%;
  flex: 0 0 auto;
  position: relative;
  padding-left: 80px;
}
.row-accordion .content-width article::before {
  content: "";
  position: absolute;
  width: 120px;
  right: 100%;
  height: 2px;
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-accordion .content-width {
    gap: 40px;
    flex-direction: column;
  }
  .row-accordion .content-width article {
    width: 100%;
    padding-left: 0;
  }
  .row-accordion .content-width article::before {
    display: none;
  }
}
.accordion {
  position: relative;
  width: 100%;
}
.accordion::before {
  width: 200vw;
  height: 2px;
  content: "";
  speak: never;
  background: var(--color-midgrey);
  position: absolute;
  left: 0;
  bottom: 0;
}
.accordion details {
  margin-bottom: 0;
  position: relative;
}
.accordion details::before {
  width: 200vw;
  height: 2px;
  content: "";
  speak: never;
  background: var(--color-midgrey);
  position: absolute;
  left: 0;
  top: 0;
}
.accordion details summary {
  border-radius: 10px;
  font-size: 1.875rem;
  line-height: 130%;
  padding: 35px 0;
  text-transform: uppercase;
  list-style: none;
  display: block;
  cursor: pointer;
  user-select: none;
  font-weight: normal;
  color: var(--secondary-color);
  position: relative;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
  width: calc(100% - 80px);
}
.accordion details summary em {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: -80px;
}
.accordion details summary em::before,
.accordion details summary em::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-midgrey);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -1px;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.accordion details summary em::before {
  transform: rotate(90deg);
}
.accordion details summary::marker {
  display: none;
}
.accordion details summary::-webkit-details-marker {
  display: none;
}
.accordion details .acc-content {
  padding-bottom: 40px;
}
.accordion details .acc-content a[class] {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  align-items: center;
  color: inherit;
}
.accordion details .acc-content .row {
  padding: 60px 0;
}
.accordion details .acc-content ul {
  margin-bottom: 40px;
  list-style: none;
  padding-left: 40px;
  padding-top: 30px;
}
.accordion details .acc-content ul li {
  position: relative;
  padding-left: 40px;
}
.accordion details .acc-content ul li:not([class])::before {
  width: 20px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
}
@media only screen and (max-width: 960px) {
  .accordion details .acc-content ul {
    padding-left: 25px;
  }
}
.accordion details .acc-content ol {
  padding-left: 65px;
  list-style-position: inside;
}
.accordion details .acc-content ol li::marker {
  font-weight: 700;
}
@media only screen and (max-width: 960px) {
  .accordion details .acc-content ol {
    padding-left: 25px;
  }
}
.accordion details .acc-content p a {
  word-break: break-all;
}
.accordion details .acc-content p + h3,
.accordion details .acc-content p + h4,
.accordion details .acc-content p + h5 {
  margin-top: 40px;
}
.accordion details .acc-content dl dt {
  font-size: 1.25rem;
}
.accordion details .acc-content dl dd {
  margin-bottom: 50px;
}
.accordion details .acc-content dl dd:last-child {
  margin-bottom: 0;
}
.accordion details[open] summary em::before {
  display: none;
}
.accordion > article {
  padding: 0 60px;
}
@media only screen and (max-width: 960px) {
  .accordion {
    padding: 0;
  }
}
@media only screen and (max-width: 820px) {
  .accordion details summary {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .accordion article {
    padding: 50px 20px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
ul.contact-info {
  padding-left: 0;
  list-style: none;
  padding-top: 20px;
}
ul.contact-info li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 0;
}
ul.contact-info li::before {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
  color: var(--color-grey);
}
ul.contact-info li a {
  text-decoration: none;
  color: #000;
  word-break: break-all;
}
ul.contact-info li a:hover {
  text-decoration: underline;
}
ul.contact-info li + li {
  margin-top: 5px;
}
ul.contact-info li.icon-circle-linkedin a,
ul.contact-info li.icon-circle-xing a {
  letter-spacing: 2.1px;
  text-transform: uppercase;
  font-weight: 700;
}
ul.contact-info:last-child {
  margin-bottom: 0;
}
/* -- Ansprechpartner und Partner -- */
.card-contact {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  gap: 80px;
}
.card-contact p {
  font-weight: normal;
}
.card-contact figure {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 auto;
}
.card-contact figure img {
  display: block;
  height: 100% !important;
  object-fit: cover;
}
.card-contact .position {
  text-transform: uppercase;
  font-size: 1.125rem;
  color: var(--color-grey);
}
.card-contact .inner {
  display: flex;
  flex-direction: column;
}
.card-contact .inner h3 {
  margin-bottom: 10px;
  font-size: 1.875rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
}
.card-contact details {
  width: 100%;
  position: relative;
}
.card-contact details summary {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 15px;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
}
.card-contact details summary::before {
  width: 24px;
  height: 24px;
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  speak: never;
  min-width: 24px;
  display: block;
}
.card-contact details summary::-webkit-details-marker {
  display: none;
}
.card-contact details summary:hover::before {
  background: var(--secondary-color);
}
.card-contact details[open] {
  padding-bottom: 50px;
}
.card-contact details[open] summary {
  position: absolute;
  left: 0;
  bottom: 0;
}
.is-small .card-contact {
  flex-wrap: wrap;
}
.is-small .card-contact .inner h3 {
  font-size: 1.25rem;
}
.row-contact {
  overflow: hidden;
}
.row-contact .content-width {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.row-contact .content-width h2 {
  padding-left: 0;
  font-size: 2.5rem;
  margin-bottom: 35px;
  margin-top: -10px;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media only screen and (max-width: 763px) {
  .row-contact .content-width h2 {
    font-size: 2.188rem;
  }
}
.row-contact .content-width article {
  width: 33.333333%;
  flex: 0 0 auto;
  position: relative;
  padding-left: 80px;
}
.row-contact .content-width article::before {
  content: "";
  position: absolute;
  width: 120px;
  right: 100%;
  height: 2px;
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-contact .content-width {
    flex-direction: column;
    gap: 40px;
  }
  .row-contact .content-width h2 {
    margin-bottom: 25px;
  }
  .row-contact .content-width article {
    width: auto;
    padding-left: 0;
  }
  .row-contact .content-width article::before {
    display: none;
  }
}
.row-contact .contact-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  flex: 1;
  border-top: 2px solid var(--color-midgrey);
  padding-top: 60px;
}
@media only screen and (max-width: 1200px) {
  .row-contact .contact-list .card-contact {
    flex-direction: column;
    gap: 40px;
  }
  .row-contact .contact-list .card-contact figure {
    width: 120px;
    height: 120px;
  }
}
.row-contact.is-small .contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.row-contact.is-small .contact-list .card-contact {
  gap: 20px;
}
.row-contact.is-small .contact-list .card-contact figure {
  width: 120px;
  height: 120px;
}
@media only screen and (max-width: 1200px) {
  .row-contact.is-small .contact-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 567px) {
  .row-contact.is-small .contact-list .card-contact figure {
    width: 60px;
    height: 60px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
@media only screen and (max-width: 820px) {
  .row-form .grid .col {
    width: 100%;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Cookiebar
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --savebtn-color: #fff;
  --savebtn-background: var(--primary-color);
  --savebtn-fontsize: 1rem;
  --savebtn-border: 0;
  --savebtn-borderadius: 6px;
}
/* -- Cookiebar -- */
.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 900;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 120px;
}
@media only screen and (max-width: 1400px) {
  .cookie-bar {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1120px) {
  .cookie-bar {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 960px) {
  .cookie-bar {
    padding: 0 20px;
  }
}
.cookie-bar .content-width {
  width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  padding: 30px 40px;
  max-width: 1808px;
  background: var(--primary-color);
  color: #fff;
  border: 0;
}
.cookie-bar .cookie-desc {
  flex: 1;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}
.cookie-bar .cookie-desc h3 {
  margin-bottom: 10px;
}
.cookie-bar .cookie-desc a {
  text-decoration: none;
  color: inherit;
}
.cookie-bar .cookie-desc a:focus,
.cookie-bar .cookie-desc a:hover {
  text-decoration: underline;
}
.cookie-bar .cookie-desc p {
  margin: 0;
  padding: 0;
}
.cookie-bar .cookie-options {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cookie-bar .cookie-options button {
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-transform: uppercase;
  padding: 10px 20px 10px 0;
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1rem;
  gap: 15px;
  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);
  position: relative;
  align-items: center;
}
.cookie-bar .cookie-options button em {
  display: none;
}
.cookie-bar .cookie-options button::before {
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border-radius: 50%;
  speak: never;
  display: block;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.cookie-bar .cookie-options button:hover,
.cookie-bar .cookie-options button:focus {
  color: #fff;
}
.cookie-bar .cookie-options button:hover::before,
.cookie-bar .cookie-options button:focus::before {
  background: #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;
  border: 0;
  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 .cookie-opt-title {
  font-size: 1.375rem;
  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:focus::before,
.cookie-opt-overlay .cookie-opt-close:hover::before,
.cookie-opt-overlay .cookie-opt-close:focus::after,
.cookie-opt-overlay .cookie-opt-close:hover::after {
  background: var(--primary-color);
}
.cookie-opt-overlay .cookie-opt-content {
  text-align: left;
}
.cookie-opt-overlay .cookie-opt-toggle {
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: center;
  position: absolute;
}
.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:focus::before,
.cookie-opt-overlay .cookie-opt-toggle:hover::before {
  border-color: var(--primary-color);
}
.cookie-opt-overlay .cookie-opt-cattitle {
  background: #EDEDED;
  padding: 11px 10px;
  min-height: 40px;
  font-size: 0.813rem;
  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: 0.75rem;
  padding-left: 30px;
  font-weight: normal;
  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(--primary-color);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTEgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPjxwYXRoIGQ9Ik0xMC4wNTYsMC4wMDJjMC43ODcsMC4wNjYgMS4yMDYsMS4xMTggMC42NTEsMS43MDVsLTUuNzA3LDUuNzA3bC0zLjcwNywtMy43MDdjLTEuNDA5LC0xLjQ5IDAuNjMyLC0yLjE1NCAxLjQxNCwtMS40MTRsMi4yOTMsMi4yOTNsNC4yOTMsLTQuMjkzYzAuMzM1LC0wLjMxNyAwLjQwNCwtMC4zMDIgMC43NjMsLTAuMjkxWiIgc3R5bGU9ImZpbGw6I2ZmZjsiLz48L3N2Zz4=);
}
.cookie-opt-overlay .cookie-single-opt-toggle:has(input:focus-visible) label em,
.cookie-opt-overlay .cookie-opt-cattitle:has(input:focus-visible) label em {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.cookie-opt-overlay .cookie-opt-catinfo {
  font-size: 0.813rem;
  line-height: 120%;
  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: 160px;
}
.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-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: 50px;
  margin-top: 30px;
  border: 0;
}
.cookie-opt-overlay .cookie-top-savebtn:hover {
  color: #fff;
  background: var(--secondary-color);
}
.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 {
    flex-direction: column;
    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: 90%;
    padding: 20px;
  }
  .cookie-opt-overlay .cookie-top-savebtn {
    margin-top: 20px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-gallery {
  overflow: hidden;
}
.row-gallery h2 {
  padding-left: 80px;
  margin-bottom: 40px;
  font-size: 2.5rem;
}
@media only screen and (max-width: 1120px) {
  .row-gallery h2 {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 960px) {
  .row-gallery h2 {
    padding-left: 0;
  }
}
.row-gallery .gallery-wrapper {
  position: relative;
}
.row-gallery .swiper {
  margin-bottom: 10px;
  overflow: visible;
  z-index: 1;
}
.row-gallery .swiper-slide {
  width: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media only screen and (max-width: 763px) {
  .row-gallery .swiper-slide {
    height: 350px;
  }
}
.row-gallery .swiper-slide figure {
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
}
.row-gallery .swiper-slide figure img {
  display: block;
  width: auto !important;
  height: auto;
}
.row-gallery .swiper-slide figure figcaption {
  font-weight: 500;
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 8px 15px;
  max-width: calc(100% - 40px);
}
.row-gallery .swiper-slide figure:first-child img,
.row-gallery .swiper-slide figure:last-child img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media only screen and (max-width: 763px) {
  .row-gallery .swiper-slide figure figcaption {
    bottom: auto;
    top: 20px;
    left: auto;
    right: 20px;
    font-size: 0.875rem;
  }
  .row-gallery .swiper-slide figure picture {
    height: 215px !important;
    width: auto !important;
    overflow: hidden;
  }
  .row-gallery .swiper-slide figure picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}
.row-gallery .swiper-nav {
  position: absolute;
  display: flex;
  width: 120px;
  margin: 0 auto;
  left: -120px;
  top: 0;
  bottom: 0;
  z-index: 10;
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  .row-gallery .swiper-nav {
    width: 60px;
    left: -60px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-gallery .swiper-nav {
    width: 30px;
    left: -30px;
  }
}
@media only screen and (max-width: 960px) {
  .row-gallery .swiper-nav {
    width: 20px;
    left: -20px;
  }
}
.row-gallery .swiper-pagination {
  color: #fff;
  gap: 0;
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  bottom: 50px;
}
.row-gallery .swiper-pagination .swiper-pagination-bullet {
  height: auto;
  width: auto;
  background: transparent;
  border-radius: 0;
  position: relative;
  width: 67px;
  text-align: right;
  padding: 10px 0 18px;
  margin: 0;
  opacity: 1;
  color: var(--color-ockerlight);
}
.row-gallery .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  height: 2px;
  background: var(--color-ockerlight);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.row-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 2.875rem;
  font-weight: 600;
  width: 90px;
  padding: 18px 0 50px;
  color: #fff;
}
.row-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #fff;
}
.row-gallery .swiper-pagination .swiper-pagination-bullet:hover {
  color: #fff;
}
.row-gallery .swiper-pagination .swiper-pagination-bullet:hover::before {
  background: #fff;
}
@media only screen and (max-width: 1400px) {
  .row-gallery .swiper-pagination .swiper-pagination-bullet {
    width: 45px;
    padding: 15px 0 30px;
  }
  .row-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 57px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-gallery .swiper-pagination {
    top: auto;
    transform: none;
    bottom: 0;
    width: 60px;
    background: var(--primary-color);
    padding-top: 30px;
  }
  .row-gallery .swiper-pagination .swiper-pagination-bullet {
    width: 34px;
    padding: 10px 0 20px;
    font-size: 0.75rem;
  }
  .row-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 41px;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 2048px) {
  .row-gallery .content-width {
    padding-right: 0;
  }
  .row-gallery .swiper {
    overflow: hidden;
    margin-right: calc(0px - ((100vw - 2048px) / 2));
    padding-right: calc(-120px);
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-size: 10px;
}
.row-swiper {
  overflow: hidden;
  padding-top: 0;
}
.row-swiper img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.row-swiper .content-width {
  padding: 0 120px;
}
.row-swiper .swiper-slide {
  display: flex;
  flex-direction: row-reverse;
  height: auto;
}
.row-swiper .swiper-slide:not(:has(.article-wrap)) figure {
  height: 860px;
}
@media only screen and (max-width: 763px) {
  .row-swiper .swiper-slide:not(:has(.article-wrap)) figure {
    height: 453px;
  }
}
.row-swiper .swiper-slide figure {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .row-swiper .swiper-slide {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 1400px) {
  .row-swiper .content-width {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-swiper .content-width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 960px) {
  .row-swiper .content-width {
    padding: 0 20px;
  }
}
.row-swiper article {
  padding: 80px;
}
.row-swiper article h1,
.row-swiper article h2 {
  font-size: 5.625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding-bottom: 0;
  margin-bottom: 45px;
  text-transform: uppercase;
  padding-left: 0;
}
.row-swiper article p {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 1.875rem;
  line-height: 130%;
}
@media only screen and (min-width: 960px) and (max-width: 1800px) {
  .row-swiper article h1,
  .row-swiper article h2 {
    font-size: 5vw;
  }
  .row-swiper article p {
    font-size: 1.667vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-swiper article {
    padding: 40px;
  }
  .row-swiper article h1,
  .row-swiper article h2 {
    font-size: 10.256vw;
  }
  .row-swiper article p {
    font-size: 6.41vw;
  }
}
@media only screen and (max-width: 563px) {
  .row-swiper article h1,
  .row-swiper article h2 {
    font-size: 2.5rem;
  }
  .row-swiper article p {
    font-size: 1.563rem;
  }
}
@media only screen and (max-width: 480px) {
  .row-swiper article {
    padding: 30px;
  }
}
.row-swiper .article-wrap {
  background: var(--color-lightgrey);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  position: relative;
}
.row-swiper .swiper-nav {
  position: absolute;
  display: flex;
  width: 120px;
  margin: 0 auto;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--primary-color);
}
@media only screen and (max-width: 1400px) {
  .row-swiper .swiper-nav {
    width: 60px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-swiper .swiper-nav {
    width: 30px;
  }
}
@media only screen and (max-width: 960px) {
  .row-swiper .swiper-nav {
    width: 20px;
  }
}
.row-swiper .swiper-pagination {
  color: #fff;
  gap: 0;
  position: absolute;
  left: 0;
  top: auto;
  bottom: 30px;
  display: flex;
  flex-direction: column;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet {
  height: auto;
  width: auto;
  background: transparent;
  border-radius: 0;
  position: relative;
  width: 67px;
  text-align: right;
  padding: 15px 0 28px;
  margin: 0;
  color: var(--color-ockerlight);
  opacity: 1;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  height: 2px;
  background: var(--color-ockerlight);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 2.875rem;
  font-weight: 600;
  width: 90px;
  color: #fff;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #fff;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet:hover {
  color: #fff;
}
.row-swiper .swiper-pagination .swiper-pagination-bullet:hover::before {
  background: #fff;
}
@media only screen and (max-width: 1400px) {
  .row-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 45px;
    padding: 15px 0 30px;
  }
  .row-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 57px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-swiper .swiper-pagination {
    top: auto;
    transform: none;
    bottom: 0;
    width: 60px;
    background: var(--primary-color);
    padding-top: 30px;
  }
  .row-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 34px;
    padding: 10px 0 20px;
    font-size: 0.75rem;
  }
  .row-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 41px;
    font-size: 1.125rem;
  }
}
.row-swiper .btn-wrap {
  margin-top: 40px;
}
@media only screen and (max-width: 563px) {
  .row-swiper .btn-wrap {
    margin-top: 20px;
  }
}
.row-swiper.is-projectheader figure {
  position: relative;
  flex: 1;
}
.row-swiper.is-projectheader figure figcaption {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  max-width: calc(100% - 40px);
  line-height: 120%;
}
@media only screen and (max-width: 960px) {
  .row-swiper.is-projectheader figure:last-child figcaption {
    left: 60px;
  }
}
.row-swiper.is-projectheader .swiper-slide {
  flex-direction: row;
  width: auto;
}
@media only screen and (max-width: 960px) {
  .row-swiper.is-projectheader .swiper-slide {
    flex-direction: column;
  }
}
.row-swiper.is-projectheader .swiper-nav {
  z-index: 2;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-teaser {
  padding: 0;
}
.row-teaser .content-width {
  display: flex;
  flex-direction: row-reverse;
}
.row-teaser .content-width::before {
  content: "";
  speak: never;
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  right: calc(100% - 120px);
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-teaser .content-width {
    flex-direction: column;
  }
}
.row-teaser img {
  display: block;
}
.row-teaser figure {
  position: relative;
  width: 60%;
}
.row-teaser figure img {
  height: 100% !important;
  object-fit: cover;
}
.row-teaser figure figcaption {
  position: relative;
}
@media only screen and (max-width: 960px) {
  .row-teaser figure {
    width: 100%;
  }
}
@media only screen and (max-width: 763px) {
  .row-teaser figure img {
    height: auto !important;
  }
}
.row-teaser article {
  padding: 80px;
}
.row-teaser article h1,
.row-teaser article h2 {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  padding-left: 0;
}
.row-teaser article p {
  color: var(--secondary-color);
  font-size: 1.375rem;
  line-height: 160%;
  font-weight: 500;
}
@media only screen and (min-width: 960px) and (max-width: 1800px) {
  .row-teaser article h1,
  .row-teaser article h2 {
    font-size: 3.333vw;
  }
  .row-teaser article p {
    font-size: 1.222vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-teaser article {
    padding: 40px;
  }
  .row-teaser article h1,
  .row-teaser article h2 {
    font-size: 7vw;
  }
  .row-teaser article p {
    font-size: 4vw;
  }
}
@media only screen and (max-width: 763px) {
  .row-teaser article h1,
  .row-teaser article h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .row-teaser article {
    padding: 30px;
  }
}
.row-teaser .article-wrap {
  background: var(--color-lightgrey);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  position: relative;
  width: 40%;
}
@media only screen and (max-width: 960px) {
  .row-teaser .article-wrap {
    width: 100%;
  }
}
.row-teaser.is-newsteaser h2 {
  font-size: 2.5rem;
}
.row-teaser.is-newsteaser p {
  color: inherit;
  font-size: 1.125rem;
}
.row-teaser.is-newsteaser time {
  font-size: 0.75rem;
  display: block;
  font-weight: 500;
  color: #fff;
  background: var(--secondary-color);
  position: absolute;
  text-transform: uppercase;
  left: calc(100% + 20px);
  top: 20px;
  padding: 6px 10px;
  border-radius: 20px;
  line-height: 100%;
  white-space: nowrap;
}
@media only screen and (min-width: 960px) and (max-width: 1800px) {
  .row-teaser.is-newsteaser h2 {
    font-size: 2.222vw;
  }
}
@media only screen and (max-width: 960px) {
  .row-teaser.is-newsteaser h2 {
    font-size: 5vw;
  }
  .row-teaser.is-newsteaser time {
    left: 20px;
    top: -50px;
  }
}
.row-teaser.is-newsheader .content-width {
  flex-direction: column;
}
.row-teaser.is-newsheader .content-width figure,
.row-teaser.is-newsheader .content-width .article-wrap {
  width: 100%;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-image h2 {
  font-size: 2.5rem;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.row-image figure {
  position: relative;
  overflow: hidden;
}
.row-image figure img {
  display: block;
  margin: 0 auto;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
.row-image figure figcaption {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  max-width: calc(100% - 40px);
  line-height: 120%;
}
@media only screen and (max-width: 960px) {
  .row-image figure {
    height: 350px;
  }
}
@media only screen and (max-width: 960px) {
  #mainContent:has(.row-news) .row-image:first-child {
    margin-bottom: 0;
  }
}
/* -- Collage -- */
.row-heroimg .hero-img {
  background: var(--color-lightgrey);
  display: flex;
  flex-direction: row;
  margin: 0 80px;
}
@media only screen and (max-width: 1120px) {
  .row-heroimg .hero-img {
    margin: 0 60px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 960px) {
  .row-heroimg .hero-img {
    margin: 0 30px;
  }
}
@media only screen and (max-width: 763px) {
  .row-heroimg .hero-img {
    margin: 0;
  }
}
.row-heroimg article {
  flex: 1;
  padding: 80px;
}
.row-heroimg article h2 {
  padding-left: 0;
  font-size: 2.5rem;
  margin-bottom: 40px;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.row-heroimg article h3 {
  text-transform: uppercase;
  font-size: 1.875rem;
  margin-bottom: 45px;
}
.row-heroimg article p {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1600px) {
  .row-heroimg article {
    width: 50%;
  }
}
@media only screen and (max-width: 1400px) {
  .row-heroimg article {
    padding: 40px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-heroimg article {
    order: 1;
    width: auto;
  }
}
@media only screen and (max-width: 763px) {
  .row-heroimg article {
    padding: 30px;
  }
  .row-heroimg article h2 {
    font-size: 1.563rem;
    margin-bottom: 20px;
  }
  .row-heroimg article h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .row-heroimg article p {
    margin-bottom: 20px;
  }
}
.row-heroimg figure {
  padding-bottom: 80px;
}
.row-heroimg figure img {
  display: block;
}
@media only screen and (max-width: 1120px) {
  .row-heroimg figure {
    width: 100%;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 960px) {
  .row-heroimg figure {
    order: 0;
  }
}
/* -- Collage -- */
.row-collage {
  overflow: hidden;
}
.row-collage h2 {
  font-size: 2.5rem;
}
.row-collage .content-width.wide {
  max-width: 1800px;
  padding: 0;
}
.row-collage figure {
  position: relative;
  overflow: hidden;
}
.row-collage figure img {
  display: block;
  position: relative;
  width: 100%;
}
.row-collage figure figcaption {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  max-width: calc(50% - 40px);
  line-height: 120%;
}
.row-collage figure + figure {
  margin-top: 50px;
}
@media only screen and (max-width: 763px) {
  .row-collage figure figcaption {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 960px) {
  .row-collage .grid .col {
    margin-bottom: 25px;
  }
}
.row-collage[data-count="2"] .grid .col:last-child {
  padding-top: 120px;
}
@media only screen and (max-width: 960px) {
  .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"] h2 {
  max-width: var(--layout-width);
  padding: 0 200px;
}
@media only screen and (max-width: 1400px) {
  .row-collage[data-count="3"] h2 {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-collage[data-count="3"] h2 {
    padding: 0 90px;
  }
}
@media only screen and (min-width: 961px) {
  .row-collage[data-count="3"] .grid .col:nth-child(2) {
    padding-top: 120px;
  }
  .row-collage[data-count="3"] .grid .col:nth-child(3) {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 960px) {
  .row-collage[data-count="3"] h2 {
    padding: 0 40px;
  }
  .row-collage[data-count="3"] .grid .col {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid .col-1-3 {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .row-collage[data-count="3"] .grid:has(figcaption) .col {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid:has(figcaption) .col-1-3 {
    flex-direction: column;
  }
  .row-collage[data-count="3"] figure {
    flex: 1;
  }
  .row-collage[data-count="3"] figure + figure {
    margin-top: 0;
    flex: 1;
  }
}
@media only screen and (max-width: 820px) {
  .row-collage[data-count="3"] h2 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 960px) {
  .row-collage[data-count="3"] .grid,
  .row-collage[data-count="4"] .grid {
    margin: 0 -12.5px;
  }
  .row-collage[data-count="3"] .grid .col-1-2,
  .row-collage[data-count="4"] .grid .col-1-2 {
    padding: 0 12.5px;
  }
  .row-collage[data-count="3"] .grid:has(figcaption) .col,
  .row-collage[data-count="4"] .grid:has(figcaption) .col {
    width: 100%;
  }
  .row-collage[data-count="3"] figure + figure,
  .row-collage[data-count="4"] figure + figure {
    margin-top: 0;
    flex: 1;
  }
}
@media only screen and (max-width: 960px) {
  .row-collage[data-count="5"] .grid {
    margin: 0 -12.5px;
  }
  .row-collage[data-count="5"] .grid .col {
    padding: 0 12.5px;
  }
  .row-collage[data-count="5"] .grid .col-1-3,
  .row-collage[data-count="5"] .grid .col-2-3 {
    width: 100%;
  }
  .row-collage[data-count="5"] .grid .col-1-3 {
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .row-collage[data-count="5"] .grid .col-1-3 figure {
    flex: 1;
  }
  .row-collage[data-count="5"] .grid:has(figcaption) .col {
    width: 100%;
  }
  .row-collage[data-count="5"] .grid:has(figcaption) .col-1-3 {
    flex-direction: column;
  }
  .row-collage[data-count="5"] figure + figure {
    margin-top: 0;
    flex: 1;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-headline {
  margin-bottom: -60px;
  padding-top: 160px;
}
@media only screen and (max-width: 1400px) {
  .row-headline {
    padding-top: 80px;
  }
}
.row-headline h1 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 2.5rem;
  -webkit-hypens: auto;
  hyphens: auto;
}
.row-headline.is-large h1 {
  font-size: 3.75rem;
}
@media only screen and (max-width: 763px) {
  .row-headline h1 {
    font-size: 2.1888rem;
  }
  .row-headline.is-large h1 {
    font-size: 2.5rem;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-text .content-width {
  margin: 0 auto;
}
.row-text .content-width article {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  grid-template-columns: 33.333333% 66.666666%;
}
.row-text .content-width article h2,
.row-text .content-width article blockquote {
  padding-left: 0;
  font-size: 2.188rem;
  margin-bottom: 35px;
  font-family: var(--headline-font);
  margin-top: -8px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: var(--headline-line-height);
  -webkit-hyphens: auto;
  hyphens: auto;
}
.row-text .content-width article h2:last-child,
.row-text .content-width article blockquote:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 763px) {
  .row-text .content-width article h2,
  .row-text .content-width article blockquote {
    margin-bottom: 20px;
    font-size: 1.563rem;
  }
}
.row-text .content-width article h2 {
  font-size: 2.5rem;
}
@media only screen and (max-width: 763px) {
  .row-text .content-width article h2 {
    font-size: 2.188rem;
  }
}
@media only screen and (max-width: 1120px) {
  .row-text .content-width article {
    grid-template-columns: calc(40% - 20px) calc(60% - 20px);
  }
}
@media only screen and (max-width: 960px) {
  .row-text .content-width article {
    gap: 20px;
  }
}
.row-text .content-width article .author > figure {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.row-text .content-width article .author > figure .avatar {
  position: relative;
  min-width: 100px;
}
.row-text .content-width article .author > figure .avatar img {
  display: block;
  border-radius: 50%;
}
.row-text .content-width article .author > figure .avatar::before {
  position: absolute;
  right: 0;
  top: -5px;
  color: var(--primary-color);
  font-size: 36px;
}
@media only screen and (max-width: 1240px) {
  .row-text .content-width article .author > figure .avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .row-text .content-width article .author > figure .avatar::before {
    font-size: 20px;
  }
}
.row-text .content-width article .author > figure figcaption {
  padding-top: 0;
  text-transform: uppercase;
}
.row-text .content-width article .author > figure figcaption strong,
.row-text .content-width article .author > figure figcaption small {
  display: block;
}
.row-text .content-width article .author > figure figcaption strong {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.row-text .content-width article .author > figure figcaption small {
  color: var(--color-grey);
  font-size: 1.125rem;
}
.row-text .content-width article > figure,
.row-text .content-width article .article-quote,
.row-text .content-width article .article-meta,
.row-text .content-width article .article-links,
.row-text .content-width article .article-downloads,
.row-text .content-width article .article-head {
  padding-left: 80px;
  position: relative;
}
.row-text .content-width article > figure::before,
.row-text .content-width article .article-quote::before,
.row-text .content-width article .article-meta::before,
.row-text .content-width article .article-links::before,
.row-text .content-width article .article-downloads::before,
.row-text .content-width article .article-head::before {
  content: "";
  position: absolute;
  width: 120px;
  right: 100%;
  height: 2px;
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-text .content-width article > figure::before,
  .row-text .content-width article .article-quote::before,
  .row-text .content-width article .article-meta::before,
  .row-text .content-width article .article-links::before,
  .row-text .content-width article .article-downloads::before,
  .row-text .content-width article .article-head::before {
    display: none;
  }
}
@media only screen and (max-width: 1400px) {
  .row-text .content-width article > figure,
  .row-text .content-width article .article-quote,
  .row-text .content-width article .article-meta,
  .row-text .content-width article .article-links,
  .row-text .content-width article .article-downloads,
  .row-text .content-width article .article-head {
    padding-left: 40px;
  }
}
.row-text .content-width article > figure:last-child {
  grid-area: 4 / 1 / 5 / 2;
}
.row-text .content-width article .article-quote {
  padding-bottom: 40px;
}
@media only screen and (max-width: 763px) {
  .row-text .content-width article .article-quote {
    padding-bottom: 15px;
    padding-left: 0;
  }
}
.row-text .content-width article .article-quote:first-child {
  grid-area: 1 / 1 / 2 / 2;
}
.row-text .content-width article .article-quote:nth-child(4) {
  grid-area: 5 / 1 / 6 / 2;
}
.row-text .content-width article .article-head {
  grid-area: 1 / 1 / 2 / 2;
  padding-bottom: 40px;
}
@media only screen and (max-width: 763px) {
  .row-text .content-width article .article-head {
    padding-bottom: 15px;
  }
}
.row-text .content-width article .article-head .article-downloads,
.row-text .content-width article .article-head .article-quote {
  padding-left: 0;
}
.row-text .content-width article .article-head .article-downloads::before,
.row-text .content-width article .article-head .article-quote::before {
  display: none;
}
.row-text .content-width article .article-content {
  grid-area: 1 / 2 / 3 / 3;
  padding-left: 70px;
  padding-right: 40px;
  margin-top: -5px;
}
.row-text .content-width article .article-content ul.checklist {
  color: var(--secondary-color);
  padding-left: 0;
  padding-top: 0;
  margin-top: -5px;
}
.row-text .content-width article .article-content ul.checklist li {
  position: relative;
  padding-left: 35px;
  font-size: 1.375rem;
  line-height: 160%;
  margin-bottom: 30px;
}
.row-text .content-width article .article-content ul.checklist li:last-child {
  margin-bottom: 0;
}
.row-text .content-width article .article-content ul.checklist li::before {
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1400px) {
  .row-text .content-width article .article-content {
    padding-left: 40px;
  }
}
.row-text .content-width article .article-links,
.row-text .content-width article .article-downloads {
  grid-area: 2 / 1 / 3 / 2;
}
.row-text .content-width article .article-links h3,
.row-text .content-width article .article-downloads h3 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: -5px;
}
.row-text .content-width article .article-links ul,
.row-text .content-width article .article-downloads ul {
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 0;
}
.row-text .content-width article .article-links ul li::before,
.row-text .content-width article .article-downloads ul li::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
}
.row-text .content-width article .article-links ul li:last-child,
.row-text .content-width article .article-downloads ul li:last-child {
  margin-bottom: 0;
}
.row-text .content-width article .article-links ul li a,
.row-text .content-width article .article-downloads ul li a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.row-text .content-width article .article-links ul li a:hover,
.row-text .content-width article .article-downloads ul li a:hover {
  color: var(--primary-color);
}
.row-text .content-width article .article-links ul li a small,
.row-text .content-width article .article-downloads ul li a small {
  color: var(--color-grey);
  font-size: 1.125rem;
}
.row-text .content-width article .article-links {
  grid-area: 5 / 1 / 4 / 2;
}
@media only screen and (max-width: 960px) {
  .row-text .content-width article {
    display: flex;
    flex-direction: column;
  }
  .row-text .content-width article .article-meta,
  .row-text .content-width article .article-content,
  .row-text .content-width article .article-downloads,
  .row-text .content-width article .article-head {
    padding-left: 0;
  }
  .row-text .content-width article .article-content {
    padding-right: 0;
  }
  .row-text .content-width article .article-downloads {
    margin-top: 40px;
  }
  .row-text .content-width article .article-meta {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 960px) {
  .row-breadcrumb + .row-text {
    padding-top: 50px;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-text-image {
  overflow: hidden;
}
.row-text-image .content-width {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.row-text-image .content-width h2 {
  padding-left: 0;
  font-size: 2.5rem;
  margin-bottom: 50px;
  margin-top: -10px;
}
.row-text-image .content-width figure {
  position: relative;
  flex: 0 0 auto;
  width: calc(33.333333% - 50px);
  margin-bottom: auto;
  margin-left: 80px;
}
.row-text-image .content-width figure img {
  display: block;
}
.row-text-image .content-width figure::before {
  content: "";
  position: absolute;
  width: 120px;
  right: calc(100% + 80px);
  height: 2px;
  background: var(--primary-color);
}
.row-text-image .content-width figure figcaption {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  max-width: calc(100% - 40px);
  line-height: 120%;
}
.row-text-image .content-width article {
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .row-text-image .content-width figure {
    margin-left: 40px;
    width: calc(33.333333% - 40px);
  }
  .row-text-image .content-width figure::before {
    right: calc(100% + 40px);
  }
}
@media only screen and (max-width: 960px) {
  .row-text-image .content-width {
    gap: 40px;
    flex-direction: column;
  }
  .row-text-image .content-width article {
    width: 100%;
    padding-left: 0;
  }
  .row-text-image .content-width figure {
    margin-left: 0;
    width: auto;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-quote {
  padding-top: 100px;
}
.row-quote article {
  margin-bottom: 50px;
}
.row-quote .quote-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
  padding: 80px;
  margin: 0 80px;
  background: var(--color-lightgrey);
}
@media only screen and (max-width: 1120px) {
  .row-quote .quote-wrapper {
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 40px;
  }
}
.row-quote blockquote {
  font-size: 2.188rem;
  line-height: 120%;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  flex: 1;
}
@media only screen and (max-width: 960px) {
  .row-quote blockquote {
    margin-right: 0;
    font-size: 1.563rem;
  }
}
.row-quote blockquote p:first-child {
  position: relative;
}
.row-quote .author {
  text-transform: uppercase;
  width: 33.333333%;
  flex: 0 0 auto;
}
.row-quote .author figure {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.row-quote .author figure .avatar {
  position: relative;
  min-width: 180px;
}
.row-quote .author figure .avatar img {
  display: block;
  border-radius: 50%;
}
.row-quote .author figure .avatar::before {
  color: var(--primary-color);
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 64px;
}
.row-quote .author figure figcaption {
  padding-top: 0;
}
.row-quote .author figure figcaption strong,
.row-quote .author figure figcaption small {
  display: block;
}
.row-quote .author figure figcaption strong {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.row-quote .author figure figcaption small {
  font-size: 1.125rem;
  color: var(--color-grey);
}
@media only screen and (max-width: 1600px) {
  .row-quote .author {
    width: 40%;
  }
}
@media only screen and (max-width: 1440px) {
  .row-quote .author {
    width: 50%;
  }
}
@media only screen and (max-width: 1120px) {
  .row-quote .author {
    width: auto;
  }
  .row-quote .author figure .avatar {
    min-width: 50px;
    height: 50px;
    width: 50px;
  }
  .row-quote .author figure .avatar::before {
    font-size: 20px;
  }
  .row-quote .author figure .avatar img {
    height: auto !important;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
#content-hub-map {
  overflow: hidden;
}
.row-map {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-map .content {
  height: 100%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 800px;
}
.row-map .content-width {
  position: relative;
  z-index: 10;
}
.row-map .content-width::before {
  content: "";
  position: absolute;
  right: calc(100% - 120px);
  top: 0;
  height: 100%;
  width: 120px;
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-map .content-width::before {
    width: 20px;
    right: calc(100% - 20px);
  }
}
.row-map .map-dsgvo {
  padding: 80px;
  height: 685px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-lightgrey);
}
.row-map .map-dsgvo h2 {
  padding-left: 0;
  margin-bottom: 50px;
}
.row-map .map-dsgvo p {
  margin-bottom: 50px;
}
@media only screen and (max-width: 960px) {
  .row-map .map-dsgvo {
    padding: 40px;
  }
}
.row-map .marker {
  width: 61px !important;
  height: 77px !important;
  background: url(../gfx/marker_city.svg);
  color: #fff;
  font-size: 24px;
  text-align: center;
}
.row-map .marker::before {
  padding-top: 17px;
  display: block;
}
.row-map .marker.marker-hasimg {
  background: url(../gfx/marker_image.svg);
}
.row-map .marker.marker-hasimg img {
  border-radius: 50%;
  position: relative;
  top: 10px;
  left: -2px;
}
.row-map .marker.marker-hasimg::before {
  display: none;
}
.row-map .map-wrap {
  position: relative;
}
.row-map .map-wrap iframe {
  display: block;
}
.row-map .map-options {
  position: relative;
  margin-top: auto;
}
.row-map .map-options .btn {
  position: absolute;
  right: 0;
  bottom: 100px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.row-map .mapboxgl-map {
  overflow: visible;
}
@media only screen and (max-width: 567px) {
  .row-map .mapboxgl-map {
    height: 50vh !important;
  }
}
.row-map .mapboxgl-canvas-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.row-map .mapboxgl-popup-content {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 467px;
}
.row-map .mapboxgl-popup-content .mapboxgl-popup-close-button {
  color: #FFFFFF;
  font-size: 34px;
  width: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 20px 20px 0 0;
}
.row-map .mapboxgl-ctrl-group {
  box-shadow: none !important;
  border-radius: 0;
  background: transparent;
  margin: 0 !important;
  left: -54px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  bottom: 20px;
  padding-top: 20px;
}
.row-map .mapboxgl-ctrl-group::before {
  content: "";
  height: 2px;
  background: #fff;
  position: absolute;
  width: 120px;
  top: 0;
  right: 0;
}
.row-map .mapboxgl-ctrl-group button {
  width: 24px;
  height: 24px;
  border-radius: 0;
  border: 0;
  font-size: 24px;
  color: #fff;
  background: transparent;
}
.row-map .mapboxgl-ctrl-group button::before {
  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;
}
.row-map .mapboxgl-ctrl-group button.mapboxgl-ctrl-zoom-in::before {
  content: "\e904";
}
.row-map .mapboxgl-ctrl-group button.mapboxgl-ctrl-zoom-out::before {
  content: "\e903";
}
.row-map .mapboxgl-ctrl-group button.mapboxgl-ctrl-compass::before {
  content: "\e917";
}
.row-map .mapboxgl-ctrl-group button:not(:disabled):hover {
  background: transparent;
  color: #000;
}
@media only screen and (max-width: 1400px) {
  .row-map .mapboxgl-ctrl-group {
    left: -35px;
  }
}
@media only screen and (max-width: 1120px) {
  .row-map .mapboxgl-ctrl-group {
    bottom: 40px;
    background: var(--primary-color);
    padding: 10px;
    left: 0;
  }
}
.row-map .gm-style .gm-style-iw-c {
  background: transparent;
  border-radius: 6px;
  padding: 0;
}
.row-map .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.row-map .gm-style .gm-style-iw-tc {
  display: none !important;
}
.row-map .gm-style button.gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important;
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
.row-video h2 {
  font-size: 2.5rem;
  padding-left: 80px;
}
@media only screen and (max-width: 960px) {
  .row-video h2 {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 763px) {
  .row-video h2 {
    padding-left: 0;
  }
}
.row-video .video {
  position: relative;
}
.row-video .video img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.row-video .video button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
  color: inherit;
  font-family: inherit;
}
.row-video .video button span {
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: 18px;
  position: absolute;
  right: 200px;
  top: 50%;
  margin-top: -50px;
  display: grid;
  justify-content: center;
  align-content: center;
}
@media only screen and (max-width: 960px) {
  .row-video .video button span {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    text-indent: 2px;
    right: auto;
    left: 50%;
    font-size: 1rem;
  }
}
.row-video .video button:focus span,
.row-video .video button:hover span {
  background: var(--secondary-color);
  color: #fff;
}
.row-video .video::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 120px;
  background: var(--primary-color);
}
@media only screen and (max-width: 960px) {
  .row-video .video::before {
    width: 20px;
  }
}
.row-video figure {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.row-video figure figcaption {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 0.875rem;
  max-width: calc(100% - 40px);
  line-height: 120%;
}
.row-video .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.row-video .video-wrap video,
.row-video .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.row-video .video-wrap video {
  border-radius: var(--border-radius);
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --table-padding: 20px 25px;
}
.table-wrap table {
  width: 100%;
  table-layout: fixed;
}
.table-wrap table th,
.table-wrap table td {
  padding: var(--table-padding);
  vertical-align: top;
}
.table-wrap table th:first-child,
.table-wrap table td:first-child {
  border-left: 0;
}
.table-wrap table th.highlight,
.table-wrap table td.highlight {
  border-right: 1px solid var(--color-green);
}
.table-wrap table th.bold,
.table-wrap table td.bold {
  font-weight: bold;
}
.table-wrap table th.italic,
.table-wrap table td.italic {
  font-style: italic;
}
.table-wrap table th.underline,
.table-wrap table td.underline {
  text-decoration: underline;
}
.table-wrap table th.left,
.table-wrap table td.left {
  text-align: left;
}
.table-wrap table th.center,
.table-wrap table td.center {
  text-align: center;
}
.table-wrap table th.right,
.table-wrap table td.right {
  text-align: right;
}
.table-wrap table thead {
  color: #fff;
  background: var(--primary-color);
}
.table-wrap table tbody tr th,
.table-wrap table tbody tr td {
  vertical-align: top;
  border-bottom: 2px solid var(--color-lightgrey);
}
.table-wrap table tbody tr th a,
.table-wrap table tbody tr td a {
  text-decoration: none;
}
.table-wrap table tbody tr th.highlight,
.table-wrap table tbody tr td.highlight {
  background: var(--color-lightgrey);
  border-bottom: 2px solid #fff;
}
.table-wrap table tbody tr:last-child td,
.table-wrap table tbody tr:last-child th {
  border-bottom: 0;
}
@media only screen and (max-width: 820px) {
  .table-wrap {
    overflow: auto;
  }
  .table-wrap table {
    width: auto;
    min-width: 100%;
  }
  .table-wrap table tbody th,
  .table-wrap table tbody td {
    min-width: 200px;
    padding: 20px 30px;
  }
}
.row-table {
  overflow: hidden;
}
.row-table h2 {
  font-size: 2.5rem;
}
.row-table:has(tfoot) {
  overflow: visible;
}
.row-table .caption {
  display: block;
  padding-top: 20px;
  text-align: right;
  font-size: 0.875rem;
}
@media only screen and (max-width: 763px) {
  .table-wrap {
    padding-right: 0;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
/* Custom Styles & Experimental  - */
/*
*
*   SECONDRED Boilerplate
*   Styles Import
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --color-ocker: #D5A71A;
  --color-ockerlight: #ECD798;
  --color-red: #AD0009;
  --color-lightred: #CF3E46;
  --color-cyan: #38967F;
  --color-darkgrey: #343531;
  --color-grey: #999A98;
  --color-midgrey: #ccc;
  --color-lightgrey: #ECECEC;
  --color-black: #20201E;
  --primary-color: var(--color-ocker);
  --secondary-color: var(--color-cyan);
  --text-color: var(--color-darkgrey);
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^='fade'][data-aos^='fade'].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos='fade-up'] {
  transform: translate3d(0, 100px, 0);
}
[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 400ms;
}
.is-red {
  color: #FF0000;
}
.no-results {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 100px 0;
  color: var(--color-midgrey);
  width: 100%;
}
.hidden {
  display: none !important;
}
.anchor {
  display: block;
  scroll-margin-top: 150px;
}
.mobi-content {
  display: none;
}
@media only screen and (max-width: 960px) {
  .mobi-content {
    display: block;
  }
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fill-header header.header {
  background: #fff !important;
}
body.error-404 main {
  display: flex;
  flex-direction: column;
}
.autosuggest-wrapper ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.autosuggest-wrapper ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 5px 0;
}
.autosuggest-wrapper ul li a span {
  font-weight: 700;
}
.autosuggest-wrapper ul li.active a {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.load-more {
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 763px) {
  .load-more {
    margin-top: 40px;
  }
}
/*
*
*   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;
}
.is-violet *:focus-visible,
dialog.dialog-overlay *:focus-visible,
.login-container *:focus-visible {
  outline: 2px solid #fff;
  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
    }
    .notyf__toast {
        animation: notyf-fadeinup 0.3s ease-in forwards !important;
    }
    .notyf__ripple {
        animation: ripple 0.4s ease-out forwards !important;
    }
    .notyf__message{animation: notyf-fadeinup 0.3s forwards !important}
    .notyf__dismiss {animation: notyf-fadeinleft 0.3s forwards !important}
    .notyf__dismiss-btn {    transition: opacity 0.2s ease, background-color 0.2s ease !important}
}
*/
@media (prefers-color-scheme: dark), (prefers-contrast: more) {
  /* Dark Mode styles go here */
}
/* - Pages - */
/* @import "pages/_start";
@import "pages/_news";
@import "pages/_content";
@import "pages/_contact";
*/

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