@charset "UTF-8";
/*
*
*   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: 'Source Sans 3', sans-serif;
  --font-size: 1rem;
  --body-color: #fff;
  --layout-width: 1400px;
  --layout-max-width: 1400px;
  --line-height: 1.5rem;
  --text-color: #000;
  --border-radius: 0;
  --box-shadow: none;
  /* - Content/Sidebar Styles - */
  --sidebar-width: 33.333333%;
  --sidebar-padding: 0;
  --content-width: 66.666666%;
  --content-padding: 0;
  /* - Margin & Padding - */
  --default-padding: 10px;
  --default-margin: 20px;
  --breadcrumb-height: 50px;
  /* - Headline - Typografie  - */
  --headline-font: 'Source Sans 3', sans-serif;
  --headline-font-weight: normal;
  --headline-line-height: 125%;
  --headline-margin: 0 0 30px 0;
  --headline-1-size: 3.75rem;
  --headline-1-clamp-size: clamp(2.5rem, 4.143rem, 3.75rem);
  --headline-2-size: 2.5rem;
  --headline-2-clamp-size: clamp(1.8rem, 2.4vw, 2.2rem);
  --headline-3-size: 1.875rem;
  --headline-3-clamp-size: clamp(1.5rem, 2.3vw, 2rem);
  --headline-4-size: 1.563rem;
  --headline-4-clamp-size: clamp(1.4rem, 2vw, 1.8rem);
  --headline-5-size: 1.5em;
  --headline-5-clamp-size: clamp(1.3rem, 1.7vw, 1.5rem);
  --headline-6-size: 1.2em;
  --headline-6-clamp-size: clamp(1.1rem, 1.3vw, 1.2rem);
  /* - Color - */
  --teaser-caption-bg: var(--primary-color);
  --teaser-caption-color: #fff;
  --primary-color: var(--color-blue);
  --secondary-color: var(--color-orange);
  --link-color: var(--color-blue);
  --fill-color: #eee;
  --border-color: #eee;
  --color-card-blue: var(--color-blue);
  --color-blue-light: #e5f4fa;
  --colorHighlight: #008BCC;
  --colorSuccess: #6A9618;
  --colorWarning: #F59400;
  --colorAlert: #D90000;
  --colorGrey: #333333;
  --colorDisabled: #DDD;
  /* - Contentpart Padding - */
  --cp-padding: 40px 20px;
  /* -- Flexgrid -- */
  --flexgrid-padding: 0 20px;
  --flexgrid-margin: 0 -20px 40px;
  /* -- Default Animation -- */
  --transition: 450ms cubic-bezier(0.22, 1, 0.36, 1);
  --header-menu-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.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
*
*/
/* source-sans-3-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/source-sans-3-v9-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-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: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v9-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-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: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-3-v9-latin-600.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-clock:before {
  content: "\e923";
}
.icon-print:before {
  content: "\e904";
}
.icon-rewind:before {
  content: "\e909";
}
.icon-pin:before {
  content: "\e900";
}
.icon-play:before {
  content: "\e901";
}
.icon-pause:before {
  content: "\e902";
}
.icon-quote:before {
  content: "\e903";
}
.icon-filter:before {
  content: "\e905";
}
.icon-down:before {
  content: "\e906";
}
.icon-label:before {
  content: "\e907";
}
.icon-cross:before {
  content: "\e908";
}
.icon-datepicker:before {
  content: "\e90a";
}
.icon-arrow-rt:before {
  content: "\e90b";
}
.icon-user:before {
  content: "\e90c";
}
.icon-share:before {
  content: "\e90e";
}
.icon-bell:before {
  content: "\e90f";
}
.icon-dll:before {
  content: "\e910";
}
.icon-zoom-out:before {
  content: "\e911";
}
.icon-fullscreen:before {
  content: "\e912";
}
.icon-grid:before {
  content: "\e913";
}
.icon-zoom-in:before {
  content: "\e914";
}
.icon-search:before {
  content: "\e915";
}
.icon-right:before {
  content: "\e916";
}
.icon-left:before {
  content: "\e917";
}
.icon-lang:before {
  content: "\e918";
}
.icon-mail:before {
  content: "\e919";
}
.icon-phone:before {
  content: "\e91a";
}
.icon-mobile:before {
  content: "\e91b";
}
.icon-twitter:before {
  content: "\e91c";
}
.icon-facebook:before {
  content: "\e91d";
}
.icon-linkedin:before {
  content: "\e91e";
}
.icon-instagram:before {
  content: "\e91f";
}
.icon-doc:before {
  content: "\e920";
}
.icon-youtube:before {
  content: "\e922";
}
.icon-whatsapp:before {
  content: "\e90d";
}
.icon-xing:before {
  content: "\e921";
}
/*
*
*   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-green);
}
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 a[rel*='noopener'],
h2 a[rel*='noopener'],
h3 a[rel*='noopener'],
h4 a[rel*='noopener'],
h5 a[rel*='noopener'],
h6 a[rel*='noopener'] {
  color: var(--link-color);
}
h1.styleless a,
h2.styleless a,
h3.styleless a,
h4.styleless a,
h5.styleless a,
h6.styleless a {
  color: var(--link-color);
}
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: 5px;
}
ol {
  margin-bottom: var(--default-margin);
  padding-left: 23px;
}
ol li {
  margin-bottom: 5px;
}
ol:last-child {
  margin-bottom: 0;
}
address {
  font-style: normal;
}
/* -- Table -- */
hr {
  border: 0;
  border-bottom: 1px solid #DDD;
  margin: 40px 0;
}
/* -- Table -- */
table {
  border: 0;
  margin-bottom: var(--default-margin);
  table-layout: fixed;
  border-collapse: collapse;
}
table th,
table td {
  text-align: left;
  vertical-align: top;
}
table:last-child {
  margin-bottom: 0;
}
pre code {
  background-color: #eee;
  border: 1px solid #999;
  display: block;
  padding: 20px;
  margin-bottom: var(--default-margin);
}
/*
*
*   SECONDRED Boilerplate
*   Debug Style
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
/* Custom Focus */
.cookie-bar:focus-visible {
  outline: none;
}
.cookie-bar:focus-visible .content-width {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.card-related:focus-within {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.custom-select:focus-within .selected-options,
.privacy-container input:focus-visible + label em,
.fui-checkbox input:focus-visible + label::before,
.fui-radio input:focus-visible + label::before,
.form-radio input[type="radio"]:focus-visible + label,
.form-radio input[type="checkbox"]:focus-visible + label em {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.privacy-container .form-radio input:focus-visible + label {
  outline: none;
}
/* -- Skip Nav -- */
.nav-skip-wrap {
  position: relative;
}
.nav-skip {
  position: fixed;
  top: -500px;
  left: 30px;
  padding: 1rem;
  z-index: 10000;
}
.nav-skip:focus-within {
  top: 0;
}
.nav-skip a {
  padding: 1rem;
  display: block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  margin-bottom: 1em;
}
.nav-skip a:hover,
.nav-skip a:focus {
  color: var(--color-blue);
}
.nav-skip a:last-child {
  margin-bottom: 0;
}
body:has(.cookie-bar[style*="display: none"]) a.focus-cookiebar {
  display: none;
}
@media (hover: hover), (pointer: fine) {
  body.focus-within {
    /* display: flex;
     flex-direction: column; */
    /*   .cookie-bar{ order: 0}
       .container { order: 1; min-height: auto}*/
  }
  body.focus-within .header,
  body.focus-within .cookie-bar {
    position: relative;
  }
  body.focus-within .row-tabs nav.tabs,
  body.focus-within .accordion details summary {
    position: static;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media (prefers-color-scheme: dark), (prefers-contrast: more) {
  /* Dark Mode styles go here */
}
@media (prefers-contrast: more), (forced-colors: active) {
  :root {
    --color-grey: #555;
    --color-blue: #005274;
    --color-midgrey: #575757;
    --color-orange: #bf5200;
    --color-darkgrey: #444;
    --input-border: 1px solid #333;
    --input-bg: rgba(149, 157, 169, 0.1);
    --input-placeholder-color: #222;
    --fui-check-label-border: 1px solid #333;
    --fui-error: #AD0000;
    --fui-submit-btn-bg-color: #AD0000;
    --fui-error-color: #AD0000;
    --fui-required-color: #AD0000;
    --fui-submit-btn-border: 1px solid #AD0000;
  }
  .row-teaser figure {
    background: #000;
  }
  .breadcrumb a {
    color: black;
  }
  .row-overview,
  body.has-gradient .container,
  #mainContent > .row-swiper:first-child {
    background-image: url(../gfx/overview-bg.png);
  }
  nav.optmenu ul li button:hover,
  nav.optmenu ul li button:focus,
  nav.topmenu ul li a:hover,
  nav.topmenu ul li a:focus,
  .row-filter .btn.btn-blank:hover,
  .row-filter .btn.btn-blank:focus {
    background: rgba(0, 0, 0, 0.5);
  }
  .row-text-image .col-img .desc-wrap article {
    color: #fff;
  }
  #mainmenu > ul li.has-sub.open > a {
    background: rgba(0, 0, 0, 0.8);
  }
  .row-wizard .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-swiper .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-related .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag,
  .row-gallery .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag {
    background: #000;
  }
  .fui-radio label::before {
    border: 1px solid #949494;
  }
  .form-radio label em {
    border-color: #949494;
  }
}
@media (prefers-reduced-transparency) {
  #mainmenu {
    background: #fff;
  }
}
/*
  .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;
  }
}
:root {
  --gridGutter: 50px;
  --colMarginBottom: 20px;
  --layout-tablet: 760px;
  --layout-responsive: 920px;
  --layout-desktop: 1200px;
}
.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
  flex: 0 0 auto;
}
.grid.center {
  justify-content: center;
}
.grid .col {
  width: 100%;
  margin-bottom: var(--colMarginBottom);
  padding: 0 15px;
}
.grid .col-1-1 {
  width: 100%;
}
.grid .col-1-2 {
  width: 50%;
}
.grid .col-1-3 {
  width: 33.33333%;
}
.grid .col-2-3 {
  width: 66.66666%;
}
.grid .col-1-4 {
  width: 25%;
}
.grid .col-3-4 {
  width: 75%;
}
.grid .col-1-5 {
  width: 20%;
}
.grid .col-2-5 {
  width: 40%;
}
.grid .col-3-5 {
  width: 60%;
}
.grid .col-4-5 {
  width: 80%;
}
.row {
  font-weight: 300;
  padding: 0 30px 100px;
}
.row[data-background-color] {
  padding-block: 50px;
  background-image: none;
}
.row[data-background-color="white"] {
  background-color: #fff;
}
.row[data-background-color="lightblue"] {
  background-color: var(--color-blue-light);
}
.row h2 {
  position: relative;
  padding-top: 30px;
  font-size: 2.5rem;
  font-weight: 600;
  margin-left: 60px;
  hyphens: auto;
}
.row h2::before {
  width: 100px;
  height: 2px;
  background: var(--color-blue);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
}
@media only screen and (max-width: 820px) {
  .row h2 {
    margin-left: 20px;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 563px) {
  .row h2 {
    font-size: 1.8rem;
  }
}
.row article h2 {
  margin-left: 0;
}
.row article p a {
  font-weight: normal;
  text-decoration: none;
}
.row article p a:hover {
  text-decoration: underline;
}
.row article p em {
  color: var(--color-darkgrey);
}
.row-breadcrumb {
  padding: 10px 30px 10px;
  margin-top: calc(var(--breadcrumb-height) * -1);
}
.row-breadcrumb + .row {
  padding-block-start: 20px;
}
.row-breadcrumb .content-width {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.row-breadcrumb .sharebar {
  display: inline-flex;
  flex-direction: row;
}
.row-breadcrumb .sharebar button {
  height: 34px;
  background: transparent;
  border: 0;
  color: #737373;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.row-breadcrumb .sharebar button span {
  font-size: 0.875rem;
  padding-left: 15px;
}
.row-breadcrumb .sharebar button:hover {
  color: var(--color-blue);
}
.row-breadcrumb .sharebar ul {
  list-style: none;
  display: none;
  flex-direction: row;
  padding-left: 15px;
  margin-bottom: 0;
  font-weight: normal;
}
.row-breadcrumb .sharebar ul li {
  margin-bottom: 0;
}
.row-breadcrumb .sharebar ul li a {
  text-decoration: none;
  width: 34px;
  height: 34px;
  color: #737373;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
}
.row-breadcrumb .sharebar ul li a:hover {
  color: #fff;
}
.row-breadcrumb .sharebar ul li a.icon-twitter:hover {
  background: #1DA1F2;
}
.row-breadcrumb .sharebar ul li a.icon-linkedin:hover {
  background: #0072b1;
}
.row-breadcrumb .sharebar ul li a.icon-xing:hover {
  background: #126567;
}
.row-breadcrumb .sharebar ul li a.icon-whatsapp:hover {
  background: #25D366;
}
.row-breadcrumb .sharebar ul li a.icon-facebook:hover {
  background: #4267B2;
}
.row-breadcrumb .sharebar.open ul {
  display: flex;
}
.row-pageopt {
  background-image: url(../gfx/pageopt-bg-lft.png), url(../gfx/pageopt-bg-rt.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.row-pageopt .card {
  height: 100%;
}
@media only screen and (max-width: 1120px) {
  .row-pageopt .grid .col-1-2 {
    width: 100%;
  }
  .row-pageopt .grid .col-1-4 {
    width: 50%;
  }
}
@media only screen and (max-width: 820px) {
  .row-pageopt .grid .col-1-2,
  .row-pageopt .grid .col-1-4 {
    width: 100%;
  }
}
.row-external h2 {
  margin-left: 0;
}
.row-external .privacy-container {
  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;
}
/* 
*
*   SECONDRED Boilerplate
*   Header
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Logo Style - */
  --logo-width: 188px;
  --logo-height: 80px;
  --logo-bg: #fff;
  --logo-shadow: none;
  --logo-align: right;
  --logo-small-width: 188px;
  --logo-small-height: 40px;
  /* - Header Style  - */
  --header-shadow: none;
  --header-height: 100px;
  --header-small-height: 75px;
  --header-color: transparent;
  --header-position: sticky;
  --header-top-pos: 0;
  --header-padding: 0;
}
header.header {
  position: var(--header-position);
  box-shadow: var(--header-shadow);
  background: var(--header-color);
  top: var(--header-top-pos);
  transition: background 0.25s ease-in-out;
  z-index: 777;
  color: #fff;
}
header.header .content-width {
  height: var(--header-height);
}
header.header .hashtag {
  position: absolute;
  left: 110px;
  font-size: 28px;
  top: 26px;
  font-weight: 300;
}
header.header .inner {
  height: var(--header-height);
  padding: var(--header-padding);
}
header.header .content-width {
  position: relative;
}
@media only screen and (max-width: 1400px) {
  header.header .content-width {
    padding: 0 30px;
  }
  header.header .hashtag {
    left: 140px;
  }
}
@media only screen and (max-width: 1120px) {
  header.header .content-width {
    height: 75px;
  }
  header.header .hashtag {
    left: 120px;
    top: 20px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 414px) {
  header.header .hashtag {
    left: 110px;
    font-size: 1.25rem;
  }
  header.header:has(.icon-lang) .hashtag {
    font-size: 1rem;
  }
}
.landing-page header.header .hashtag {
  left: 0;
}
@media only screen and (max-width: 1400px) {
  .landing-page header.header .hashtag {
    left: 30px;
  }
}
.logo {
  float: var(--logo-align);
  padding-top: 0;
  position: absolute;
  right: 0;
  top: 0;
  /*
  @media only screen and (max-width: 1280px) {
      padding-top: 10px;
      img { height: 60px !important}
  }
  */
}
.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);
}
.logo img {
  background: #fff;
}
@media only screen and (max-width: 1440px) {
  .logo {
    right: 30px;
  }
}
@media only screen and (max-width: 1120px) {
  .logo a {
    padding: 0 10px;
    width: 130px;
    height: 60px;
  }
  .logo a img {
    height: auto !important;
  }
}
/* -- Fixed Header -- */
.small-header .nav-placeholder {
  display: none;
}
.small-header .container::before {
  content: "";
  height: 125px;
  display: block;
}
.small-header header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #CED2DB;
}
.small-header header .inner {
  height: 70px;
}
.small-header .logo {
  padding-top: 10px;
}
.small-header .logo a {
  height: 60px;
  background-size: contain;
}
.small-header .logo img {
  width: auto !important;
  height: 45px;
}
.small-header .hamburger {
  margin-top: 15px;
  min-width: 40px;
  height: 40px;
}
.small-header .hamburger em {
  width: 20px;
  margin-left: -10px;
}
.small-header .topmenu {
  padding-top: 15px;
}
.small-header .topmenu .icon-profile {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
@media only screen and (max-width: 1280px) {
  /* header{
       .size {height: var(--header-small-height)}
   }
   .logo a {width: var(--logo-small-width); height: var(--logo-small-height)}
   */
  .small-header header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #CED2DB;
  }
  .small-header header .inner {
    height: 70px;
  }
  .small-header .logo a {
    height: 60px;
    background-size: contain;
  }
  .small-header .logo img {
    width: auto !important;
    height: 45px !important;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Menu Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --hamburger-bg-color: transparent;
  --hamburger-position: left;
  --hamburger-height: 80px;
  --hamburger-width: 80px;
  --hamburger-line-color: #000;
  /* - Menu-Style - */
  --menu-float: left;
  --menu-fontsize: 3.125rem;
  --menu-padding: 28px 0 0 0;
}
.inline ul {
  margin: 0;
  padding: 0;
}
.inline ul li {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hamburger {
  display: flex;
  float: var(--hamburger-position);
  background: var(--hamburger-bg-color);
  min-width: var(--hamburger-width);
  height: var(--hamburger-height);
  margin-left: 0;
  border: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.hamburger .burger {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
}
.hamburger em {
  width: 34px;
  height: 2px;
  background: var(--hamburger-line-color);
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -17px;
  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;
}
.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 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: 1120px) {
  .hamburger {
    height: 60px;
    min-width: 60px;
  }
}
nav.optmenu {
  position: absolute;
  right: 230px;
  top: 0;
  padding-top: 28px;
}
nav.optmenu button {
  display: grid;
  justify-content: center;
  align-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: var(--color-menu-black);
  border: 0;
  background: transparent;
  font-size: 20px;
}
nav.optmenu button:hover,
nav.optmenu button:focus {
  color: var(--color-green);
}
@media only screen and (max-width: 960px) {
  nav.optmenu {
    right: 30px;
  }
}
@media only screen and (max-width: 1120px) {
  nav.optmenu {
    padding-top: 20px;
    right: 180px;
  }
}
@media only screen and (max-width: 567px) {
  nav.optmenu {
    padding-top: 17px;
  }
}
nav.topmenu {
  position: absolute;
  left: 85px;
  top: 0;
  /*border-left: 3px solid rgba(0,0,0,.1); */
  padding-top: 30px;
  right: 265px;
}
nav.topmenu ul li {
  margin-left: 26px;
}
nav.topmenu ul li a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-menu-black);
  padding: 5px 10px;
}
nav.topmenu ul li a:hover,
nav.topmenu ul li a:focus {
  color: var(--color-green);
}
@media only screen and (max-width: 1400px) {
  nav.topmenu {
    left: 115px;
  }
}
@media only screen and (max-width: 1120px) {
  nav.topmenu {
    right: 225px;
    padding-top: 10px;
    min-height: 60px;
    display: none;
  }
  nav.topmenu ul li {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 820px) {
  nav.topmenu {
    display: none;
  }
}
/* -- Topmenu -- */
.breadcrumb {
  padding-left: 110px;
}
@media only screen and (max-width: 820px) {
  .breadcrumb {
    padding-left: 0;
  }
}
.breadcrumb ul {
  padding: var(--default-padding);
  margin: 0 auto;
  font-weight: normal;
  font-size: 0.875rem;
  padding-left: 0;
  color: var(--color-blue);
}
.breadcrumb ul li {
  margin-right: 10px;
}
.breadcrumb ul li::after {
  content: " ";
  margin-left: 10px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #737373;
  border-top: 1px solid #737373;
  transform: rotate(45deg);
  display: inline-block;
  position: relative;
  top: -2px;
}
.breadcrumb ul li:last-child::after {
  display: none;
}
.breadcrumb a {
  display: inline-block;
  text-decoration: none;
  color: #737373;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
  color: var(--color-blue);
  text-decoration: underline;
}
#mainmenu {
  font-size: 1.25rem;
}
#mainmenu ul {
  padding-top: 110px;
  margin-bottom: 0;
}
#mainmenu a {
  transition: color ease 0.2s, background-color ease 0.2s;
}
#mainmenu > ul {
  position: relative;
}
#mainmenu > ul li {
  padding-left: 30px;
  margin-bottom: 0;
}
#mainmenu > ul li a {
  color: #000;
  display: block;
  text-decoration: none;
  padding: 15px 20px;
}
#mainmenu > ul li a:hover,
#mainmenu > ul li a:focus {
  color: #000;
  background: color-mix(in srgb, var(--color-green) 50%, transparent);
}
#mainmenu > ul li a em {
  width: 14px;
  height: 14px;
  border-right: 1px solid #737373;
  border-top: 1px solid #737373;
  transform: rotate(45deg);
  display: block;
  float: right;
  position: relative;
  top: 6px;
}
#mainmenu > ul li a.active {
  color: #000;
  background: var(--color-green);
}
#mainmenu > ul li a.active em {
  border-color: #000;
}
#mainmenu > ul li.has-sub ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  box-sizing: content-box;
}
#mainmenu > ul li.has-sub.open > a {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
#mainmenu > ul li.has-sub.open > a:not([href]),
#mainmenu > ul li.has-sub.open > a[href=""],
#mainmenu > ul li.has-sub.open > a[href="#"] {
  cursor: default;
}
#mainmenu > ul li.has-sub.open > a em {
  border-color: #fff;
}
#mainmenu > ul li.has-sub.open > ul {
  opacity: 1;
  pointer-events: all;
}
#mainmenu > ul li.has-sub.open > ul a:hover,
#mainmenu > ul li.has-sub.open > ul a:focus {
  color: initial;
  background: initial;
}
#mainmenu > ul li.has-sub.open > ul a:hover {
  color: var(--color-green);
}
#mainmenu > ul li.show-mobi {
  display: none !important;
  margin-bottom: 10px;
}
#mainmenu > ul li.show-mobi button {
  border-radius: 0 6px 6px 0;
  color: #fff;
  font-family: var(--font);
  background: rgba(0, 0, 0, 0.4);
  padding: 13px 20px;
  cursor: pointer;
  border: 0;
  margin-left: -30px;
  font-size: 1.25rem;
  text-transform: lowercase;
}
/* -- Desktop View -- */
@media only screen and (min-width: 1120px) {
  #mainmenu {
    top: -99999em;
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: var(--backdrop-filter);
    -webkit-backdrop-filter: var(--backdrop-filter);
    padding-bottom: 10px;
    z-index: 9;
    overflow: hidden;
    opacity: 0;
    transition: opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
    overflow-y: auto;
    max-height: 90vh;
  }
  #mainmenu::before {
    display: none;
  }
  #mainmenu > ul {
    display: none;
  }
  #mainmenu > ul li.has-sub ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    border-left: 2px solid rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    box-sizing: content-box;
  }
  #mainmenu > ul li.has-sub ul li {
    display: none;
  }
  #mainmenu > ul li.has-sub.open > a {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
  }
  #mainmenu > ul li.has-sub.open > a em {
    border-color: #fff;
  }
  #mainmenu > ul li.has-sub.open > ul {
    opacity: 1;
    pointer-events: all;
  }
  #mainmenu.open {
    top: 0;
    opacity: 1;
  }
  #mainmenu.open > ul {
    display: block;
  }
  #mainmenu.open > ul li.has-sub ul {
    bottom: 0;
  }
  #mainmenu.show-mobi {
    display: none !important;
  }
  #mainmenu[data-depth="1"] {
    width: 25%;
  }
  #mainmenu[data-depth="1"] > ul li ul {
    display: none;
  }
  #mainmenu[data-depth="2"] {
    width: 50%;
  }
  #mainmenu[data-depth="2"] > ul {
    width: 50%;
  }
  #mainmenu[data-depth="2"] > ul > li > ul > li {
    display: block;
  }
  #mainmenu[data-depth="3"] {
    width: 75%;
  }
  #mainmenu[data-depth="3"] > ul {
    width: 33.333%;
  }
  #mainmenu[data-depth="3"] > ul > li > ul > li {
    display: block;
  }
  #mainmenu[data-depth="3"] > ul > li > ul > li > ul > li {
    display: block;
  }
  #mainmenu[data-depth="4"] {
    width: 100%;
  }
  #mainmenu[data-depth="4"] > ul {
    width: 25%;
  }
  #mainmenu[data-depth="4"] > ul li ul li {
    display: block;
  }
}
@media only screen and (min-width: 1120px) and (max-width: 1400px) {
  #mainmenu[data-depth="4"] {
    width: calc(100% - 60px);
  }
}
.topmenu-mobi {
  display: none;
}
/* -- Mobile View -- */
@media only screen and (max-width: 1120px) {
  .mainmenu-wrap {
    position: relative;
  }
  .topmenu-mobi {
    display: none;
    position: absolute;
    z-index: 10;
    left: 70px;
    max-width: 410px;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 110%;
  }
  .topmenu-mobi ul {
    margin-bottom: -5px;
  }
  .topmenu-mobi ul li {
    margin: 0 10px 5px 0;
  }
  .topmenu-mobi ul li a {
    color: #000;
    text-decoration: none;
    padding: 5px;
  }
  .topmenu-mobi ul li a:hover {
    color: var(--color-blue);
  }
  .mainmenu-wrap:has(#mainmenu.open) .topmenu-mobi {
    display: block;
    font-size: 1rem;
  }
  #mainmenu {
    width: 100%;
    max-width: 480px;
    overflow: visible;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    max-height: 90vh;
    top: -99999em;
    left: 0;
    z-index: 9;
    opacity: 0;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: var(--backdrop-filter);
    -webkit-backdrop-filter: var(--backdrop-filter);
    transform: translateZ(0);
    padding-bottom: 20px;
  }
  #mainmenu > ul {
    width: 100%;
  }
  #mainmenu > ul li.has-sub ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    border-left: 0;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
  }
  #mainmenu > ul li.has-sub.open > a {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
  }
  #mainmenu > ul li.has-sub.open > a em {
    border-color: #fff;
  }
  #mainmenu > ul li.has-sub.open ul {
    opacity: 1;
    pointer-events: all;
  }
  #mainmenu > ul li.show-mobi {
    display: block !important;
  }
  #mainmenu.open {
    top: 0;
    opacity: 1;
  }
  #mainmenu.open > ul li.has-sub ul {
    bottom: 0;
  }
  #mainmenu[data-depth="1"] > ul {
    left: 0;
  }
  #mainmenu[data-depth="2"] > ul {
    left: -100%;
  }
  #mainmenu[data-depth="2"] > ul > li.open > ul {
    opacity: 1;
    pointer-events: all;
  }
  #mainmenu[data-depth="3"] > ul {
    left: -200%;
  }
  #mainmenu[data-depth="3"] > ul > li.open > ul {
    opacity: 1;
  }
  #mainmenu[data-depth="3"] > ul > li.open > ul > li > ul {
    opacity: 1;
  }
  #mainmenu[data-depth="3"] > ul > li.open > ul > li > ul > li > ul {
    opacity: 1;
    pointer-events: all;
  }
  #mainmenu[data-depth="4"] > ul {
    left: -300%;
  }
}
@media only screen and (max-width: 763px) {
  #mainmenu {
    left: -30px;
    width: calc(100% + 60px);
    max-width: none;
  }
}
@media only screen and (max-width: 567px) {
  .topmenu-mobi {
    right: -30px;
  }
}
@media only screen and (max-width: 414px) {
  .topmenu-mobi ul li {
    margin: 0 3px 5px 0;
  }
}
/* -- Footermenü -- */
.footermenu {
  font-weight: 600;
}
.footermenu ul {
  margin-bottom: 0;
}
.footermenu ul li {
  margin-bottom: 0;
}
.footermenu ul li + li {
  margin-top: 15px;
}
@media only screen and (max-width: 820px) {
  .footermenu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footermenu ul li.menu-title {
    width: 100%;
    text-align: left;
  }
  .footermenu ul li + li {
    margin-top: 0;
    margin-right: 20px;
  }
}
.row-breadcrumb .sharebar,
#dialog-eventdetails .sharebar {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.row-breadcrumb .sharebar button,
#dialog-eventdetails .sharebar button {
  height: 38px;
  background: transparent;
  border: 0;
  font-family: var(--font);
  color: var(--color-darkgrey);
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 600;
}
.row-breadcrumb .sharebar button::before,
#dialog-eventdetails .sharebar button::before {
  margin-right: 10px;
  font-size: 20px;
}
.row-breadcrumb .sharebar button:hover,
#dialog-eventdetails .sharebar button:hover,
.row-breadcrumb .sharebar button:focus,
#dialog-eventdetails .sharebar button:focus {
  color: var(--color-blue);
}
.row-breadcrumb .sharebar button span,
#dialog-eventdetails .sharebar button span {
  font-size: 1rem;
  padding-left: 0;
}
.row-breadcrumb .sharebar ul,
#dialog-eventdetails .sharebar ul {
  list-style: none;
  display: none;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  font-weight: normal;
}
.row-breadcrumb .sharebar ul li,
#dialog-eventdetails .sharebar ul li {
  margin-bottom: 0;
}
.row-breadcrumb .sharebar ul li a,
#dialog-eventdetails .sharebar ul li a {
  text-decoration: none;
  width: 38px;
  height: 38px;
  font-size: 20px;
  border-radius: 6px;
  display: grid;
  justify-content: center;
  align-content: center;
  color: var(--color-darkgrey);
}
.row-breadcrumb .sharebar ul li a:hover,
#dialog-eventdetails .sharebar ul li a:hover,
.row-breadcrumb .sharebar ul li a:focus,
#dialog-eventdetails .sharebar ul li a:focus {
  color: #fff;
  background: var(--color-card-blue);
}
.row-breadcrumb .sharebar ul li a.icon-twitter:focus,
#dialog-eventdetails .sharebar ul li a.icon-twitter:focus,
.row-breadcrumb .sharebar ul li a.icon-twitter:hover,
#dialog-eventdetails .sharebar ul li a.icon-twitter:hover {
  background: #1DA1F2;
}
.row-breadcrumb .sharebar ul li a.icon-linkedin:focus,
#dialog-eventdetails .sharebar ul li a.icon-linkedin:focus,
.row-breadcrumb .sharebar ul li a.icon-linkedin:hover,
#dialog-eventdetails .sharebar ul li a.icon-linkedin:hover {
  background: #0072b1;
}
.row-breadcrumb .sharebar ul li a.icon-xing:focus,
#dialog-eventdetails .sharebar ul li a.icon-xing:focus,
.row-breadcrumb .sharebar ul li a.icon-xing:hover,
#dialog-eventdetails .sharebar ul li a.icon-xing:hover {
  background: #126567;
}
.row-breadcrumb .sharebar ul li a.icon-whatsapp:focus,
#dialog-eventdetails .sharebar ul li a.icon-whatsapp:focus,
.row-breadcrumb .sharebar ul li a.icon-whatsapp:hover,
#dialog-eventdetails .sharebar ul li a.icon-whatsapp:hover {
  background: #25D366;
}
.row-breadcrumb .sharebar ul li a.icon-facebook:focus,
#dialog-eventdetails .sharebar ul li a.icon-facebook:focus,
.row-breadcrumb .sharebar ul li a.icon-facebook:hover,
#dialog-eventdetails .sharebar ul li a.icon-facebook:hover {
  background: #4267B2;
}
.row-breadcrumb .sharebar.open ul,
#dialog-eventdetails .sharebar.open ul {
  display: flex;
  margin-left: 20px;
}
#dialog-eventdetails .sharebar {
  display: inline-flex;
}
.content-width {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--contentPadding);
  max-width: var(--layout-width);
  padding: 0;
}
main {
  background-image: url(../gfx/main-bg-2.png);
  background-position: left bottom;
  background-repeat: no-repeat;
}
/*
*
*   SECONDRED Boilerplate
*   Footer Styles
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --footer-bg: var(--color-blue);
  --footer-padding: 30px;
  --footer-margin: 0;
}
footer {
  margin-top: auto;
  background: var(--footer-bg);
  color: #fff;
  font-size: 0.875rem;
  overflow: hidden;
}
footer .inner {
  padding: 50px 0;
}
footer .grid {
  margin-bottom: 60px;
}
footer .grid .col {
  padding: 50px 50px 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  footer .grid .col {
    width: 50%;
  }
}
@media only screen and (max-width: 820px) {
  footer .grid .col {
    border-left: 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  }
  footer .grid .col:last-child {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 820px) {
  footer .grid {
    margin: 0 0 30px;
  }
  footer .grid .col {
    padding: 30px 0;
    margin-bottom: 0;
  }
}
footer a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: clip;
  display: block;
  text-overflow: ellipsis;
}
footer a:hover,
footer a:focus {
  color: var(--color-green);
  text-decoration: underline;
  overflow: visible;
}
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.contact-list {
  margin-bottom: 30px;
  font-weight: 600;
}
footer nav.contact-list ul li {
  padding-left: 40px;
  position: relative;
}
footer nav.contact-list ul li::before {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
footer nav.contact-list ul li + li {
  margin-top: 10px;
}
@media only screen and (max-width: 820px) {
  footer nav.contact-list {
    display: flex;
    display: block;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
}
footer nav.social-media {
  margin-bottom: 40px;
}
footer nav.social-media ul li a {
  width: 38px;
  height: 38px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
footer nav.social-media ul li a.icon-twitter:focus,
footer nav.social-media ul li a.icon-twitter:hover {
  background: #1DA1F2;
}
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: 820px) {
  footer nav.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer figure.copy figcaption {
  font-weight: 600;
  margin-bottom: 10px;
}
footer figure.copy .copy-logo {
  padding: 10px 10px;
  background: #fff;
  text-align: center;
}
footer figure.copy .copy-logo img {
  display: block;
  background: #fff;
}
@media only screen and (max-width: 1400px) {
  footer .content-width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 820px) {
  footer .content-width {
    padding: 20px;
  }
  footer .copy {
    margin-top: 30px;
  }
  footer .grid .col-1-4 {
    width: 100%;
    margin-bottom: 0;
  }
  footer .grid .logos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.card .link-list {
  padding-left: 0;
}
.card .contact-list {
  list-style: none;
  padding-left: 0;
  font-weight: normal;
}
.card .contact-list > div {
  position: relative;
  padding-left: 35px;
}
.card .contact-list > div::before {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 3px;
}
.card .contact-list > div a {
  text-decoration: none;
  color: inherit;
}
.card .card-title {
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 30px;
}
.card .inner {
  padding: 30px;
}
.card-grey {
  background: var(--color-lightgrey);
}
.card-white {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 160, 209, 0.2);
}
.card-white h3 {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.875rem;
  margin-bottom: 30px;
}
.card-white h3 a {
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-white h3 a:hover {
  color: var(--color-green);
}
.card-img .img {
  overflow: hidden;
}
.card-img .img img {
  display: block;
}
.card-hoverable {
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1), box-shadow 350ms cubic-bezier(0.2, 1, 0.3, 1), color 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-hoverable:hover {
  color: #fff;
  background: var(--color-blue);
  box-shadow: 0 0 0 rgba(0, 160, 209, 0.2);
}
.card-hoverable:hover a:not(.btn) {
  color: inherit;
}
.card-opt {
  background: var(--color-blue);
  color: #000;
  width: 268px;
  padding: 0 30px 30px;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.2);
}
.card-opt .sharebar {
  background: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.card-opt .sharebar button {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
}
.card-opt .sharebar ul {
  list-style: none;
  display: none;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  font-weight: normal;
}
.card-opt .sharebar ul li {
  margin-bottom: 0;
}
.card-opt .sharebar ul li a {
  text-decoration: none;
  width: 34px;
  height: 38px;
  color: #fff;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
}
.card-opt .sharebar ul li a:hover {
  background: var(--color-card-blue);
}
.card-opt .sharebar ul li a.icon-twitter:hover {
  background: #1DA1F2;
}
.card-opt .sharebar ul li a.icon-linkedin:hover {
  background: #0072b1;
}
.card-opt .sharebar ul li a.icon-xing:hover {
  background: #126567;
}
.card-opt .sharebar ul li a.icon-whatsapp:hover {
  background: #25D366;
}
.card-opt .sharebar ul li a.icon-facebook:hover {
  background: #4267B2;
}
.card-opt .sharebar.open ul {
  display: flex;
}
.card-opt ul.tags {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.card-opt ul.tags .time-reading,
.card-opt ul.tags .time-listening {
  font-weight: normal;
}
.card-opt ul.tags .time-reading svg,
.card-opt ul.tags .time-listening svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-content: center;
}
.card-opt ul.tags li {
  position: relative;
  padding-left: 30px;
}
.card-opt ul.tags li a {
  text-decoration: none;
  color: inherit;
  font-weight: normal;
}
.card-opt ul.tags li a:hover {
  text-decoration: underline;
}
.card-opt ul.tags li::before {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}
.card-opt ul.tags li + li {
  margin-top: 15px;
}
/* -- Card-Events -- */
.card-event .inner {
  display: flex;
  flex-direction: row;
  padding: 30px;
  flex: 1;
}
.card-event .location {
  margin-bottom: 25px;
  font-weight: normal;
}
.card-event .location::before {
  font-size: 20px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.card-event .tags {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
}
.card-event .tags .location {
  margin: 0 10px 10px;
}
.card-event h2 {
  font-size: 1.875rem;
  padding-top: 0;
  font-weight: normal;
  margin-left: 0;
}
.card-event h2::before {
  display: none;
}
.card-event .day {
  width: 90px;
}
.card-event .day strong,
.card-event .day small {
  display: block;
  line-height: 100%;
}
.card-event .day strong {
  font-size: 3.75rem;
  font-weight: normal;
}
.card-event .day small {
  font-size: 1rem;
}
.card-event .event-desc {
  flex: 1;
}
@media only screen and (max-width: 567px) {
  .card-event .btn-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-event .btn-wrap a,
  .card-event .btn-wrap button {
    margin-bottom: 10px;
  }
  .card-event .btn-wrap a:last-child,
  .card-event .btn-wrap button:last-child {
    margin-bottom: 0;
  }
}
.card-events .event-item {
  display: flex;
  flex-direction: row;
}
.card-events .event-item + .event-item {
  margin-top: 10px;
}
.card-events .event-title {
  margin-right: 15px;
  flex: 1;
}
.card-events .day {
  min-width: 90px;
  white-space: nowrap;
}
.card-events .day strong,
.card-events .day small {
  display: block;
  line-height: 100%;
}
.card-events .day strong {
  font-size: 3.75rem;
  font-weight: normal;
}
.card-events .day small {
  font-size: 1rem;
}
.card-events h2 {
  font-size: 1.875rem;
  padding-top: 0;
  font-weight: normal;
  margin-bottom: 0;
  margin-left: 0;
}
.card-events h2::before {
  display: none;
}
.card-events .btn {
  white-space: nowrap;
}
@media only screen and (max-width: 567px) {
  .card-events .event-item {
    display: grid;
    grid-template-columns: 90px auto;
  }
  .card-events .event-item + .event-item {
    margin-top: 20px;
  }
  .card-events .event-title {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .card-events .day {
    width: 90px;
    grid-row: span 2 / auto;
  }
  .card-events h2 {
    font-size: 1.125rem;
    line-height: 120%;
  }
}
/* -- Swiper -- */
.card-related {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ddd;
}
.card-related h1,
.card-related h2,
.card-related h3 {
  margin-bottom: 0;
  color: #fff;
  font-weight: normal;
  margin-left: 0;
  padding: 0.825em;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(1.5px) saturate(110%);
}
.card-related h1::before,
.card-related h2::before,
.card-related h3::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--color-card-blue);
  opacity: 0.75;
  z-index: -1;
}
.card-related h1 a,
.card-related h2 a,
.card-related h3 a {
  color: inherit;
  display: inline-block;
  width: min-content;
}
.card-related .label {
  color: #fff;
  padding: 12px 15px 10px;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.4);
  max-width: calc(100% - 100px);
}
.card-related .label a {
  text-decoration: none;
  color: inherit;
}
.card-related .inner {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
  padding-inline-start: 0;
  padding-block-end: 0;
}
/* -- Card Toggle -- */
.card-toggle {
  padding: 20px 30px;
}
.card-toggle fieldset {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  background: var(--color-lightgrey);
}
.card-toggle fieldset .form-item {
  flex: 1;
  width: 50%;
  margin-bottom: 0;
}
.card-toggle fieldset .form-item label {
  display: block;
  padding: 11px 0;
  margin-bottom: 0;
  text-align: center;
  cursor: pointer;
}
.card-toggle fieldset .form-item label:focus,
.card-toggle fieldset .form-item label:hover {
  color: var(--color-blue);
}
.card-toggle fieldset .form-item input:checked + label {
  color: #fff;
  background: var(--color-blue);
}
/* -- Card Filter -- */
.card-filter {
  margin-bottom: 20px;
  position: relative;
}
.card-filter button.show-search {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
  position: absolute;
  right: 50px;
  top: 24px;
  color: var(--color-midgrey);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.2, 1, 0.3, 1), color 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-filter button.show-search:focus {
  opacity: 1;
}
.card-filter button.show-more {
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: var(--font);
  color: var(--color-midgrey);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}
.card-filter button.show-more:focus,
.card-filter button.show-more:hover {
  color: var(--color-blue);
}
.card-filter details summary {
  font-weight: 600;
  color: var(--color-blue);
  user-select: none;
  cursor: pointer;
  list-style: none;
  padding: 30px;
}
.card-filter details summary em {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-midgrey);
  border-bottom: 2px solid var(--color-midgrey);
  transform: rotate(45deg);
  float: right;
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  top: 5px;
}
.card-filter details summary::before {
  font-size: 20px;
  margin-right: 10px;
  color: var(--color-midgrey);
  position: relative;
  top: 2px;
}
.card-filter:focus button.show-search,
.card-filter:focus-within button.show-search,
.card-filter:hover button.show-search,
.card-filter:focus details summary em,
.card-filter:focus-within details summary em,
.card-filter:hover details summary em {
  opacity: 1;
}
.card-filter .inner {
  padding-top: 0;
}
/* -- Card Grid -- */
.card-excerpt {
  aspect-ratio: 1 / 1;
  position: relative;
  transition: opacity 350ms cubic-bezier(0.2, 1, 0.3, 1), transform 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-excerpt a {
  color: inherit;
}
.card-excerpt .label,
.card-excerpt .hover-label {
  position: absolute;
  left: 30px;
  top: 0;
  color: #fff;
  padding: 10px 15px;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.4);
  max-width: calc(100% - 60px);
}
.card-excerpt .label a,
.card-excerpt .hover-label a {
  text-decoration: none;
  color: inherit;
}
.card-excerpt .hover-label {
  opacity: 0;
  pointer-events: none;
}
.card-excerpt .inner {
  overflow: hidden;
}
.card-excerpt .date {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 20px;
}
.card-excerpt .date strong,
.card-excerpt .date small {
  display: block;
  line-height: 100%;
}
.card-excerpt .date strong {
  font-size: 3.75rem;
  font-weight: normal;
  margin-right: 10px;
}
.card-excerpt .date small {
  font-size: 1rem;
  padding-bottom: 7px;
}
.card-excerpt h2 {
  padding-top: 0;
  margin-left: 0;
  font-size: 1.25rem;
  line-height: 100%;
  font-weight: normal;
  margin-bottom: 0;
}
.card-excerpt h2::before {
  display: none;
}
.card-excerpt figure.inner,
.card-excerpt article.inner {
  padding: 0;
}
.card-excerpt figure.inner .img,
.card-excerpt article.inner .img {
  overflow: hidden;
  transition: opacity 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-excerpt figure.inner .img img,
.card-excerpt article.inner .img img {
  display: block;
}
.card-excerpt figure.inner .caption,
.card-excerpt article.inner .caption,
.card-excerpt figure.inner figcaption,
.card-excerpt article.inner figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  background-size: 100% 50%;
  background-position: bottom;
  transition: background-position 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-excerpt div.inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-excerpt .excerpt {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  transition: max-height 350ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1), padding-top 750ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-excerpt:focus .label,
.card-excerpt:focus-within .label,
.card-excerpt:hover .label {
  transform: rotateY(-100%);
  opacity: 0;
}
.card-excerpt:focus .hover-label,
.card-excerpt:focus-within .hover-label,
.card-excerpt:hover .hover-label {
  opacity: 1;
  pointer-events: all;
}
.card-excerpt:focus .excerpt,
.card-excerpt:focus-within .excerpt,
.card-excerpt:hover .excerpt {
  opacity: 1;
  max-height: 300px;
  padding-top: 30px;
  transition: max-height 750ms cubic-bezier(0.2, 1, 0.3, 1), opacity 750ms cubic-bezier(0.2, 1, 0.3, 1), padding-top 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-excerpt:focus .img,
.card-excerpt:focus-within .img,
.card-excerpt:hover .img {
  opacity: 0.1;
}
.card-excerpt:focus figure.inner figcaption,
.card-excerpt:focus-within figure.inner figcaption,
.card-excerpt:hover figure.inner figcaption {
  background-position: 0 200%;
}
.card-excerpt:focus h2,
.card-excerpt:focus-within h2,
.card-excerpt:hover h2 {
  color: var(--hover-color);
}
.card-excerpt.card-large h2 {
  font-size: 2.5rem;
}
.card-skeleton {
  background: rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: var(--backdrop-filter);
  -webkit-backdrop-filter: var(--backdrop-filter);
}
.card-skeleton .skeleton-label {
  position: absolute;
  left: 30px;
  top: 0;
  height: 44px;
  padding: 10px 15px;
  font-weight: normal;
  max-width: calc(100% - 60px);
  width: 100px;
}
.card-skeleton .skeleton-headline {
  height: 20px;
}
.card-skeleton .skeleton-figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: flex-end;
}
.card-skeleton .skeleton-excerpt {
  max-height: 300px;
  padding-top: 30px;
}
.card-skeleton .skeleton-btn {
  height: 38px;
  width: 120px;
}
.card-skeleton.card-large .skeleton-headline {
  height: 40px;
}
.card-skeleton.card-large .skeleton-p {
  height: 75px;
  max-width: 80%;
  margin-bottom: 20px;
}
.card-skeleton .skeleton-label,
.card-skeleton .skeleton-headline,
.card-skeleton .skeleton-btn,
.card-skeleton .skeleton-p {
  background: rgba(0, 0, 0, 0.05);
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.05) 8%, rgba(255, 255, 255, 0.05) 18%, rgba(0, 0, 0, 0.05) 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  background-attachment: fixed;
}
.card-swiper {
  overflow: hidden;
  max-width: 360px;
}
.card-swiper video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.49, 0, 0.48, 1);
}
.card-swiper .swiper-slide {
  height: auto;
  overflow: hidden;
}
.card-swiper .swiper-wrapper {
  width: auto;
  height: auto;
}
@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 Boilerplate
*   Form.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  /* - Formular Styles - */
  --fieldset-padding: 0;
  --fieldset-border: 0;
  --input-fontsize: 1.125rem;
  --input-fontfamiliy: var(--font);
  --input-focus-color: #666;
  --input-bg: rgba(149, 157, 169, 0.15);
  --input-border: 1px solid rgba(149, 157, 169, 0);
  --input-border-radius: 0;
  --input-padding: 0 16px;
  --input-height: 63px;
  --textarea-padding: 10px;
  --textarea-minheight: 150px;
  --input-placeholder-color: #737373;
  --input-placeholder-style: normal;
  --input-placeholder-opacity: 1;
  --input-disabeld-color: #ccc;
  --input-disabeld-cursor: not-allowed;
  --input-disabeld-border: #ccc;
  --input-error-color: red;
  --input-error-border: red;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
fieldset {
  padding: var(--fieldset-padding);
  border: var(--fieldset-border);
}
fieldset legend {
  font-size: 2.188rem;
  margin-bottom: 30px;
  line-height: 90%;
  font-family: var(--headline-font);
  line-height: var(--headline-line-height);
}
@media only screen and (max-width: 763px) {
  fieldset legend {
    font-size: 1.563rem;
  }
}
fieldset .flexgrid .box {
  margin-bottom: 0;
}
.error-msg {
  font-weight: bold;
  color: var(--colorAlert);
  margin: -40px 0 50px;
}
.form-item {
  margin-bottom: 20px;
  position: relative;
}
.form-item label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  line-height: 80%;
}
.form-item label .hint {
  font-size: 12px;
  position: relative;
  top: 4px;
}
.form-item button.icon-showpass {
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-blue);
  background: transparent;
  border: 0;
  display: grid;
  justify-content: center;
  align-content: center;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.form-item button.icon-showpass:hover {
  color: var(--color-orange);
}
.form-item input.form-text,
.form-item select {
  height: 63px;
}
.form-item input.form-text,
.form-item select,
.form-item textarea {
  border: var(--input-border);
  width: 100%;
  background: var(--input-bg);
  font-size: var(--input-fontsize);
  border-radius: var(--input-border-radius);
  padding: var(--input-padding);
}
.form-item input.form-text[disabled],
.form-item select[disabled],
.form-item textarea[disabled] {
  border: 1px solid var(--colorDisabled);
}
.form-item input.form-text,
.form-item select {
  height: var(--input-height);
  padding: var(--input-padding);
}
.form-item textarea {
  padding: var(--textarea-padding);
  min-height: var(--textarea-minheight);
  resize: vertical;
}
.form-item textarea.autoExpand {
  min-height: 0;
  overflow: hidden;
}
.form-item select:required:invalid {
  color: #959DA9;
  font-style: italic;
}
.form-item option[disabled] {
  display: none;
}
.form-item [disabled] label,
.form-item [disabled] + label {
  color: var(--colorDisabled);
}
.form-item [disabled] label em,
.form-item [disabled] + label em {
  border-color: var(--colorDisabled);
  cursor: not-allowed !important;
}
.form-item input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  padding: 0;
  border: 0;
}
.form-item input[type="range"]:hover {
  opacity: 1;
}
.form-item input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  cursor: pointer;
}
.form-item input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  cursor: pointer;
}
.form-street {
  display: flex;
  flex-direction: row;
}
.form-street .street {
  flex: 1;
  padding-right: 20px;
}
.form-street .number {
  width: 45px;
}
.form-radio input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.form-radio label {
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  line-height: 100%;
}
.form-radio label a {
  text-decoration: none;
  font-weight: bold;
}
.form-radio label a:hover {
  text-decoration: underline;
}
.form-radio label em {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #F2F2F2;
  cursor: pointer;
  border: 1px solid #F2F2F2;
  display: grid;
  justify-content: center;
  align-content: center;
}
.form-radio input[type="radio"] + label em {
  border-radius: 50%;
}
.form-radio span {
  padding-left: 20px;
  flex: 1 1 auto;
}
.form-radio input:checked + label em {
  background: var(--color-blue);
}
.form-radio input:focus + label em {
  border-color: var(--color-blue);
}
.form-tag {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.form-tag input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.form-tag label {
  background: #F2F2F2;
  padding: 11px 15px;
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.form-tag label:hover {
  color: var(--color-blue) !important;
  background: #fff !important;
}
.form-tag input:focus + label {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.form-tag input:checked + label {
  color: #fff !important;
  background: var(--color-blue) !important;
}
.form-error {
  position: relative;
}
.form-error label {
  color: var(--colorAlert);
}
.form-error input,
.form-error select,
.form-error .SumoSelect,
.form-error textarea {
  border: 2px solid var(--colorAlert) !important;
}
.form-error em,
.form-error em:not([class^="icon-"]) {
  border-color: var(--colorAlert);
}
.form-error ul.errors {
  list-style: none;
  padding-left: 0;
  font-size: 0.625rem;
  position: absolute;
  font-weight: normal;
}
.form-error ul.errors li {
  color: var(--colorAlert);
}
.custom-select {
  position: relative;
  font-weight: normal;
  z-index: 20;
}
.custom-select .selected-options {
  border: var(--input-border);
  width: 100%;
  background: var(--input-bg);
  background-image: url(../gfx/select-arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 32px auto;
  font-size: var(--input-fontsize);
  border-radius: var(--input-border-radius);
  height: var(--input-height);
  padding: var(--input-padding);
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  z-index: 2;
}
.custom-select .selected-options > div {
  background: var(--color-blue);
  color: #fff;
  padding: 11px 15px;
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  margin-right: 10px;
  line-height: 100%;
}
.custom-select .selected-options > div:hover {
  background: #000;
}
.custom-select .options-list {
  background: #F2F2F2;
  position: absolute;
  top: 100%;
  padding: 10px 20px;
  left: 0;
  width: 100%;
  z-index: 10;
  border-radius: 6px;
  display: none;
}
.custom-select .options-list > div {
  cursor: pointer;
  padding: 10px 0;
}
.custom-select .options-list > div.selected,
.custom-select .options-list > div:hover {
  color: var(--color-blue);
}
.custom-select .options-list.show {
  display: block;
}
.custom-select select {
  position: absolute;
  opacity: 0;
  z-index: 0;
}
/* -- Custom Forms -- */
fieldset.std ::placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std :-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std ::-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: var(--input-placeholder-opacity);
  font-style: var(--input-placeholder-style);
  font-weight: 400;
}
fieldset.std .form-item label {
  font-weight: normal;
}
fieldset.std .form-item select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../gfx/select-arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 32px auto;
}
fieldset.std .form-radio em {
  min-width: 76px;
  width: 76px;
  height: 38px;
  border-radius: 19px;
  background: var(--color-darkgrey);
  position: relative;
  border: 0;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.std .form-radio em::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  opacity: 1;
  transition: transform 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
fieldset.std .form-radio input[type="checkbox"] + label em {
  border-radius: 19px;
}
fieldset.std .form-radio input:checked + label em {
  background: var(--color-blue);
}
fieldset.std .form-radio input:checked + label em::before {
  transform: translate(calc(100% + 4px), 0);
}
dialog fieldset.std .form-item input.form-text,
dialog fieldset.std .form-item .custom-select .selected-options,
dialog fieldset.std .form-item .custom-select .options-list,
dialog fieldset.std .form-item select,
dialog fieldset.std .form-item textarea {
  background-color: #fff;
}
/* -- Kontaktformular -- */
fieldset.contact-form p {
  margin-bottom: 50px;
}
fieldset.contact-form textarea {
  height: 452px;
  display: block;
}
fieldset.ad-request {
  padding: 30px;
}
fieldset.ad-request legend {
  padding-top: 25px;
  margin-bottom: -10px;
  font-weight: 300;
}
fieldset.ad-request h4 {
  color: var(--color-orange);
  margin-bottom: 20px;
  font-size: 1.563rem;
}
@media only screen and (max-width: 763px) {
  fieldset.ad-request h4 {
    font-size: 1.25rem;
  }
}
fieldset.ad-request p {
  margin-bottom: 50px;
}
fieldset.ad-request .grid .form-item:last-child {
  margin-bottom: 0;
}
fieldset.ad-request .grid textarea {
  height: 450px;
}
/* -- Tag Suche Pageopt -- */
fieldset.tag-search {
  position: relative;
  margin-bottom: 10px;
}
fieldset.tag-search .form-item {
  margin-bottom: 0;
}
fieldset.tag-search .form-item input.form-text {
  height: 38px;
  padding: 0 20px;
  font-size: 1rem;
}
fieldset.tag-search button.form-submit {
  width: 38px;
  height: 38px;
  font-size: 20px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
fieldset.tag-search button.form-submit:hover {
  color: var(--color-blue);
}
fieldset.taglist legend {
  font-size: 1rem;
  font-weight: normal;
}
/* -- Thema durchsuchen -- */
fieldset.topic-search {
  background: #fff;
  padding: 24px 30px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  z-index: 6;
  display: none;
}
fieldset.topic-search .form-item {
  margin-bottom: 0;
}
fieldset.topic-search .form-item input.form-text {
  height: 38px;
}
fieldset.topic-search button.form-submit {
  width: 38px;
  height: 38px;
  font-size: 20px;
  border: 0;
  background: transparent;
  position: absolute;
  right: 30px;
  bottom: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
fieldset.topic-search button.form-submit:hover {
  color: var(--color-blue);
}
/* -- Seite durchsuchen -- */
fieldset.search {
  margin-bottom: 40px;
}
fieldset.search .form-item {
  margin-bottom: 10px;
}
fieldset.search .form-item input.form-text {
  font-size: 1.875rem;
  font-weight: 300;
}
fieldset.search .count {
  color: var(--color-blue);
  font-size: 0.875rem;
  font-weight: normal;
}
fieldset.search button.form-submit {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 63px;
  height: 63px;
  font-size: 40px;
  display: grid;
  justify-content: center;
  align-content: center;
  border-radius: 6px;
}
fieldset.search button.form-submit:hover {
  color: var(--color-blue);
}
/*
*
*   SECONDRED Boilerplate
*   Form.less
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --fui-input-font-size: var(--input-fontsize);
  --fui-input-padding: 16px;
  --fui-input-background-color: var(--input-bg);
  --fui-input-border: var(--input-border);
  --fui-input-border-radius: var(--input-border-radius);
  --fui-input-placeholder-color: var(--input-placeholder-color);
  --fui-input-width: 100%;
  --fui-check-font-size: 16px;
  --fui-check-label-padding-left: 80px;
  --fui-check-label-top: 5px;
  --fui-check-label-width: 60px;
  --fui-check-label-height: 60px;
  --fui-check-label-border: 1px solid #D9D9D9;
  --fui-check-label-bg-color: #fff;
  --fui-field-gutter: 15px;
  --fui-row-gutter: 10px;
  --fui-column-gutter: 20px;
  --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: red;
  --fui-required-color: red;
  --fui-error: red;
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  background: var(--color-blue) !important;
  border-color: var(--color-blue) !important;
}
/* -- 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;
  --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);
}
.fui-alert-error {
  background-color: var(--fui-alert-error-bg-color);
  color: var(--fui-alert-error-color);
}
.fui-alert-success {
  background-color: var(--fui-alert-success-bg-color);
  color: var(--fui-alert-success-color);
}
.fui-alert-error.fui-alert-bottom-form {
  margin-top: 1rem;
  margin-bottom: 0;
}
.text + .fui-i {
  margin-top: 40px;
}
/* -- Form Outer -- */
.fui-row {
  display: flex;
  margin: 0 -15px;
}
.fui-row h2 {
  margin-left: 0;
}
.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-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):has(.fui-field:not(.fui-type-hidden-field)) {
  margin-bottom: 0;
}
.fui-layout-horizontal .fui-layout-wrap {
  display: flex;
}
.fui-submit,
.fui-save {
  order: 10;
}
.fui-label-left-input .fui-field-container,
.fui-label-right-input .fui-field-container {
  display: flex;
  align-items: baseline;
}
.fui-label-left-input .fui-input-container,
.fui-label-right-input .fui-input-container {
  flex: 1;
}
.fui-label-below-input > .fui-field-container > .fui-input-container > .fui-fieldset > .fui-legend {
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
.fui-input,
.fui-select {
  font-size: var(--fui-input-font-size);
  line-height: var(--fui-input-line-height);
  border-radius: var(--fui-input-border-radius);
  background-color: #fff;
  background-color: var(--fui-input-background-color);
  border: var(--fui-input-border);
  padding: var(--fui-input-padding);
  width: var(--fui-input-width);
  height: var(--input-height);
}
.fui-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;
}
.fui-input::-moz-placeholder,
.fui-select::-moz-placeholder {
  color: var(--fui-input-placeholder-color);
}
.fui-input::placeholder,
.fui-select::placeholder {
  color: var(--fui-input-placeholder-color);
}
.fui-input[type="file"],
.fui-select[type="file"] {
  height: auto;
  font-size: 1rem;
}
.fui-input[type="color"],
.fui-select[type="color"] {
  height: 39px;
  padding: 0.1rem;
}
.fui-type-dropdown.fui-group-anzeigenformat .fui-label {
  width: 25%;
  width: calc(25% - 10px);
}
@media only screen and (max-width: 768px) {
  .fui-type-dropdown.fui-group-anzeigenformat .fui-label {
    width: 100%;
  }
}
[data-conditionally-hidden="true"] {
  display: none;
}
.formie-hcaptcha-placeholder,
.formie-recaptcha-placeholder {
  margin-left: 25%;
  margin-left: calc(25% - 10px);
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .formie-hcaptcha-placeholder,
  .formie-recaptcha-placeholder {
    margin-left: 0;
  }
}
.fui-heading-h6 {
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .fui-heading-h6 {
    padding-left: 20px;
  }
}
/* -- Radio Checkbox -- */
.fui-layout-vertical .fui-legend {
  /*padding-left: 60px;
    @media only screen and (max-width: 768px) {
        padding-left: 20px;
    } */
}
.fui-layout-vertical .fui-checkbox,
.fui-layout-vertical .fui-radio {
  /*margin-left: 25%; margin-left: calc(25% - 10px); */
}
@media only screen and (max-width: 768px) {
  .fui-layout-vertical .fui-checkbox,
  .fui-layout-vertical .fui-radio {
    margin-left: 0;
  }
}
.fui-layout-vertical .fui-checkbox + .fui-checkbox,
.fui-layout-vertical .fui-radio + .fui-radio {
  margin-top: 20px;
}
.fui-checkbox input,
.fui-radio input {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.fui-checkbox input:focus + label::before,
.fui-radio input:focus + label::before {
  border-color: #a4cafe;
  border-color: var(--fui-check-border-color-focus, var(--fui-focus-border-color));
  box-shadow: 0 0 0 3px rgba(164, 202, 254, 0.45);
  box-shadow: var(--fui-check-box-shadow-focus, var(--fui-focus-shadow));
}
.fui-checkbox input:checked + label::before,
.fui-radio input:checked + label::before {
  background-color: #516fea;
  background-color: var(--fui-check-bg-color-checked, var(--fui-primary-color));
  border-color: #516fea;
  border-color: var(--fui-check-border-color-checked, var(--fui-primary-color));
}
.fui-checkbox input:active + label::before,
.fui-radio input:active + label::before {
  background-color: #f0f1f4;
  background-color: var(--fui-check-bg-color);
}
.fui-checkbox label,
.fui-radio label {
  position: relative;
  font-size: var(--fui-check-font-size);
  padding-left: var(--fui-check-label-padding-left);
  line-height: 1.5rem;
}
.fui-checkbox label::before,
.fui-radio label::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: var(--fui-check-label-width);
  height: var(--fui-check-label-height);
  content: "";
  cursor: pointer;
  border: var(--fui-check-label-border);
  background-color: var(--fui-check-label-bg-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--fui-check-label-transition);
}
.fui-radio label {
  padding-left: 60px;
  line-height: 1.5rem;
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 38px;
}
.fui-radio label::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 38px;
  height: 38px;
  content: "";
  cursor: pointer;
  border: 0;
  background-color: #F2F2F2;
  background-image: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--fui-check-label-transition);
}
.fui-checkbox label {
  display: flex;
  flex-direction: row;
  font-weight: normal;
  position: relative;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-left: 100px;
  min-height: 38px;
  align-items: center;
}
.fui-checkbox label a {
  margin: 0 3px;
}
.fui-checkbox label::before {
  width: 76px;
  height: 38px;
  border-radius: 19px;
  background: var(--color-darkgrey);
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.fui-checkbox label::after {
  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);
}
.fui-checkbox input:checked + label::before {
  background: var(--color-blue);
}
.fui-checkbox input:checked + label::after {
  transform: translate(38px, 0);
}
.fui-radio label::before {
  border-radius: 50%;
}
.fui-radio input:checked + label::before {
  background: var(--color-blue);
}
/* -- 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,
.fui-prev {
  border-radius: 0;
  border: 2px solid #CED2DB;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-align: center;
  display: inline-block;
  padding: 4px 20px 3px;
  font-weight: normal;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1.688rem;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), border 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
  background: var(--color-green);
  border-color: var(--color-green);
}
.fui-submit:hover,
.fui-prev:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.fui-prev {
  background: var(--input-bg);
  border-color: var(--input-bg);
}
.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: var(--fui-required-color, var(--fui-error));
}
.fui-required {
  color: var(--fui-required-color, var(--fui-error));
}
/* cl */
.fui-btn-wrapper,
.fui-btn-container {
  gap: 0.5em;
}
.fui-checkbox label {
  display: block;
  word-break: break-word;
}
.fui-tab-active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}
.fui-tab {
  font-weight: normal;
  font-size: var(--font-size);
}
.fui-tab a {
  font-weight: inherit;
}
.fui-input-container .fui-row {
  align-items: flex-end;
  margin-bottom: initial;
}
.fui-input[type="file"]::-webkit-file-upload-button,
.fui-select[type="file"]::-webkit-file-upload-button {
  background: var(--input-bg);
  border-color: var(--input-bg);
  border: none;
  padding: 4px 20px 3px;
  line-height: 1.688rem;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
}
/*
  Button

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

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

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

  Style guide: Components.Button
*/
:root {
  --l: 50%;
  --colorHighlightHover: hsl(var(--colorHighlight), calc(var(--l) - 10%));
  /* - Button Style - */
  --button-bg: var(--color-green);
  --button-color: #fff;
  --button-fontsize: 1em;
  --button-fontfamiliy: inherit;
  --button-minheight: 38x;
  --button-minwidth: 250px;
  --button-txtdeco: none;
  --button-padding: 10px 25px;
  --button-margin: 0;
  --button-display: inline-block;
}
.btn-wrap {
  display: flex;
  margin-bottom: 30px;
  /*.btn {margin: 0;border-radius: 0;} */
}
.btn-wrap:last-child {
  margin-bottom: 0;
}
.btn-wrap[data-align="left"] {
  justify-content: start;
}
.btn-wrap[data-align="left"] .btn {
  margin-right: 10px;
}
.btn-wrap[data-align="center"] {
  justify-content: center;
}
.btn-wrap[data-align="center"] .btn {
  margin-right: 10px;
}
.btn-wrap[data-align="right"] {
  justify-content: end;
}
.btn {
  border: 2px solid #CED2DB;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-align: center;
  display: inline-block;
  padding: 4px 20px 3px;
  font-weight: normal;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1.688rem;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), border 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  background: #CED2DB;
}
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.loading::before {
  position: absolute;
  content: "";
  left: -9999px;
  width: 10px;
  height: 10px;
  margin-left: calc(50% - 5px);
  top: 12px;
  box-shadow: 9984px 0 0 0 #000, 9999px 0 0 0 #000, 10014px 0 0 0 #000;
  animation: dot-carousel 1.5s infinite linear;
}
.btn::before {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.btn.btn-filled {
  color: #fff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}
.btn.btn-filled:hover,
.btn.btn-filled:focus {
  background: var(--color-orange);
  border-color: var(--color-orange);
}
.btn.btn-prime {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}
.btn.btn-prime:hover,
.btn.btn-prime:focus {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn.btn-prime:hover.loading,
.btn.btn-prime:focus.loading {
  color: transparent;
}
.btn.btn-prime:hover.loading::before,
.btn.btn-prime:focus.loading::before {
  box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
  animation: dot-carousel-white 1.5s infinite linear;
}
.btn.btn-black {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn.btn-black:hover,
.btn.btn-black:focus {
  background: #000;
  border-color: #000;
  color: #fff;
}
.btn.btn-black.loading {
  color: transparent;
}
.btn.btn-black.loading::before {
  box-shadow: 9984px 0 0 0 #fff, 9999px 0 0 0 #fff, 10014px 0 0 0 #fff;
  animation: dot-carousel-white 1.5s infinite linear;
}
.btn.btn-blank {
  border-color: transparent;
  background: transparent;
  color: var(--color-darkgrey);
  padding: 0 10px;
  font-weight: 600;
  display: inline-grid;
  justify-content: center;
  align-content: center;
  grid-auto-flow: column;
}
.btn.btn-blank::before {
  display: grid;
  justify-content: center;
  align-content: center;
}
.btn.btn-blank:hover,
.btn.btn-blank:focus {
  border-color: transparent;
  background: transparent;
  color: var(--color-blue);
}
.btn.btn-dark {
  background: rgba(0, 0, 0, 0.5);
}
.btn.btn-dark:hover,
.btn.btn-dark:focus {
  color: var(--color-green);
}
.btn.btn-outline {
  background: transparent;
  border-color: var(--color-green);
}
.btn.btn-outline:hover,
.btn.btn-outline:focus {
  background: var(--color-green);
}
.btn[disabled],
.btn:disabled {
  border: 1px solid var(--colorDisabled);
  color: var(--colorDisabled);
  background-color: transparent;
  cursor: default;
}
.btn[disabled].primary,
.btn:disabled.primary {
  border-color: var(--colorDisabled);
  background-color: var(--colorDisabled);
  color: #000;
}
.btn[disabled].link,
.btn:disabled.link {
  background-color: transparent;
  border-color: transparent;
  color: var(--colorDisabled);
}
@keyframes dot-carousel {
  0% {
    box-shadow: 9984px 0 0 -1px #000, 9999px 0 0 1px #000, 10014px 0 0 -1px #000;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #000, 9984px 0 0 -1px #000, 9999px 0 0 1px #000;
  }
  100% {
    box-shadow: 9999px 0 0 1px #000, 10014px 0 0 -1px #000, 9984px 0 0 -1px #000;
  }
}
@keyframes dot-carousel-white {
  0% {
    box-shadow: 9984px 0 0 -1px #fff, 9999px 0 0 1px #fff, 10014px 0 0 -1px #fff;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #fff, 9984px 0 0 -1px #fff, 9999px 0 0 1px #fff;
  }
  100% {
    box-shadow: 9999px 0 0 1px #fff, 10014px 0 0 -1px #fff, 9984px 0 0 -1px #fff;
  }
}
.tag-btn {
  background: #F2F2F2;
  padding: 7px 15px;
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
}
.tag-btn:hover {
  color: var(--color-blue);
}
@-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: auto;
  -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;
  padding: 0 15px;
  max-width: 300px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0;
}
.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: 30px;
}
.notyf__ripple {
  height: 400px;
  width: 400px;
  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-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  border-radius: 3px;
  position: relative;
  z-index: 10;
}
.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;
}
.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 26px;
  margin-right: -15px;
  -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: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  opacity: 0.35;
  height: 100%;
  width: 100%;
}
.notyf__dismiss-btn:after,
.notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
}
.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: 480px) {
  .notyf {
    padding: 0;
  }
  .notyf__ripple {
    height: 600px;
    width: 600px;
    -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;
  }
}
article ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}
article ul li {
  position: relative;
  padding-left: 25px;
}
article ul li::before {
  width: 10px;
  height: 10px;
  background: var(--color-green);
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}
article a {
  word-break: break-all;
}
article p + h3,
article p + h4,
article p + h5 {
  margin-top: 40px;
}
.row-related {
  overflow: hidden;
  background-image: url(../gfx/related-bg-lft-2.png), url(../gfx/related-bg-rt-2.png);
  background-position: left 80%, right top;
  background-repeat: no-repeat;
  /* -- Grid Optik -- */
  /* -- Swiper Optik -- */
}
.row-related .card {
  height: 100%;
}
.row-related .grid {
  margin: 0 -15px 0;
}
.row-related .grid .col {
  padding: 0 15px 30px;
  margin-bottom: 0;
}
.row-related .swiper {
  overflow: visible;
  margin-bottom: 30px;
}
.row-related .swiper-slide {
  width: auto;
  height: auto;
}
.row-related .swiper-nav {
  position: relative;
  width: 100%;
  display: flex;
  max-width: 650px;
  justify-self: center;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 160, 209, 0.2);
}
.row-related .swiper-nav .swiper-button-prev,
.row-related .swiper-nav .swiper-button-next {
  width: 38px;
  height: 38px;
  min-width: 38px;
  position: static;
  display: grid;
  color: #fff;
  background: var(--color-blue);
  cursor: pointer;
  border: 0;
  margin: 0;
  font-size: 20px;
  transition: opacity 350ms cubic-bezier(0.2, 1, 0.3, 1), color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.row-related .swiper-nav .swiper-button-prev::after,
.row-related .swiper-nav .swiper-button-next::after {
  display: none;
}
.row-related .swiper-nav .swiper-button-prev:hover,
.row-related .swiper-nav .swiper-button-next:hover {
  background: var(--color-green);
  color: #000;
}
.row-related .swiper-nav .swiper-button-prev.swiper-button-disabled,
.row-related .swiper-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0.25;
}
.row-related .swiper-nav .swiper-scrollbar {
  height: 8px;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: 15px;
  margin: 0 50px;
}
.row-related .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-blue);
  cursor: move;
}
.row-related .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag:hover,
.row-related .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag[data-dragging] {
  background: var(--color-green);
  cursor: move;
}
@media only screen and (max-width: 820px) {
  .row-related .grid .col-1-3 {
    width: 50%;
  }
}
@media only screen and (max-width: 763px) {
  .row-related .grid .col-1-3 {
    width: 100%;
  }
}
.row-accordion {
  padding: 0 0 100px;
}
.accordion details {
  margin-bottom: 30px;
}
.accordion details summary {
  border: 2px solid var(--color-blue);
  font-size: 1.875rem;
  padding: 37px 60px;
  list-style: none;
  display: block;
  cursor: pointer;
  user-select: none;
  position: sticky;
  top: 110px;
  font-weight: normal;
  z-index: initial;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.accordion details summary em {
  float: right;
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: -8px;
}
.accordion details summary em::before,
.accordion details summary em::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  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 summary:hover {
  color: var(--color-blue);
}
.accordion details summary:hover em::before,
.accordion details summary:hover em::after {
  background: var(--color-blue);
}
.accordion details .acc-content .row {
  padding: 60px 0;
}
.accordion details[open] summary {
  background: var(--color-blue);
  color: #fff;
}
.accordion details[open] summary em::before,
.accordion details[open] summary em::after {
  background: #fff;
}
.accordion details[open] summary em::before {
  display: none;
}
.accordion > article {
  padding: 0 60px;
}
@media only screen and (max-width: 1440px) {
  .accordion {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 820px) {
  .accordion details {
    margin: 0 0 30px;
  }
  .accordion details summary {
    padding: 20px 50px 20px 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .accordion details summary em {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
  }
  .accordion details summary em::before,
  .accordion details summary em::after {
    width: 20px;
    margin-left: -10px;
    height: 2px;
  }
  .accordion article {
    padding: 50px 20px;
  }
}
/* -- Ansprechpartner und Partner -- */
.card-contact {
  max-width: 924px;
  margin: 0 auto;
}
.card-contact figure {
  display: flex;
  flex-direction: row;
  background: var(--color-green);
  background: var(--color-blue);
  color: #fff;
}
.card-contact figure .avatar,
.card-contact figure figcaption {
  width: 50%;
}
.card-contact figure .avatar {
  overflow: hidden;
}
.card-contact figure .avatar img {
  display: block;
  height: 100% !important;
  object-fit: cover;
}
.card-contact figure figcaption {
  padding: 60px;
  display: flex;
  flex-direction: column;
}
.card-contact figure figcaption h3 {
  margin-bottom: 0;
  font-weight: 600;
}
.card-contact figure figcaption p {
  font-weight: normal;
}
.card-contact figure ul.contact-list {
  padding-left: 0;
  list-style: none;
}
.card-contact figure ul.contact-list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
.card-contact figure ul.contact-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 20px;
}
.card-contact figure ul.contact-list li a {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.card-contact figure ul.contact-list li a:hover {
  text-decoration: underline;
}
.card-contact figure ul.contact-list li + li {
  margin-top: 10px;
}
.card-contact figure nav.social-media {
  margin-top: auto;
  margin-left: -5px;
}
.card-contact figure nav.social-media ul li a {
  width: 38px;
  height: 38px;
  color: black;
  text-decoration: none;
  font-size: 20px;
  display: grid;
  justify-content: center;
  align-content: center;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.card-contact figure nav.social-media ul li a:hover {
  color: #fff;
}
.card-contact figure nav.social-media ul li a.icon-twitter:hover {
  background: #1DA1F2;
}
.card-contact figure nav.social-media ul li a.icon-linkedin:hover {
  background: #0072b1;
}
.card-contact figure nav.social-media ul li a.icon-instagram:hover {
  background: #C13584;
}
.card-contact figure nav.social-media ul li a.icon-facebook:hover {
  background: #4267B2;
}
.col-1-2 .card-contact figure figcaption,
.col-1-3 .card-contact figure figcaption {
  padding: 30px;
}
.col-1-3 .card-contact figure {
  background: transparent;
  flex-direction: column;
}
.col-1-3 .card-contact figure .avatar {
  width: 50%;
}
.col-1-3 .card-contact figure figcaption {
  background: var(--color-green);
  width: auto;
  margin-left: 60px;
  margin-top: -35px;
}
@media only screen and (max-width: 820px) {
  .row-contact .grid .col {
    width: 100%;
  }
  .row-contact .card-contact figure figcaption {
    padding: 30px;
    flex: 1;
  }
}
@media only screen and (max-width: 763px) {
  .row-contact .card-contact figure figcaption {
    padding: 20px;
  }
}
@media only screen and (max-width: 820px) {
  .col-1-1 .card-contact figure .avatar,
  .col-1-2 .card-contact figure .avatar {
    width: 40%;
  }
}
@media only screen and (min-width: 821px) {
  .row-form article {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 820px) {
  .row-form .grid .col {
    width: 100%;
  }
}
@media only screen and (min-width: 821px) {
  .row-chart article {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 820px) {
  .row-chart .grid .col {
    width: 100%;
  }
}
/*
*
*   SECONDRED Boilerplate
*   Cookiebar
*   Author: SECONDRED Newmedia GmbH - www.secondred.de
*
*/
:root {
  --savebtn-color: #fff;
  --savebtn-background: #000;
  --savebtn-fontsize: 1rem;
  --savebtn-border: 0;
  --savebtn-borderadius: 6px;
}
/* -- Cookiebar -- */
.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8878;
}
.cookie-bar .content-width {
  width: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  padding: 30px 40px;
  background: #fff;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  -webkit-backdrop-filter: var(--backdrop-filter);
  backdrop-filter: var(--backdrop-filter);
}
.cookie-bar .cookie-desc {
  flex: 1 1 auto;
  width: 55%;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
.cookie-bar .cookie-desc a {
  text-decoration: none;
}
.cookie-bar .cookie-desc a:hover {
  text-decoration: underline;
}
.cookie-bar .cookie-desc p {
  margin: 0;
  padding: 0;
}
.cookie-bar .cookie-options {
  width: 45%;
  text-align: right;
}
.cookie-bar .cookie-options a {
  margin: 0 0 10px 10px;
  display: inline-block;
}
/* -- Buttons als Normaler Textlink-- */
.cookie-bar .cookie-options a.filled {
  border: 2px solid #CED2DB;
  color: #000;
  cursor: pointer;
  display: var(--button-display);
  text-align: center;
  display: inline-block;
  padding: 4px 20px 3px;
  font-weight: normal;
  text-decoration: none;
  font-family: var(--font);
  font-size: var(--button-fontsize);
  line-height: 1.688rem;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), border 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.cookie-bar .cookie-options a.btn-config.filled {
  background: transparent;
  border-color: var(--color-green);
}
.cookie-bar .cookie-options a.btn-config.filled:hover {
  background: var(--color-green);
}
.cookie-bar .cookie-options a.btn-accept.filled {
  background: var(--color-green);
  border-color: var(--color-green);
}
.cookie-bar .cookie-options a.btn-accept.filled:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.cookie-bar .cookie-options a.filled:hover {
  opacity: 0.8;
}
/* -- -- */
.cookie-opt-overlay {
  font-family: "Arial", "Helvetica", sans-serif;
  max-width: 600px;
  padding: 40px;
  color: #595959;
  background: #fff;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cookie-opt-overlay .cookie-top-container {
  max-height: 70vh;
  overflow: auto;
}
.cookie-opt-overlay .cookie-opt-title {
  font-size: 22px;
  margin-bottom: 30px;
}
.cookie-opt-overlay * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cookie-opt-overlay .cookie-opt-close {
  float: right;
  border: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  appearance: none;
  cursor: pointer;
  position: relative;
  top: -5px;
}
.cookie-opt-overlay .cookie-opt-close span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  display: inline;
}
.cookie-opt-overlay .cookie-opt-close::before,
.cookie-opt-overlay .cookie-opt-close::after {
  width: 20px;
  height: 2px;
  content: "";
  position: absolute;
  background: #808080;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -1px;
}
.cookie-opt-overlay .cookie-opt-close::before {
  transform: rotate(45deg);
}
.cookie-opt-overlay .cookie-opt-close::after {
  transform: rotate(-45deg);
}
.cookie-opt-overlay .cookie-opt-close:hover::before,
.cookie-opt-overlay .cookie-opt-close:hover::after {
  background: var(--color-blue);
}
.cookie-opt-overlay .cookie-opt-content {
  text-align: left;
}
.cookie-opt-overlay .cookie-opt-toggle {
  margin: -11px -10px -11px 20px;
  float: right;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: center;
  position: relative;
}
.cookie-opt-overlay .cookie-opt-toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -9px;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  display: block;
  transform: rotate(45deg);
}
.cookie-opt-overlay .cookie-opt-toggle.open {
  transform: rotate(180deg);
}
.cookie-opt-overlay .cookie-opt-toggle:hover::before {
  border-color: var(--color-blue);
}
.cookie-opt-overlay .cookie-opt-cattitle {
  background: #EDEDED;
  padding: 11px 10px;
  min-height: 40px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  border-top: 2px solid #fff;
}
.cookie-opt-overlay .cookie-opt-cattitle small {
  display: block;
  text-transform: none;
  font-size: 12px;
  padding-left: 30px;
  font-weight: normal;
  filter: alpha(opacity=75);
  opacity: 0.75;
  margin-right: 40px;
  padding-top: 5px;
  line-height: normal;
}
.cookie-opt-overlay .cookie-opt-cattitle:first-child {
  border-top: 0;
}
.cookie-opt-overlay .cookie-single-opt-toggle input,
.cookie-opt-overlay .cookie-opt-cattitle input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.cookie-opt-overlay .cookie-single-opt-toggle label,
.cookie-opt-overlay .cookie-opt-cattitle label {
  cursor: pointer;
}
.cookie-opt-overlay .cookie-single-opt-toggle label em,
.cookie-opt-overlay .cookie-opt-cattitle label em {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #E1E1E1;
  color: #ccc;
  float: left;
  margin-right: 10px;
  border: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  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 input:checked + label em,
.cookie-opt-overlay .cookie-opt-cattitle input:checked + label em {
  color: #fff;
  background-color: #0089c1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTEgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPjxwYXRoIGQ9Ik0xMC4wNTYsMC4wMDJjMC43ODcsMC4wNjYgMS4yMDYsMS4xMTggMC42NTEsMS43MDVsLTUuNzA3LDUuNzA3bC0zLjcwNywtMy43MDdjLTEuNDA5LC0xLjQ5IDAuNjMyLC0yLjE1NCAxLjQxNCwtMS40MTRsMi4yOTMsMi4yOTNsNC4yOTMsLTQuMjkzYzAuMzM1LC0wLjMxNyAwLjQwNCwtMC4zMDIgMC43NjMsLTAuMjkxWiIgc3R5bGU9ImZpbGw6I2ZmZjsiLz48L3N2Zz4=);
}
.cookie-opt-overlay .cookie-opt-catinfo {
  font-size: 13px;
  line-height: 16px;
  background: #F1F1F1;
  display: none;
}
.cookie-opt-overlay .cookie-opt-catinfo.active {
  display: block;
}
.cookie-opt-overlay .cookie-opt-catinfo p {
  padding: 15px 18px;
  margin: 0;
}
.cookie-opt-overlay .cookie-opt-catinfo .cookie-opt-table-wrap {
  padding: 15px 0;
  border-top: 1px solid #E4E4E4;
}
.cookie-opt-overlay .cookie-opt-catinfo table {
  table-layout: fixed;
}
.cookie-opt-overlay .cookie-opt-catinfo table th,
.cookie-opt-overlay .cookie-opt-catinfo table td {
  text-align: left;
  vertical-align: top;
  padding: 2px 18px;
}
.cookie-opt-overlay .cookie-opt-catinfo table th {
  width: 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-single-opt-toggle label span {
  display: none;
}
.cookie-opt-overlay .cookie-top-savebtn {
  width: 100%;
  cursor: pointer;
  background: var(--savebtn-background);
  color: var(--savebtn-color);
  font-size: var(--savebtn-fontsize);
  font-weight: bold;
  border-radius: var(--savebtn-borderadius);
  height: 40px;
  margin-top: 30px;
  border: 0;
}
.cookie-opt-overlay .cookie-top-savebtn:hover {
  color: #000;
  background: var(--color-green);
}
@media only screen and (max-width: 1400px) {
  .cookie-bar .cookie-desc {
    padding-left: 20px;
  }
  .cookie-bar .cookie-options {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .cookie-bar .content-width {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
  }
  .cookie-bar .cookie-desc {
    padding: 0 0 20px;
  }
  .cookie-bar .cookie-desc,
  .cookie-bar .cookie-options {
    width: 100%;
    text-align: center;
  }
  .cookie-bar .cookie-options {
    padding-right: 0;
  }
  .cookie-bar .cookie-options a.btn-config,
  .cookie-bar .cookie-options a.btn-accept {
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cookie-opt-overlay {
    max-width: 90%;
    padding: 20px;
  }
  .cookie-opt-overlay .cookie-top-savebtn {
    margin-top: 20px;
  }
  .cookie-bar .cookie-options a.btn-config,
  .cookie-bar .cookie-options a.btn-accept {
    font-size: 12px;
  }
}
body.dialog-open {
  overflow: hidden;
}
dialog {
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  -webkit-backdrop-filter: var(--backdrop-filter);
  backdrop-filter: var(--backdrop-filter);
  transition: transform 450ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
dialog .dialog-title {
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 100%;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 350ms linear;
  pointer-events: none;
}
dialog[open]::backdrop {
  opacity: 1;
}
dialog#dialog-filter {
  height: 100vh;
  width: 447px;
  padding: 80px 60px;
  max-height: none;
  overflow: auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
dialog#dialog-filter .dialog-title {
  font-size: 2.5rem;
}
dialog#dialog-filter .dialog-close {
  width: 38px;
  height: 38px;
  display: grid;
  justify-content: center;
  align-content: center;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 20px;
  position: absolute;
  right: 60px;
  top: 78px;
}
dialog#dialog-filter .dialog-close:hover {
  color: var(--color-blue);
}
dialog#dialog-eventdetails {
  width: 90vw;
  margin: 0 0 0 auto;
  border: 0;
  height: 100vh;
  overflow: auto;
  max-height: none;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  padding: 60px 100px 60px 120px;
}
dialog#dialog-eventdetails .dialog-close {
  width: 38px;
  height: 38px;
  display: grid;
  justify-content: center;
  align-content: center;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 20px;
  position: absolute;
  margin-left: -60px;
  margin-top: 0;
  float: left;
  transform: rotate(180deg);
  top: 14px;
}
dialog#dialog-eventdetails .dialog-close:hover {
  color: var(--color-blue);
}
dialog#dialog-eventdetails .dialog-close,
dialog#dialog-eventdetails nav.tabs {
  position: relative;
  z-index: 999;
}
dialog#dialog-eventdetails .row {
  background: none !important;
}
dialog#dialog-eventdetails fieldset.register legend {
  font-weight: 600;
  font-size: 3.75rem;
  margin-bottom: 60px;
}
dialog#dialog-eventdetails fieldset.register .grid {
  max-width: 924px;
  margin: 0 -15px;
}
@media only screen and (max-width: 820px) {
  dialog#dialog-eventdetails fieldset.register legend {
    font-size: 2.5rem;
    line-height: 120%;
  }
  dialog#dialog-eventdetails fieldset.register .grid .col {
    width: 100%;
  }
}
dialog#dialog-eventdetails nav.tabs {
  display: inline-block;
  top: 0;
}
dialog#dialog-eventdetails .tab-content .tab-pane {
  padding-top: 0;
}
dialog#dialog-eventdetails .tabs:not(.hidden) + .tab-content .tab-pane {
  padding-top: 30px;
}
@media only screen and (max-width: 820px) {
  dialog#dialog-eventdetails {
    width: 100vw;
    padding: 30px 25px;
    max-width: none;
  }
  dialog#dialog-eventdetails nav.tabs {
    margin-left: 40px;
  }
  dialog#dialog-eventdetails .dialog-close {
    margin-left: 0;
  }
  dialog#dialog-eventdetails fieldset {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 763px) {
  dialog#dialog-eventdetails fieldset {
    padding: 0;
  }
}
dialog#dialog-subscribe,
dialog.dialog-subscribe,
dialog.dialog-overlay {
  margin: 110px auto auto;
  max-width: 891px;
  padding: 60px;
}
dialog#dialog-subscribe .dialog-title,
dialog.dialog-subscribe .dialog-title,
dialog.dialog-overlay .dialog-title {
  font-size: 2.5rem;
}
dialog#dialog-subscribe .dialog-close,
dialog.dialog-subscribe .dialog-close,
dialog.dialog-overlay .dialog-close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  border: 0;
  background: transparent;
  display: grid;
  justify-content: center;
  align-content: center;
}
dialog#dialog-subscribe .dialog-close:hover,
dialog.dialog-subscribe .dialog-close:hover,
dialog.dialog-overlay .dialog-close:hover {
  color: var(--color-blue);
}
dialog#dialog-subscribe .taglist,
dialog.dialog-subscribe .taglist,
dialog.dialog-overlay .taglist {
  margin-bottom: 30px;
}
dialog#dialog-subscribe .form-tag,
dialog.dialog-subscribe .form-tag,
dialog.dialog-overlay .form-tag {
  margin-right: 10px;
}
dialog#dialog-subscribe .form-tag label,
dialog.dialog-subscribe .form-tag label,
dialog.dialog-overlay .form-tag label {
  background: #fff;
}
dialog#dialog-subscribe .fade-out,
dialog.dialog-subscribe .fade-out,
dialog.dialog-overlay .fade-out {
  opacity: 0;
}
dialog#dialog-search {
  margin: 110px auto auto;
  width: 90vw;
  max-width: 924px;
  padding: 60px;
}
dialog#dialog-search .dialog-close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  font-size: 20px;
  border: 0;
  background: transparent;
  display: grid;
  justify-content: center;
  align-content: center;
}
dialog#dialog-search .dialog-close:hover {
  color: var(--color-blue);
}
dialog#dialog-search fieldset {
  position: relative;
  margin-bottom: 30px;
}
dialog#dialog-search fieldset .form-item {
  margin-bottom: 0;
}
dialog#dialog-search fieldset input.form-text {
  background: #fff;
}
dialog#dialog-search fieldset button.form-submit {
  position: absolute;
  right: 0;
  bottom: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 63px;
  height: 63px;
  font-size: 40px;
  display: grid;
  justify-content: center;
  align-content: center;
}
dialog#dialog-search fieldset button.form-submit:hover {
  color: var(--color-blue);
}
dialog#dialog-search .search-results ul {
  margin-bottom: 0;
}
dialog#dialog-search .search-results ul li a {
  text-decoration: none;
  color: #000;
}
dialog#dialog-search .search-results ul li a span {
  color: var(--color-blue);
}
@media only screen and (max-width: 763px) {
  dialog#dialog-search {
    padding: 30px;
  }
  dialog#dialog-search .dialog-close {
    top: 20px;
    right: 20px;
  }
}
/* -- Beiträge Karte  -- */
dialog#dialog-posts {
  margin: 0 0 0 auto;
  max-width: 667px;
  width: 100%;
  height: 100vh;
  padding: 60px;
  overflow: auto;
  max-height: none;
}
dialog#dialog-posts .dialog-title {
  font-size: 1.875rem;
  margin-bottom: 30px;
}
dialog#dialog-posts .dialog-close {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 58px;
  left: 15px;
  cursor: pointer;
  font-size: 20px;
  border: 0;
  background: transparent;
  display: grid;
  justify-content: center;
  align-content: center;
  transform: rotate(180deg);
}
dialog#dialog-posts .dialog-close:hover {
  color: var(--color-blue);
}
dialog#dialog-posts .post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
dialog#dialog-posts::backdrop {
  display: none;
}
.row-gallery {
  background-image: url(../gfx/gallery-bg-lft.png), url(../gfx/gallery-bg-rt.png);
  background-position: left bottom, right top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.row-gallery .swiper {
  margin-bottom: 30px;
  overflow: visible;
}
.row-gallery .swiper-slide {
  width: auto;
}
.row-gallery .swiper-slide figure {
  overflow: hidden;
}
.row-gallery .swiper-slide figure img {
  display: block;
}
.row-gallery .swiper-slide figure:has(figcaption) {
  background: #000;
}
.row-gallery .swiper-slide figure:has(figcaption)::before {
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30%;
  z-index: 2;
}
.row-gallery .swiper-slide figure figcaption {
  font-size: 0.75rem;
  color: #fff;
  font-style: italic;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 20px;
  z-index: 3;
}
.row-gallery .swiper-slide figure + article {
  position: absolute;
  bottom: -15px;
  right: 30px;
  padding: 20px;
  background: var(--color-orange);
  width: 40%;
  z-index: 3;
  max-width: 300px;
}
.row-gallery .swiper-slide figure + figure,
.row-gallery .swiper-slide figure + .has-desc {
  margin-top: 30px;
}
.row-gallery .swiper-nav {
  position: relative;
  width: 100%;
  display: flex;
  max-width: 650px;
  justify-self: center;
}
.row-gallery .swiper-nav .swiper-button-prev,
.row-gallery .swiper-nav .swiper-button-next {
  width: 38px;
  height: 38px;
  min-width: 38px;
  position: static;
  display: grid;
  color: #fff;
  background: var(--color-blue);
  cursor: pointer;
  border: 0;
  margin: 0;
  font-size: 20px;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.row-gallery .swiper-nav .swiper-button-prev::after,
.row-gallery .swiper-nav .swiper-button-next::after {
  display: none;
}
.row-gallery .swiper-nav .swiper-button-prev:hover,
.row-gallery .swiper-nav .swiper-button-next:hover {
  background: var(--color-green);
  color: #000;
}
.row-gallery .swiper-nav .swiper-button-prev.swiper-button-disabled,
.row-gallery .swiper-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.row-gallery .swiper-nav .swiper-scrollbar {
  height: 8px;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: 14px;
  margin: 0 100px;
}
.row-gallery .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-green);
  cursor: move;
}
@media only screen and (max-height: 1120px) {
  .row-gallery .swiper-slide figure img {
    width: auto !important;
    height: 70vh !important;
  }
}
@media only screen and (max-width: 820px) {
  .row-gallery .swiper-slide figure img {
    width: auto !important;
    height: 325px !important;
  }
}
.row-swiper {
  overflow: hidden;
  padding-top: 60px;
}
.row-swiper .card-swiper .swiper-slide a {
  height: 100%;
  width: 100%;
  display: block;
}
.row-swiper .swiper-large {
  margin-bottom: 30px;
  overflow: visible;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide {
  width: auto;
  height: auto;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  justify-items: stretch;
  align-items: stretch;
  min-height: 0;
  min-width: 0;
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide figure {
  overflow: hidden;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide figure img {
  display: block;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related > a {
  display: block;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related h3 a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related .swiper-slide:has(img) .inner,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related .swiper-slide:has(img) figcaption {
  pointer-events: none;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small h1,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small h2,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small h3 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h1,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h1,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h2,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h2,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h3,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h3 {
  font-size: 1.875rem;
  line-height: 1.875rem;
}
@media only screen and (max-width: 763px) {
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h1,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h1,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h2,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h2,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .inner h3,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small figcaption h3 {
    font-size: 1rem;
    line-height: 120%;
  }
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h1,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h2,
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h3 {
  font-size: 3.75rem;
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related h1,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related h2,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h1,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h2,
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-large h3 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card-related.card-small .label {
    display: none;
  }
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-column-end: 3;
  min-height: 0;
  min-width: 0;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card.card-small:first-child:last-child {
  height: calc(50% - 15px);
  min-width: 360px;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card:nth-child(2) {
  grid-row-start: 1;
  grid-column-start: 3;
  grid-row-end: 2;
  grid-column-end: 4;
}
.row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card:nth-child(3) {
  grid-row-start: 2;
  grid-column-start: 3;
  grid-row-end: 3;
  grid-column-end: 4;
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 3;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card.card-small:first-child:last-child {
    height: auto;
    min-width: none;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card:nth-child(2) {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 2;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide .card:nth-child(3) {
    grid-row-start: 3;
    grid-column-start: 2;
    grid-row-end: 4;
    grid-column-end: 3;
  }
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide:nth-child(even) .card {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 3;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide:nth-child(even) .card:nth-child(2) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 2;
  }
  .row-swiper .swiper-large > .swiper-wrapper > .swiper-slide:nth-child(even) .card:nth-child(3) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
  }
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide:has(.card:first-child:nth-last-child(2)),
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide:has(.card:first-child:nth-last-child(2) ~ .card) {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide:has(.card:first-child:nth-last-child(2)),
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide:has(.card:first-child:nth-last-child(2) ~ .card) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card {
  grid-row-end: 2;
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(3) {
  grid-row-start: 2;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 3;
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(4) {
  grid-row-start: 2;
  grid-column-start: 3;
  grid-row-end: 3;
  grid-column-end: 4;
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:first-child:nth-last-child(2):nth-child(1),
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:first-child:nth-last-child(2) ~ .card:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:first-child:nth-last-child(2):nth-child(2),
.row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:first-child:nth-last-child(2) ~ .card:nth-child(2) {
  grid-area: 2 / 1 / 3 / 2;
}
@media only screen and (max-width: 820px) {
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 2;
  }
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(3) {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
  }
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(2) {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
  }
  .row-swiper .swiper-large.small-cards > .swiper-wrapper > .swiper-slide .card:nth-child(4) {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
  }
}
.row-swiper .swiper-nav {
  position: relative;
  width: 100%;
  display: flex;
}
.row-swiper .swiper-nav .swiper-scrollbar {
  height: 8px;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: 14px;
  margin: 0 auto;
  max-width: 636px;
}
.row-swiper .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-blue);
  cursor: move;
}
.row-swiper .swiper-nav .swiper-scrollbar .swiper-scrollbar-drag[data-dragging="true"] {
  background: var(--color-green) !important;
}
.row-teaser {
  padding: 0 0 var(--breadcrumb-height);
}
.row-teaser figure {
  position: relative;
}
.row-teaser figure figcaption {
  position: relative;
}
.row-teaser .figure {
  position: relative;
}
.row-teaser .figure .figcaption {
  position: relative;
}
.row-teaser .img {
  overflow: hidden;
  max-height: 50vh;
}
@media only screen and (min-width: 820px) {
  .row-teaser .img {
    min-height: 500px;
  }
}
.row-teaser .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 485px;
}
.row-teaser .img img {
  max-height: 50vh;
  height: 100% !important;
  object-position: center;
  object-fit: cover;
}
@media only screen and (min-width: 820px) {
  .row-teaser .img img {
    min-height: 500px;
  }
}
.row-teaser .label {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
.row-teaser .label::before {
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.row-teaser h1 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  hyphens: auto;
  font-size: var(--headline-1-size);
  font-size: var(--headline-1-clamp-size);
  line-height: 4.5rem;
  line-height: clamp(3rem, 4.973rem, 4.5rem);
}
@media only screen and (max-width: 567px) {
  .row-teaser h1 {
    font-size: 2rem;
    line-height: 100%;
  }
}
.row-teaser:has(.card-opt) h1 {
  max-width: calc(100% - 420px);
}
@media only screen and (max-width: 820px) {
  .row-teaser:has(.card-opt) h1 {
    max-width: none;
  }
}
.row-teaser .teaser-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 30px 30px;
}
.row-teaser .card {
  position: absolute;
  right: 60px;
  bottom: -30px;
}
@media only screen and (max-width: 1400px) {
  .row-teaser .teaser-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row-teaser .card {
    right: 30px;
  }
}
.row-teaser[data-style="dark"] .img::before {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-teaser[data-style="light"] h1 {
  color: #000;
}
.row-teaser[data-style="light"] .img::before {
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.row-teaser[data-style="noimg"] h1 {
  color: #000;
}
.row-teaser[data-style="noimg"] .teaser-content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.row-teaser[data-style="404"] {
  height: 100%;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-teaser[data-style="404"] .figure,
.row-teaser[data-style="404"] figure {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.row-teaser[data-style="404"] h1 {
  margin-bottom: 30px;
}
.row-teaser[data-style="404"] .img {
  max-height: calc(100vh - 100px);
  flex: 1;
}
.row-teaser[data-style="404"] .img::before {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 820px) {
  .row-teaser .img::before {
    display: none;
  }
  .row-teaser .label {
    position: absolute;
    left: 30px;
    top: 20px;
  }
  .row-teaser h1 {
    color: #000;
    order: 2;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .row-teaser .card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
  }
  .row-teaser figure figcaption {
    position: static;
  }
  .row-teaser .figure .figcaption {
    position: static;
  }
  .row-teaser .teaser-content {
    position: static;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}
.row-image {
  background-image: url(../gfx/image-bg-lft-2.png), url(../gfx/image-bg-rt-2.png);
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
}
.row-image .content-width {
  position: relative;
}
.row-image figure {
  position: relative;
  overflow: hidden;
}
.row-image figure img {
  display: block;
}
.row-image figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 30px 20px;
  color: #fff;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-image figure:has(figcaption) {
  background: #000;
}
.row-image article {
  position: absolute;
  right: 120px;
  bottom: -20px;
  background: var(--color-orange);
  padding: 30px;
  max-width: 448px;
}
.row-image article p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1120px) {
  .row-image article {
    right: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .row-image figure figcaption {
    bottom: auto;
    top: 0;
    padding: 20px 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  }
  .row-image article {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -30px 30px 0;
    max-width: none;
  }
}
@media only screen and (max-width: 820px) {
  .row-image article {
    padding: 20px;
    position: relative;
    right: auto;
    bottom: auto;
    margin: -20px 20px 0;
    max-width: none;
  }
}
/* -- Collage -- */
.row-collage {
  background-image: url(../gfx/image-bg-lft-2.png), url(../gfx/image-bg-rt-2.png);
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
}
.row-collage .has-desc {
  position: relative;
}
.row-collage .has-desc + figure,
.row-collage .has-desc + .has-desc {
  margin-top: 30px;
}
.row-collage .grid {
  margin: 0 -15px;
}
.row-collage .grid .col {
  padding: 0 15px;
}
.row-collage figure {
  position: relative;
  overflow: hidden;
}
.row-collage figure img {
  display: block;
  position: relative;
}
.row-collage figure:has(figcaption) {
  background: #000;
}
.row-collage figure:has(figcaption)::before {
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30%;
  z-index: 2;
}
.row-collage figure figcaption {
  font-size: 0.75rem;
  color: #fff;
  font-style: italic;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 20px;
  z-index: 3;
}
.row-collage figure .desc-wrap {
  position: relative;
}
.row-collage figure + figure,
.row-collage figure + .has-desc {
  margin-top: 30px;
}
.row-collage article {
  position: absolute;
  bottom: -15px;
  right: 30px;
  padding: 20px;
  background: var(--color-orange);
  width: 40%;
  z-index: 3;
  max-width: 300px;
}
.row-collage.no-shadow figure::before {
  display: none;
}
.row-collage[data-count="2"] .grid .col:last-child {
  padding-top: 120px;
}
@media only screen and (max-width: 820px) {
  .row-collage[data-count="2"] .grid .col {
    width: 100%;
  }
  .row-collage[data-count="2"] .grid .col:last-child {
    padding-top: 0;
  }
}
.row-collage[data-count="3"] .grid .col {
  justify-content: center;
}
.row-collage[data-count="3"] .grid .col,
.row-collage[data-count="4"] .grid .col {
  display: flex;
  flex-direction: column;
}
.row-collage[data-count="3"] .grid .col:first-child,
.row-collage[data-count="4"] .grid .col:first-child {
  flex-wrap: wrap;
  align-items: flex-end;
}
.row-collage[data-count="3"] .grid .col:first-child figure.small,
.row-collage[data-count="4"] .grid .col:first-child figure.small {
  width: 65%;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc:has(.small),
.row-collage[data-count="4"] .grid .col:last-child .has-desc:has(.small),
.row-collage[data-count="3"] .grid .col:last-child figure.small,
.row-collage[data-count="4"] .grid .col:last-child figure.small {
  width: 45%;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc,
.row-collage[data-count="4"] .grid .col:last-child .has-desc {
  margin-right: auto;
}
.row-collage[data-count="3"] .grid .col:last-child .has-desc figure.small,
.row-collage[data-count="4"] .grid .col:last-child .has-desc figure.small {
  width: auto;
}
@media only screen and (max-width: 820px) {
  .row-collage[data-count="3"] .has-desc {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid .col {
    width: 100%;
    position: relative;
  }
  .row-collage[data-count="3"] .grid .col:first-child {
    align-items: flex-start;
  }
  .row-collage[data-count="3"] .grid .col:first-child figure:not(.small) {
    width: 100%;
  }
  .row-collage[data-count="3"] .grid .col:first-child figure.small {
    width: calc(40% - 15px);
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 20px;
  }
  .row-collage[data-count="3"] .grid .col:last-child {
    align-items: flex-end;
  }
  .row-collage[data-count="3"] .grid .col:last-child figure {
    width: calc(60% - 15px);
  }
  .row-collage[data-count="4"] .grid {
    margin: 0;
  }
  .row-collage[data-count="4"] .grid .col {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .row-collage[data-count="4"] .grid .col figure {
    width: 100%;
  }
  .row-collage[data-count="4"] .grid .col figure + figure {
    margin-top: 20px;
  }
  .row-collage[data-count="4"] .grid .col figure.small {
    width: calc(50% - 20px);
  }
  .row-collage[data-count="4"] .grid .col:first-child figure.small {
    width: calc(50% - 10px);
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 20px;
  }
  .row-collage[data-count="4"] .grid .col:last-child {
    padding-top: 0;
  }
  .row-collage[data-count="4"] .grid .col:last-child figure.small {
    width: calc(50% - 10px);
  }
}
.row-events {
  background-image: url(../gfx/events-bg-lft.png), url(../gfx/events-bg-rt.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.row-events .grid {
  margin: 0 -15px 30px;
}
.row-events .grid .col {
  padding: 0 15px;
}
.row-events .grid .col .card {
  height: 100%;
}
.row-events .grid .col .card h3 {
  font-size: 1.875rem;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.row-events .grid .col .card .inner {
  height: 100%;
}
.row-events .grid .col .card .inner .event-desc {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.row-events .grid .col .card .inner .btn {
  margin-top: auto;
  margin-bottom: 0;
  margin-right: auto;
}
@media only screen and (max-width: 820px) {
  .row-events .grid .col-1-3 {
    width: 50%;
  }
}
@media only screen and (max-width: 763px) {
  .row-events .grid .col-1-3 {
    width: 100%;
  }
}
.row-eventlist {
  padding: 50px 30px 60px;
  background-image: url(../gfx/event-list-bg.png);
  background-repeat: no-repeat;
}
.row-eventlist .event-list {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.row-eventlist .event-list .event-month {
  width: 245px;
}
.row-eventlist .event-list .event-month .month {
  position: sticky;
  top: 110px;
  padding-top: 30px;
}
.row-eventlist .event-list .event-month .month::before {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-blue);
}
.row-eventlist .event-list .event-month .month strong,
.row-eventlist .event-list .event-month .month small {
  display: block;
  font-weight: normal;
}
.row-eventlist .event-list .event-month .month strong {
  font-size: 5rem;
  line-height: 5rem;
  color: var(--color-grey);
  font-weight: bold;
}
.row-eventlist .event-list .event-month .month small {
  font-size: 1rem;
  color: var(--color-darkgrey);
}
.row-eventlist .event-list .event-items {
  flex: 1;
}
.row-eventlist .event-list .event-items .card + .card {
  margin-top: 30px;
}
.row-eventlist .event-list .event-items .card-event figure {
  overflow: hidden;
  width: 205px;
  min-width: 205px;
  position: relative;
}
.row-eventlist .event-list .event-items .card-event figure img {
  height: 100% !important;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi {
  display: none;
  padding: 30px;
  width: 100%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi strong,
.row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi small {
  display: block;
  line-height: 100%;
}
.row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi strong {
  font-size: 3.75rem;
  font-weight: normal;
}
.row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi small {
  font-size: 1rem;
}
.row-eventlist .event-list .event-items .card-event.has-img {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 763px) {
  .row-eventlist .event-list .event-items .card-event figure {
    width: 100%;
  }
  .row-eventlist .event-list .event-items .card-event figure img {
    width: 100% !important;
  }
  .row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi {
    display: block;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi strong,
  .row-eventlist .event-list .event-items .card-event figure figcaption.show-mobi small {
    display: block;
    font-weight: normal;
  }
  .row-eventlist .event-list .event-items .card-event.has-img {
    display: flex;
    flex-direction: column;
  }
  .row-eventlist .event-list .event-items .card-event .day {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .row-eventlist .event-list {
    flex-direction: column;
  }
  .row-eventlist .event-list .event-month {
    width: auto;
    margin-bottom: 30px;
  }
}
.row-eventhead .figure {
  display: flex;
  flex-direction: row-reverse;
}
.row-eventhead .figure .img {
  width: 33.333%;
  overflow: hidden;
  margin-bottom: auto;
}
.row-eventhead .figure .img img {
  display: block;
}
.row-eventhead .figure .figcaption {
  flex: 1;
  margin-left: 100px;
  position: relative;
  padding-right: 30px;
}
@media only screen and (max-width: 1366px) {
  .row-eventhead .figure .figcaption {
    margin-top: 50px;
  }
}
.row-eventhead .event-ics {
  display: block;
  position: relative;
  top: -2px;
  margin-right: 10px;
  margin-left: -12px;
}
.row-eventhead .event-ics .btn {
  padding: 4px 10px 3px;
}
.row-eventhead .date {
  position: static;
  left: -100px;
}
.row-eventhead .date strong,
.row-eventhead .date small {
  display: block;
  font-weight: normal;
}
.row-eventhead .date strong {
  font-size: 5rem;
  line-height: 100%;
  font-weight: normal;
  margin-left: -5px;
}
.row-eventhead .date small {
  font-size: 1rem;
}
.row-eventhead:has(.img) .date {
  position: absolute;
}
.row-eventhead h2 {
  font-size: 3.75rem;
  font-size: clamp(2.5rem, 4.143rem, 3.75rem);
  line-height: 4.5rem;
  line-height: clamp(3rem, 4.973rem, 4.5rem);
  margin-left: 0;
  padding-top: 0;
}
.row-eventhead h2::before {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .row-eventhead h2 {
    font-size: 3.75vw;
    line-height: 4.5vw;
  }
}
.row-eventhead ul.event-info {
  list-style: none;
  padding-left: 0;
  font-weight: normal;
}
.row-eventhead ul.event-info li {
  position: relative;
  padding-left: 30px;
}
.row-eventhead ul.event-info li::before {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  text-align: center;
}
@media only screen and (max-width: 820px) {
  .row-eventhead .figure {
    flex-direction: column;
  }
  .row-eventhead .figure .img {
    margin-left: auto;
  }
  .row-eventhead .figure .figcaption {
    margin-left: 0;
    margin-top: 30px;
  }
  .row-eventhead .date {
    left: 0;
    bottom: 100%;
    margin-bottom: 30px;
  }
}
.tabs:not(.hidden) + .tab-content .row-eventhead .figure .figcaption {
  margin-top: 100px;
}
@media only screen and (max-width: 820px) {
  .tabs:not(.hidden) + .tab-content .row-eventhead .figure .figcaption {
    margin-top: 30px;
  }
}
.row-filter {
  padding: 30px;
  background: transparent;
}
.row-filter .filter-bar button {
  font-family: var(--font);
  cursor: pointer;
  font-size: 1rem;
  border: 0;
  font-weight: 600;
  color: #fff;
  height: 38px;
  margin-right: 20px;
}
.row-filter .filter-bar button.open-filter {
  display: none;
}
.row-filter .filter-bar button::before {
  font-size: 20px;
  position: relative;
  top: 3px;
}
.row-filter .filter-bar button.btn-blank {
  color: rgba(0, 0, 0, 0.5);
}
.row-filter .filter-bar button.btn-blank:focus,
.row-filter .filter-bar button.btn-blank:hover {
  color: var(--color-green);
}
.row-overview {
  padding: 0 30px 60px;
  background-image: url(../gfx/overview-bg.png);
  background-position: left top;
  background-size: auto auto;
  background-repeat: no-repeat;
}
.row-overview .overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  grid-template-rows: auto;
  grid-auto-flow: dense;
  grid-gap: 20px;
  margin-bottom: 60px;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
}
.row-overview .overview-grid .card {
  aspect-ratio: 1 / 1;
  background: #ccc;
  position: relative;
  max-width: 750px;
  /* &:nth-child(2){grid-area: 1 / 3 / 2 / 4;}
            &:nth-child(3){grid-area: 1 / 4 / 2 / 5;}
            &:nth-child(4){grid-area: 1 / 5 / 2 / 6;}
            &:nth-child(5){grid-area: 2 / 3 / 3 / 4;} */
}
.row-overview .overview-grid .card:first-child:last-child {
  max-width: 548px;
}
.row-overview .overview-grid .card figure.inner {
  padding: 0;
}
.row-overview .overview-grid .card figure.inner .img {
  overflow: hidden;
}
.row-overview .overview-grid .card figure.inner .img img {
  display: block;
}
.row-overview .overview-grid .card figure.inner figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: flex-end;
}
.row-overview .overview-grid .card div.inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 763px) {
  .row-overview .overview-grid .card:not(.card-large) {
    width: 100%;
  }
}
@media only screen and (max-width: 820px) {
  .row-overview .overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    grid-template-rows: none;
  }
}
@media only screen and (max-width: 763px) {
  .row-overview .overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(195px, auto));
  }
}
.row-overview .overview-grid .card-skeleton {
  display: none;
}
.row-overview .overview-grid.loading .card-skeleton {
  display: block;
}
.row-overview .overview-grid.loading .card-excerpt {
  display: none;
}
.row-overview .overview-grid .card-large {
  grid-column: span 2 / auto;
  grid-row: span 2 / auto;
}
@media only screen and (min-width: 1440px) {
  .row-overview .overview-grid .card-large {
    max-width: 750px;
  }
}
.row-overview .overview-grid:has( > *:nth-child(1)) .row-overview .overview-grid:has( > *:nth-child(2)) .card-large,
.row-overview .overview-grid:has( > *:nth-child(3)) .card-large {
  grid-column: span 2 / auto;
  grid-row: span 2 / auto;
}
@media only screen and (min-width: 1440px) {
  .row-overview .overview-grid:has( > *:nth-child(1)) .row-overview .overview-grid:has( > *:nth-child(2)) .card-large,
  .row-overview .overview-grid:has( > *:nth-child(3)) .card-large {
    max-width: none;
  }
}
.row-headline {
  background: var(--color-blue);
  color: #fff;
  padding-bottom: 40px;
}
.row-headline h1 {
  font-weight: 600;
  margin-bottom: 0;
}
.tab-content .tab-pane {
  display: none;
  padding-top: 110px;
}
.tab-content .tab-pane.active {
  display: block;
}
nav.tabs {
  height: 63px;
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
}
nav.tabs ul {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  overflow: hidden;
  overflow-x: auto;
}
nav.tabs ul li {
  margin-bottom: 0;
}
nav.tabs ul li a {
  height: 59px;
  text-decoration: none;
  color: #fff;
  font-size: 1.563rem;
  font-weight: normal;
  padding: 17px 30px;
  display: block;
  white-space: nowrap;
  transition: background 350ms cubic-bezier(0.2, 1, 0.3, 1), color 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
nav.tabs ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
nav.tabs ul li a.active {
  background: #fff;
  color: #000;
}
@media only screen and (max-width: 820px) {
  nav.tabs {
    height: 55px;
  }
  nav.tabs ul li a {
    font-size: 1.25rem;
    height: 51px;
    padding: 14px 30px;
  }
}
.row-tabs nav.tabs {
  position: sticky;
  top: 110px;
  z-index: 666;
}
@media only screen and (max-width: 820px) {
  .row-tabs nav.tabs {
    width: calc(100vw - 30px);
  }
  .row-tabs nav.tabs::before {
    content: "";
    width: 70px;
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 158, 209, 0) 0%, #009ed1 100%);
    display: block;
  }
}
@media only screen and (max-width: 390px) {
  .row-tabs nav.tabs {
    /*width: calc(100vw - 20px); */
  }
}
.row-tabs .row {
  padding: 0 0 30px;
}
.row-text .content-width {
  max-width: 923px;
  margin: 0 auto;
}
.row-text-image {
  background-image: url(../gfx/textimg-bg-lft.png);
  background-position: left center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.row-text-image h2 {
  font-size: 3.75rem;
  font-size: clamp(2.5rem, 4.54rem, 3.75rem);
  line-height: 3.75rem;
  line-height: clamp(2.5rem, 4.54rem, 3.75rem);
}
.row-text-image .grid {
  margin: 0 -45px;
}
.row-text-image .grid .col {
  padding: 0 45px;
}
.row-text-image .col-img:has(article) {
  position: relative;
}
.row-text-image .col-img:first-child,
.row-text-image .col-img:last-child {
  display: flex;
  flex-direction: column;
}
.row-text-image .col-img:first-child {
  align-items: flex-end;
}
.row-text-image .col-img:last-child {
  align-items: flex-start;
}
.row-text-image .col-img .desc-wrap {
  position: relative;
  width: 100%;
}
.row-text-image .col-img .desc-wrap article {
  position: absolute;
  bottom: -15px;
  right: 30px;
  padding: 20px;
  background: var(--color-orange);
  width: 40%;
  z-index: 3;
  max-width: 300px;
}
.row-text-image .col-img figure {
  position: relative;
  overflow: hidden;
}
.row-text-image .col-img figure img {
  display: block;
}
.row-text-image .col-img figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 10px 10px;
  color: #fff;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.row-text-image .col-img figure + figure,
.row-text-image .col-img figure + .desc-wrap + figure {
  margin-top: 30px;
}
.row-text-image .col-img figure:not(.small) {
  width: 100%;
}
.row-text-image .col-img figure.has-desc {
  order: 2;
}
.row-text-image .col-img figure.has-desc + .desc-wrap article {
  bottom: auto;
  top: 0;
}
.row-text-image .col-img figure.has-desc + .desc-wrap + figure.small {
  order: 4;
}
.row-text-image .col-img figure.has-desc + .desc-wrap + figure + .desc-wrap {
  order: 3;
  top: 30px;
}
.row-text-image .col-img figure.small.has-desc + .desc-wrap {
  top: 30px;
}
.row-text-image .col-img figure.small.has-desc + .desc-wrap article {
  bottom: auto;
  top: 0;
}
.row-text-image .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-text-image .col-text:first-child article {
  padding-left: 60px;
}
@media only screen and (max-width: 820px) {
  .row-text-image {
    background-size: 70% auto;
    background-position: left 400px;
    padding: 0 30px 50px;
  }
  .row-text-image .grid .col {
    width: 100%;
  }
  .row-text-image .col-text {
    order: 1;
    margin-bottom: 0;
  }
  .row-text-image .col-img {
    order: 0;
    margin-bottom: 30px;
  }
  .row-text-image .col-img figure.small {
    width: 50%;
  }
}
@media only screen and (max-width: 763px) {
  .row-text-image h2 {
    font-weight: normal;
  }
  .row-text-image .col-text:first-child article {
    padding-left: 0;
  }
}
@media only screen and (max-width: 390px) {
  .row-text-image {
    padding: 0 20px 50px;
  }
}
.row-quote {
  background-image: url(../gfx/quote-bg-lft.png), url(../gfx/quote-bg-rt.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  padding-top: 100px;
}
.row-quote .content-width {
  max-width: 1042px;
}
.row-quote blockquote {
  font-size: 2rem;
  line-height: 140%;
  position: relative;
  padding-top: 60px;
}
.row-quote blockquote::before {
  color: var(--color-orange);
  color: var(--color-green);
  position: absolute;
  top: -50px;
  font-size: 80px;
  right: 0;
}
.row-quote blockquote p:first-child {
  position: relative;
}
.row-quote blockquote p:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  background: var(--color-blue);
  width: 100px;
  height: 2px;
  display: block;
}
.row-quote .col-3-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row-quote h3 {
  color: var(--color-blue);
  margin-bottom: 0;
}
.row-quote figure img {
  display: block;
  margin-bottom: 30px;
}
.row-quote figure figcaption {
  font-weight: normal;
}
@media only screen and (max-width: 820px) {
  .row-quote {
    background-position: left 70%, right 30%;
    background-size: 40% auto;
  }
  .row-quote figure {
    margin-left: 20%;
  }
  .row-quote .grid {
    flex-direction: column;
  }
  .row-quote .grid .col {
    width: 100%;
  }
  .row-quote blockquote {
    position: static;
    font-size: 1.563rem;
    line-height: 2.375rem;
  }
  .row-quote blockquote::before {
    top: -40px;
    font-size: 70px;
  }
  .row-quote blockquote p:first-child::after {
    top: -30px;
  }
}
@media only screen and (max-width: 763px) {
  .row-quote figure {
    margin-left: 33.333333%;
  }
}
.map-pin {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: border-radius 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.map-pin::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  background: black;
  opacity: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 450ms cubic-bezier(0.2, 1, 0.3, 1), opacity 350ms cubic-bezier(0.2, 1, 0.3, 1);
}
.map-pin.cluster {
  width: 40px;
  height: 40px;
  background: #737373;
}
.map-pin.cluster button {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-family: var(--font);
  border: 0;
  display: grid;
  justify-content: center;
  align-content: center;
}
.map-pin.open {
  border-radius: 50%;
}
.map-pin.open::before {
  opacity: 0.4;
  transform: scale(1);
}
#content-hub-map {
  overflow: hidden;
}
.row-map {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.row-map .content {
  height: 100%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 800px;
}
.row-map .map-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.row-map .map-wrap img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
.row-map .map-options {
  position: relative;
  margin-top: auto;
}
.row-map .map-options .btn {
  position: absolute;
  right: 0;
  bottom: 100px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.row-map .card-related {
  width: 264px;
}
.row-map .card-related h3 {
  font-size: 1.25rem;
}
.row-map .card-related .label {
  left: 30px;
  font-size: 0.875rem;
}
.row-map .card-related .inner {
  padding: 30px;
}
.row-map .card-related.open {
  display: block;
}
.row-map .gm-style .gm-style-iw-c {
  background: transparent;
  padding: 0;
}
.row-map .gm-style .gm-style-iw-d {
  overflow: visible !important;
}
.row-map .gm-style .gm-style-iw-tc {
  display: none !important;
}
.row-map .gm-style button.gm-ui-hover-effect {
  right: 0 !important;
  top: 0 !important;
}
.row-map .map-placeholder {
  position: relative;
  flex: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  background-image: url(../gfx/map-placeholder-bg.png), url(../gfx/map-placeholder.png);
  background-position: left top, 55% center;
  background-repeat: no-repeat;
  background-size: auto, contain;
}
.row-map .map-placeholder .map-placeholder-text {
  font-size: 1.25rem;
  max-width: 550px;
  text-align: center;
  font-weight: normal;
  padding: 0 20px;
  padding-top: 100px;
}
.row-map .map-placeholder .map-placeholder-text p {
  margin-bottom: 50px;
}
.row-searchresults {
  padding: 60px 0;
}
.row-searchresults .content-width {
  max-width: 924px;
}
.row-searchresults nav.tabs {
  margin-bottom: 50px;
  position: sticky;
  top: 110px;
  z-index: 666;
}
.row-searchresults .search-exerpt {
  margin-bottom: 50px;
}
.row-searchresults .search-exerpt .cat {
  font-weight: normal;
  color: var(--color-darkgrey);
}
.row-searchresults .search-exerpt h2 {
  padding-top: 0;
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 20px;
}
.row-searchresults .search-exerpt h2 span {
  color: var(--color-azurblue);
}
.row-searchresults .search-exerpt h2::before {
  display: none;
}
.row-searchresults .search-exerpt p span {
  color: var(--color-azurblue);
}
.row-audio {
  background-image: url(../gfx/audio-bg-lft.png), url(../gfx/audio-bg-rt.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.row-audio article {
  padding: 60px;
}
@media only screen and (max-width: 1024px) {
  .row-audio article {
    padding: 30px;
  }
}
.row-audio .grid {
  position: relative;
  z-index: 2;
}
.row-audio .grid .col {
  margin-bottom: 0;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}
.row-audio .grid::before {
  content: "";
  background: #F2F2F2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
}
@media only screen and (max-width: 820px) {
  .row-audio .grid .col {
    width: 100%;
  }
}
.audioplayer {
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -20px;
  margin-right: 30px;
}
.audioplayer::before {
  content: "";
  background: var(--color-blue);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.audioplayer .equalizer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  height: 100px;
  margin: 0 auto;
}
.audioplayer .equalizer .eq-line {
  background: #009ED1;
  width: calc(100% / 15);
  margin: auto 2px 0;
  mix-blend-mode: multiply;
}
.audioplayer .equalizer .eq-line:nth-child(1) {
  background: #A2CDE9;
  opacity: 0.6;
}
.audioplayer .equalizer .eq-line:nth-child(2) {
  background: #A2CDE9;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(3) {
  background: #009ED1;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(4) {
  background: #A2CDE9;
}
.audioplayer .equalizer .eq-line:nth-child(5) {
  background: #A2CDE9;
  opacity: 0.6;
}
.audioplayer .equalizer .eq-line:nth-child(6) {
  background: #009ED1;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(7) {
  background: #A2CDE9;
  opacity: 0.6;
}
.audioplayer .equalizer .eq-line:nth-child(8) {
  background: #A2CDE9;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(9) {
  background: #009ED1;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(10) {
  background: #A2CDE9;
}
.audioplayer .equalizer .eq-line:nth-child(11) {
  background: #A2CDE9;
  opacity: 0.6;
}
.audioplayer .equalizer .eq-line:nth-child(12) {
  background: #009ED1;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(13) {
  background: #009ED1;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(14) {
  background: #A2CDE9;
  opacity: 0.8;
}
.audioplayer .equalizer .eq-line:nth-child(15) {
  background: #A2CDE9;
  opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
  .audioplayer .equalizer .eq-line {
    width: 15%;
  }
}
.audioplayer .audio-starttime,
.audioplayer .audio-totaltime {
  color: #fff;
  padding-top: 20px;
  font-weight: normal;
}
.audioplayer .audio-starttime {
  float: left;
}
.audioplayer .audio-totaltime {
  float: right;
}
.audioplayer .audioplayer-inner {
  flex: 1;
}
.audioplayer .progress-container {
  height: 8px;
}
.audioplayer progress {
  width: 100%;
  margin: 0;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  overflow: hidden;
}
.audioplayer progress::-webkit-progress-bar {
  background: #F2F2F2;
}
.audioplayer progress::-webkit-progress-value {
  background: var(--color-green);
}
.audioplayer .btn-play {
  width: 60px;
  height: 60px;
  border: 0;
  background: var(--color-green);
  display: grid;
  justify-content: center;
  align-content: center;
  font-size: 36px;
  text-indent: 3px;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 30px;
}
.audioplayer .btn-play:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-green);
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line {
  mix-blend-mode: normal;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(1) {
  height: 21% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(2) {
  height: 52% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(3) {
  height: 85% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(4) {
  height: 35% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(5) {
  height: 56% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(6) {
  height: 25% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(7) {
  height: 78% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(8) {
  height: 36% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(9) {
  height: 47% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(10) {
  height: 90% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(11) {
  height: 64% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(12) {
  height: 44% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(13) {
  height: 63% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(14) {
  height: 69% !important;
}
.audioplayer .btn-play.icon-play ~ .audioplayer-inner .equalizer .eq-line:nth-child(15) {
  height: 14% !important;
}
@media only screen and (max-width: 1366px) {
  .audioplayer {
    padding: 30px;
  }
}
@media only screen and (max-width: 820px) {
  .audioplayer {
    margin-right: 0;
  }
}
.row-wizard {
  background-image: url(../gfx/wizard-bg-lft.png), url(../gfx/wizard-bg-rt.png);
  background-position: left center, right center;
  background-repeat: no-repeat;
  position: relative;
}
.row-wizard::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 121px;
  background: url(../gfx/fragezeichen.svg);
  right: 60px;
  top: 60px;
}
.row-wizard .swiper-button-next {
  position: relative;
  right: auto;
  margin: auto;
  width: auto;
  padding: 0 20px;
}
.row-wizard .swiper-button-next:after {
  display: none;
}
.row-wizard .swiper-nav {
  display: flex;
  flex-direction: column;
}
.row-wizard .swiper-slide {
  height: auto;
}
.row-wizard .swiper-slide .form-radio label,
.row-wizard .swiper-slide .form-radio input {
  display: none;
}
.row-wizard .swiper-slide.swiper-slide-active .form-radio label {
  display: flex;
}
.row-wizard .swiper-slide.swiper-slide-active .form-radio input {
  display: block;
}
.row-wizard .swiper-scrollbar {
  height: 8px;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0 auto;
  margin-top: 30px;
  width: 448px;
}
.row-wizard .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-green);
  cursor: default;
}
@media only screen and (max-width: 820px) {
  .row-wizard .swiper-scrollbar {
    width: 100%;
  }
}
.row-wizard figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.row-wizard figure img {
  display: block;
}
.row-wizard figure:has(figcaption)::before {
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30%;
  z-index: 2;
}
.row-wizard figure figcaption {
  font-size: 0.75rem;
  color: #fff;
  font-style: italic;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 20px;
  z-index: 3;
}
.row-wizard figure figcaption p {
  margin-bottom: 0;
}
.row-wizard.no-image .grid .col-1-3 {
  display: none;
}
.row-wizard.no-image .grid .col-2-3 {
  width: 100%;
  max-width: 923px;
  margin: 0 auto;
}
@media only screen and (max-width: 820px) {
  .row-wizard {
    background-position: left 200px, right 400px;
    background-size: 50% auto, 30% auto;
  }
  .row-wizard figure {
    margin: 0 20px 30px;
  }
  .row-wizard .grid .col {
    width: 100%;
  }
}
fieldset.wizard {
  padding: 30px 60px;
}
fieldset.wizard h3 {
  font-weight: 600;
  font-size: 2.5rem;
}
fieldset.wizard .grid .col:last-child {
  margin-bottom: 0;
}
fieldset.wizard .grid .col-1-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
fieldset.wizard .grid .col-1-1 .form-item {
  width: 100%;
  max-width: 445px;
}
@media only screen and (max-width: 820px) {
  fieldset.wizard {
    padding: 30px 20px;
  }
  fieldset.wizard h3 {
    text-align: center;
  }
}
.last-slide fieldset.wizard {
  height: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
}
.last-slide p {
  font-size: 1.4rem;
  line-height: 130%;
}
.row-doc {
  padding-bottom: 100px;
}
@media only screen and (max-width: 820px) {
  .row-doc .grid {
    flex-direction: column-reverse;
  }
  .row-doc .grid .col {
    width: 100%;
  }
}
/* -- Dflip Override -- */
.df-ui-wrapper {
  box-shadow: none;
}
.df-ui-wrapper,
.df-ui-btn {
  background: var(--color-green);
  color: #000;
  font-size: 20px;
}
.df-floating .df-ui-controls {
  bottom: 0;
  padding: 10px;
}
.df-ui-controls {
  height: 60px;
}
.df-ui-page label {
  color: #000;
  font-size: 1rem;
}
.df-ui-alt.df-ui-next {
  border-right: 0;
  margin-right: 20px;
  padding-right: 20px;
}
.df-ui-alt.df-ui-next::after {
  content: "";
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
  height: 30px;
  position: absolute;
  right: -1px;
  top: 50%;
  margin-top: -15px;
}
.df-container > .df-ui-next,
.df-container > .df-ui-prev {
  display: none !important;
}
.df-ui-btn.disabled,
.df-ui-btn.disabled:hover {
  color: rgba(0, 0, 0, 0.3);
}
.row-video .video a {
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}
.row-video .video a:hover {
  cursor: pointer;
}
.row-video .video a img {
  display: block;
}
.row-video .video a em {
  width: 120px;
  height: 120px;
  background: var(--color-green);
  font-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -60px;
  margin-top: -60px;
  display: grid;
  justify-content: center;
  align-content: center;
  text-indent: 4px;
}
@media only screen and (max-width: 820px) {
  .row-video .video a em {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    font-size: 30px;
  }
}
.row-video .video a:focus em,
.row-video .video a:hover em {
  background: var(--color-blue);
  color: #fff;
}
.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 {
  max-width: 100%;
}
:root {
  --table-padding: 25px 55px;
}
.row-table table {
  width: 100%;
}
.row-table table th,
.row-table table td {
  padding: var(--table-padding);
  border-left: 1px solid var(--color-blue);
}
.row-table table th:first-child,
.row-table table td:first-child {
  border-left: 0;
}
.row-table table th.left,
.row-table table td.left {
  text-align: left;
}
.row-table table th.center,
.row-table table td.center {
  text-align: center;
}
.row-table table th.right,
.row-table table td.right {
  text-align: right;
}
.row-table table th.bold,
.row-table table td.bold {
  font-weight: 600;
}
.row-table table th.italic,
.row-table table td.italic {
  font-style: italic;
}
.row-table table th.underline,
.row-table table td.underline {
  text-decoration: underline;
}
.row-table table thead {
  color: var(--color-blue);
  border-bottom: 5px solid var(--color-blue);
}
.row-table table tbody tr:nth-child(even) th,
.row-table table tbody tr:nth-child(even) td {
  background: #ECF5FB;
}
@media only screen and (max-width: 820px) {
  .row-table .table-outer {
    margin-right: -30px;
    position: relative;
  }
  .row-table .table-outer::before {
    content: "";
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 158, 209, 0) 0%, #009ed1 100%);
    display: block;
    opacity: 0.4;
  }
  .row-table .table-wrap {
    overflow: auto;
  }
  .row-table .table-wrap table {
    width: auto;
  }
  .row-table .table-wrap table th,
  .row-table .table-wrap table td {
    min-width: 200px;
    padding: 20px 30px;
  }
}
/* Custom Styles & Experimental  - */
:root {
  --color-blue: #0089C1;
  --color-lightblue: #A2CDE9;
  --color-yellow: #FFCC00;
  --color-orange: #F18C00;
  --color-red: #E53517;
  --color-lightgreen: #C9CC0E;
  --color-green: #6AB023;
  --color-prime: #6ab023;
  --color-darkgrey: #737373;
  --color-grey: #ccc;
  --color-midgrey: #BFBFBF;
  --color-lightgrey: #F2F2F2;
  --backdrop-filter: blur(12.5px) saturate(120%);
  --swiper-scrollbar-border-radius: 0;
  --color-menu-black: #030405;
}
.hidden {
  display: none !important;
}
.anchor {
  display: block;
  scroll-margin-top: 150px;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.has-gradient .container {
  background-image: url(../gfx/overview-bg.png);
  background-position: left top;
  background-size: auto auto;
  background-repeat: no-repeat;
}
body.has-gradient .header {
  background: transparent;
}
.fill-header .header {
  background: #fff !important;
  box-shadow: var(--header-menu-shadow);
}
body.error-404 main {
  display: flex;
  flex-direction: column;
}
.link-list {
  padding-left: 0;
}
.link-list > div {
  list-style: none;
  margin-bottom: 20px;
}
.link-list > div a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
  color: #000;
}
.link-list > div a em {
  width: 38px;
  height: 38px;
  background: var(--color-green);
  margin-right: 10px;
  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);
}
.link-list > div a strong {
  margin-right: 10px;
}
.link-list > div a small {
  margin-left: 10px;
}
.link-list > div a:hover em {
  background: var(--color-orange);
}
.link-list > div a.btn {
  display: inline-block;
}
p + .link-list {
  margin-top: 26px;
}
article + .link-list {
  margin-top: 40px;
}
/* digital-erleben */
#digital-erleben-map .map-marker {
  position: absolute;
}
#digital-erleben-map .map-marker:not([data-state="active"]):hover .map-marker-img::after {
  transform: scale(1.5);
}
#digital-erleben-map .map-marker::after {
  content: attr(data-children);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  font-size: 1em;
  display: flex;
  color: #fff;
  font-weight: 500;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#digital-erleben-map .map-marker-img {
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#digital-erleben-map .map-marker-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-yellow);
  opacity: 0.2;
  transition: opacity 0.5s, transform 0.5s;
}
#digital-erleben-map .map-marker-img svg {
  width: 1.75em;
  height: 1.75em;
  max-width: 4.5vw;
  max-height: 4.5vw;
}
#digital-erleben-map .map-marker-info {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0.75em;
}
@media screen and (min-width: 782px) {
  #digital-erleben-map .map-marker-info {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
#digital-erleben-map .svg-map {
  position: relative;
}
#digital-erleben-map .map-marker-info-place {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) 2em 2em;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  background: var(--color-lightgrey);
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
}
#digital-erleben-map .map-debug-coords {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--color-yellow);
  color: #000;
  padding: 0.5em 1em;
  font-family: monospace;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  pointer-events: none;
  line-height: 1.4;
}
#digital-erleben-map .map-debug-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-yellow);
  border: 2px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}
#digital-erleben-map .map-filters summary.label {
  padding: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: bold;
  background: var(--color-lightgrey);
  outline: none;
  user-select: none;
  background-color: var(--body-color);
}
#digital-erleben-map .map-filters summary.label::-webkit-details-marker {
  display: none;
}
#digital-erleben-map .map-filters .inner {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 30px 30px;
}
@media only screen and (max-width: 820px) {
  #digital-erleben-map .map-filters .inner {
    padding: 0 20px 20px;
    gap: 10px;
  }
}
#digital-erleben-map .map-filters .inner .map-filter-search {
  flex: 1 1 100%;
  margin-bottom: 5px;
  position: relative;
}
#digital-erleben-map .map-filters .inner .map-filter-search .map-filter-search-input {
  width: 100%;
  padding: 10px 35px 10px 15px;
  border: 1px solid var(--color-lightgrey);
  background: var(--color-lightgrey);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
#digital-erleben-map .map-filters .inner .map-filter-search .map-filter-search-input:focus {
  border-color: var(--color-yellow);
}
#digital-erleben-map .map-filters .inner .map-filter-search .map-filter-reset-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  color: var(--color-grey);
  line-height: 1;
  padding: 5px;
  z-index: 1;
}
#digital-erleben-map .map-filters .inner .map-filter-search .map-filter-reset-search:hover {
  color: var(--color-yellow);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown {
  position: relative;
  background: var(--color-lightgrey);
  border-radius: 0;
  flex: 1 1 calc(33.333% - 15px);
  min-width: 120px;
}
@media only screen and (max-width: 600px) {
  #digital-erleben-map .map-filters .inner .map-filter-dropdown {
    flex: 1 1 100%;
  }
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown.is-open {
  z-index: 2;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown.is-open .map-filter-dropdown-list {
  display: block;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown.is-open .map-filter-dropdown-label::after {
  transform: translateY(-50%) rotate(180deg);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label-wrap .map-filter-reset-category {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 12px;
  color: var(--color-grey);
  z-index: 2;
  padding: 5px;
  line-height: 1;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label-wrap .map-filter-reset-category:hover {
  color: var(--color-yellow);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label {
  flex: 1;
  padding: 8px 35px 8px 15px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: var(--color-darkgrey);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-grey);
  transform: translateY(-50%);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label[data-active="true"] {
  font-weight: bold;
  color: var(--color-yellow);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-label[data-active="true"]::after {
  border-top-color: var(--color-yellow);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background: #fff;
  border: 1px solid var(--color-lightgrey);
  border-top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item:hover {
  background: var(--color-lightgrey);
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item[data-filter-active="true"] {
  background: var(--color-yellow);
  color: #000;
  position: relative;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item[data-filter-active="true"]::before {
  content: '•';
  margin-right: 5px;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item[data-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  background: transparent;
}
#digital-erleben-map .map-filters .inner .map-filter-dropdown .map-filter-dropdown-list .map-filter-item .count {
  float: right;
  opacity: 0.6;
  font-size: 0.85em;
  margin-left: 10px;
}
#digital-erleben-map .map-filters .inner .map-filter-reset-all {
  flex: 1 1 100%;
  margin-top: 10px;
  padding: 10px;
  background: var(--color-lightgrey);
  color: var(--color-grey);
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
#digital-erleben-map .map-filters .inner .map-filter-reset-all:hover {
  background: var(--color-yellow);
  color: #000;
  border-color: var(--color-yellow);
}
#digital-erleben-map .map-dialog {
  --dialog-width: 800px;
  left: calc(50% - (min(80vw, var(--dialog-width)) / 2));
  width: min(80vw, var(--dialog-width));
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 20vh;
  filter: drop-shadow(0 0 0.75rem grey);
  max-width: 924px;
  max-height: 75vh;
  padding: 25px;
  overflow: hidden;
  background-color: #fff;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  border-bottom: solid 1px var(--color-lightgrey);
  grid-template-areas: "content-menu" "content-inner";
  z-index: 1000;
}
@media screen and (min-width: 782px) {
  #digital-erleben-map .map-dialog {
    padding: 40px;
  }
}
#digital-erleben-map .map-dialog * {
  scrollbar-face-color: var(--primary-color);
  scrollbar-track-color: #ddd;
  scrollbar-color: var(--primary-color) #ddd;
  scrollbar-width: thin;
}
#digital-erleben-map .map-dialog[open] {
  opacity: 1;
  visibility: visible;
}
#digital-erleben-map .map-dialog .content-inner {
  overflow: auto;
  max-height: 100%;
  padding-block-end: 1px;
}
#digital-erleben-map .map-dialog .map-dialog-close-tab {
  cursor: default;
  color: var(--color-grey);
  display: none;
  gap: 0.5em;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background-color: #fff;
  border: 0;
}
#digital-erleben-map .map-dialog .map-dialog-close-tab::after {
  content: attr(data-label);
}
#digital-erleben-map .map-dialog .map-dialog-close-tab svg,
#digital-erleben-map .map-dialog .map-dialog-close-tab path {
  fill: currentColor;
}
#digital-erleben-map .map-dialog .modal-headline {
  margin: 0;
  color: var(--color-darkgrey);
}
#digital-erleben-map .map-dialog[data-tabbed="false"] .map-dialog-content-tab,
#digital-erleben-map .map-dialog[data-tabbed="false"] .modal-tab-menu {
  display: none;
}
#digital-erleben-map .map-dialog[data-tabbed="true"] .map-dialog-content {
  display: none;
}
#digital-erleben-map .map-dialog[data-tabbed="true"][data-children="1"] .content-menu {
  display: none;
}
#digital-erleben-map .map-dialog[data-tabbed="true"]:not([data-children="1"]) .map-dialog-close-tab {
  cursor: pointer;
  color: var(--color-darkgrey);
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  line-height: normal;
}
#digital-erleben-map .map-dialog[data-tabbed="true"]:not([data-children="1"]) .map-dialog-close-tab:hover {
  color: var(--color-blue);
}
#digital-erleben-map .map-dialog[data-tabbed="true"] .modal-headline {
  display: none;
}
#digital-erleben-map .content-menu {
  grid-area: content-menu;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 2rem;
}
#digital-erleben-map .map-dialog-close-tab,
#digital-erleben-map .modal-tab-menu {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#digital-erleben-map .modal-tab-menu::before {
  content: '';
  display: flex;
  width: 1px;
  height: 70%;
  background: var(--colorDisabled);
  position: relative;
  margin-inline: 1.5em 0.875em;
  margin-block: auto;
}
#digital-erleben-map .modal-tab-menu .map-marker-tab-footer-btn {
  border-width: 2px;
  padding-inline: 0.25em;
  margin: 0;
  outline: none;
}
#digital-erleben-map .modal-tab-menu .map-marker-tab-footer-btn[disabled] {
  border-width: 2px;
  border-color: transparent;
}
#digital-erleben-map .modal-tab-menu .map-marker-tab-footer-btn:not([disabled]):hover {
  color: var(--color-blue);
}
#digital-erleben-map .modal-tab-menu .map-marker-tab-footer-btn svg {
  fill: currentColor;
}
#digital-erleben-map .content-image {
  grid-area: content-image;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin-block-start: 0.25rem;
}
#digital-erleben-map .content-image.dummy::after {
  content: '';
  display: block;
  aspect-ratio: 4 / 3;
  background-color: var(--color-lightgrey);
}
#digital-erleben-map .content-image img {
  user-select: none;
}
#digital-erleben-map .content-image figcaption {
  font-size: 0.75em;
  user-select: none;
}
#digital-erleben-map .content-text {
  grid-area: content-text;
  padding-block-end: 1px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#digital-erleben-map .content-text .headline {
  margin-bottom: 0.25em;
}
#digital-erleben-map .content-text .content-sharing {
  margin-block: 1em;
}
#digital-erleben-map .content-tags {
  display: flex;
  flex-direction: row;
  gap: 0.25em;
  flex-wrap: wrap;
}
#digital-erleben-map .content-tags .tag-link {
  background-color: var(--color-lightgrey);
  font-size: 0.75rem;
  padding-inline-start: 0.5em;
  align-items: center;
  gap: 0.5em;
  user-select: none;
}
#digital-erleben-map .content-tags .tag-link:not([href]) {
  cursor: default;
}
#digital-erleben-map .content-tags .tag-link:not([href]):hover {
  color: var(--color-darkgrey);
}
#digital-erleben-map .content-tags .tag-link svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}
#digital-erleben-map .map-marker-tab-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto 2em;
  gap: 1em 2em;
  grid-template-areas: "content-image" "content-text" "content-nav";
  grid-area: content-inner;
}
@media screen and (min-width: 630px) {
  #digital-erleben-map .map-marker-tab-info {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 2em;
    grid-template-areas: "content-image content-text content-text" "content-nav content-nav content-nav";
  }
}
#digital-erleben-map .map-dialog-close {
  display: flex;
  justify-content: center;
  align-content: center;
  border: 0;
  padding: 0.25em;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  color: #000;
  background: transparent;
}
#digital-erleben-map .map-dialog-close:hover {
  color: var(--color-blue);
}
#digital-erleben-map .map-dialog-close svg {
  fill: currentColor;
}
#digital-erleben-map .map-dialog-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 1em;
  overflow: auto;
}
#digital-erleben-map .map-dialog-content-tab {
  /*display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 0px 0px;
    grid-template-areas:
    "content-image content content";
    grid-area: map-dialog-content;*/
  display: block;
}
#digital-erleben-map .map-marker-info-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
#digital-erleben-map .map-marker-info-title {
  font-weight: normal;
  padding: 0.5em 0.75em;
}
#digital-erleben-map .map-marker-info-title,
#digital-erleben-map .map-marker-info-link {
  color: var(--text-color);
  background: var(--color-lightgrey);
}
#digital-erleben-map .map-marker-info-title:hover,
#digital-erleben-map .map-marker-info-link:hover {
  cursor: pointer;
  color: var(--color-blue);
}
#digital-erleben-map .map-marker-info-title svg,
#digital-erleben-map .map-marker-info-link svg {
  fill: currentColor;
}
#digital-erleben-map .map-main-city {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  padding: 0;
  margin: 0;
}
#digital-erleben-map .map-main-city-label {
  position: absolute;
  list-style: none;
  display: flex;
  margin: 0;
  width: 5em;
  justify-content: center;
  font-size: 0.875em;
  user-select: none;
  color: var(--color-blue);
  z-index: 1;
  line-height: 1;
  transform: translate(-50%, calc(-50% - 1.75em));
}
@media only screen and (max-width: 820px) {
  #digital-erleben-map .map-main-city-label {
    transform: translate(-50%, calc(-50% - 1em));
  }
}
#digital-erleben-map .map-main-city-label#ef {
  top: 45.5%;
  left: 42.45%;
}
#digital-erleben-map .map-main-city-label#gth {
  top: 47.5%;
  left: 31.3%;
}
#digital-erleben-map .map-main-city-label#j {
  top: 48.8%;
  left: 61.1%;
}
#digital-erleben-map .map-main-city-label#we {
  top: 44.6%;
  left: 52.1%;
}
#digital-erleben-map .map-main-city-label#g {
  top: 52.8%;
  left: 78.15%;
}
#digital-erleben-map .map-main-city-label#ea {
  top: 45%;
  left: 17.8%;
}
#digital-erleben-map .map-main-city-label#ndh {
  top: 8.8%;
  left: 34%;
}
#digital-erleben-map .map-main-city-label#il {
  top: 65.5%;
  left: 38.8%;
}
#digital-erleben-map .map-main-city-label#mhl {
  top: 29%;
  left: 22.7%;
}
#digital-erleben-map .map-main-city-label#shl {
  top: 70.9%;
  left: 30.6%;
}
#digital-erleben-map .map-filters {
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 160, 209, 0.2);
  display: flex;
  flex-direction: column;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: var(--body-color);
  padding: 0;
  border: none;
  max-width: 300px;
}
@media only screen and (max-width: 820px) {
  #digital-erleben-map .map-filters {
    max-width: calc(100% - 20px);
    position: relative;
    margin: 10px auto;
    right: auto;
    top: auto;
  }
}
#digital-erleben-map .map-filters .label {
  font-weight: 600;
  color: var(--color-blue);
  user-select: none;
  cursor: pointer;
  list-style: none;
  padding: 30px;
}
@media only screen and (max-width: 820px) {
  #digital-erleben-map .map-filters .label {
    padding: 20px;
  }
}
#digital-erleben-map .map-filters .inner {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 30px 30px;
}
@media only screen and (max-width: 820px) {
  #digital-erleben-map .map-filters .inner {
    padding: 0 20px 20px;
    gap: 10px;
  }
}
#digital-erleben-map .map-filters button.map-filter {
  line-height: 80%;
  background: var(--color-lightgrey);
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  transition: color 350ms cubic-bezier(0.2, 1, 0.3, 1), background 350ms cubic-bezier(0.2, 1, 0.3, 1);
  margin-block-end: 10px;
  margin-inline-end: 10px;
  border: 0;
  font-family: var(--font);
  font-size: var(--font-size);
  /* background: var(--body-color); */
  color: var(--text-color);
  display: flex;
  gap: 0.5em;
  padding: 8px 12px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#digital-erleben-map .map-filters button.map-filter svg {
  width: 1.25em;
  height: 1.25em;
}
#digital-erleben-map .map-filters button.map-filter[data-filter-active="false"]:hover {
  color: var(--color-blue) !important;
  background: #fff !important;
}
#digital-erleben-map .map-filters button.map-filter[data-filter-active="true"],
#digital-erleben-map .map-filters button.map-filter[data-filter-active="true"]:hover {
  background: var(--color-blue);
  color: #fff;
}
#digital-erleben-map .map-filters button.map-filter[data-filter-active="true"] svg,
#digital-erleben-map .map-filters button.map-filter[data-filter-active="true"]:hover svg {
  fill: #fff;
}
/* - Pages - */
/* @import "pages/_start";
@import "pages/_news";
@import "pages/_content";
@import "pages/_contact";
*/
/*# sourceMappingURL=style.css.map */