.mobile_menu{position:fixed;z-index:100;display:none}.mobile_menu .inner{height:100%;background:#000;overflow-y:scroll}.mobile_menu.active.position_left{box-shadow:2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_top{box-shadow:0 2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_right{box-shadow:-2px 0 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.position_bottom{box-shadow:0 -2px 5px 0 rgba(0,0,0,.5)}.mobile_menu.active.no_shadow{box-shadow:none!important}.mobile_menu_trigger{display:none}.mobile_menu_wrapper{position:relative;width:100%;overflow:hidden}.mobile_menu_overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:99}.mobile_menu_overlay.background{background:rgba(0,0,0,.5)}.mobile_menu li.submenu_hide>ul{display:none}.mobile_menu li.submenu_show>ul{display:block}body.ie8 .mobile_menu,body.ie8 .mobile_menu_trigger,body.ie9 .mobile_menu,body.ie9 .mobile_menu_trigger{display:none!important}
/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

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

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

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

.content-end {
  align-content: end;
}

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

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

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

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

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

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/* abel-regular - latin */
@font-face {
  font-family: "Abel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme/fonts/abel-v12-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/abel-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/abel-v12-latin-regular.woff2") format("woff2"), url("/files/theme/fonts/abel-v12-latin-regular.woff") format("woff"), url("/files/theme/fonts/abel-v12-latin-regular.ttf") format("truetype"), url("/files/theme/fonts/abel-v12-latin-regular.svg#Abel") format("svg"); /* Legacy iOS */
}
/* alegreya-sans-regular - latin */
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/files/theme/fonts/alegreya-sans-v20-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/alegreya-sans-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/alegreya-sans-v20-latin-regular.woff2") format("woff2"), url("/files/theme/fonts/alegreya-sans-v20-latin-regular.woff") format("woff"), url("/files/theme/fonts/alegreya-sans-v20-latin-regular.ttf") format("truetype"), url("/files/theme/fonts/alegreya-sans-v20-latin-regular.svg#AlegreyaSans") format("svg"); /* Legacy iOS */
}
/* alegreya-sans-700 - latin */
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/files/theme/fonts/alegreya-sans-v20-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("/files/theme/fonts/alegreya-sans-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("/files/theme/fonts/alegreya-sans-v20-latin-700.woff2") format("woff2"), url("/files/theme/fonts/alegreya-sans-v20-latin-700.woff") format("woff"), url("/files/theme/fonts/alegreya-sans-v20-latin-700.ttf") format("truetype"), url("/files/theme/fonts/alegreya-sans-v20-latin-700.svg#AlegreyaSans") format("svg"); /* Legacy iOS */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

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

.invisibleAccessible,
.sr-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

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

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*Make Contao Elements visble at all*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.centered {
  text-align: center;
}

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

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

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

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

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

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

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

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

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

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

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html {
  font-size: 100%;
  font-family: "Alegreya Sans", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 48em) {
  html {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 75em) {
  html {
    font-size: 125%;
  }
}

html, body {
  font-family: "Alegreya Sans", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #585C5C;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
p {
  margin: 0 0 0.75em 0;
}

::-moz-selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

::-moz-selection,
::selection {
  background: #95999D;
  color: #fff;
  text-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

.top-0 {
  margin-top: 0 !important;
}

.top-s {
  margin-top: 0.5rem !important;
}

.top-m {
  margin-top: 1rem !important;
}

.top-l {
  margin-top: 2rem !important;
}

.top-xl {
  margin-top: 3rem !important;
}

.bottom-0 {
  margin-bottom: 0 !important;
}

.bottom-s {
  margin-bottom: 0.5rem !important;
}

.bottom-m {
  margin-bottom: 1rem !important;
}

.bottom-l {
  margin-bottom: 2rem !important;
}

.bottom-xl {
  margin-bottom: 3rem !important;
}

.ptop-0 {
  padding-top: 0 !important;
}

.ptop-s {
  padding-top: 0.5rem !important;
}

.ptop-m {
  padding-top: 1rem !important;
}

.ptop-l {
  padding-top: 2rem !important;
}

.ptop-xl {
  padding-top: 3rem !important;
}

.pbottom-0 {
  padding-bottom: 0 !important;
}

.pbottom-s {
  padding-bottom: 0.5rem !important;
}

.pbottom-m {
  padding-bottom: 1rem !important;
}

.pbottom-l {
  padding-bottom: 2rem !important;
}

.pbottom-xl {
  padding-bottom: 3rem !important;
}

h1, h2, h3, h4, h5, h6 .all-headlines {
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 .all-headlines a {
  text-decoration: none;
  color: inherit;
}

[class^=ce_] h2:first-of-type,
[class^=ce_] h3:first-of-type,
[class^=ce_] h4:first-of-type,
[class^=ce_] h5:first-of-type,
[class^=ce_] h6:first-of-type {
  margin-top: 0;
}

h1 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #19646D;
  margin: 0 0 0.5em 0;
  font-size: 1.75rem;
}
@media screen and (min-width: 48em) {
  h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #19646D;
  margin: 0.75em 0 0.75em 0;
  font-size: 1.375rem;
}
@media screen and (min-width: 48em) {
  h2 {
    font-size: 1.5555556rem;
  }
}
@media screen and (min-width: 75em) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #19646D;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.25rem;
}
@media screen and (min-width: 48em) {
  h3 {
    font-size: 1.3333333rem;
  }
}
@media screen and (min-width: 75em) {
  h3 {
    font-size: 1.4rem;
  }
}

h4 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #19646D;
  margin: 0.75em 0 0.5em 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 48em) {
  h4 {
    font-size: 1.1111111rem;
  }
}
@media screen and (min-width: 75em) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #585C5C;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}
@media screen and (min-width: 75em) {
  h5 {
    font-size: 1.1rem;
  }
}

h6 {
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #585C5C;
  margin: 0.75em 0 0.5em 0;
  font-size: 1rem;
}

img, picture {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

figure {
  line-height: 0;
  margin: 0;
}

figcaption {
  line-height: 1.2;
}

/*Fix für Caption auf Bildbreite beschränken*/
figure img {
  display: block;
}

img.bg-shadow {
  -webkit-box-shadow: 10px 10px 20px 0px rgba(25, 100, 109, 0.1);
          box-shadow: 10px 10px 20px 0px rgba(25, 100, 109, 0.1);
}

/*Alle Bilder ohne Alt-Attribut kennzeichen*/
/*sollte für Production auskommentiert werden!*/
/*Behebt Probleme mit responsiven Bildern
//https://community.contao.org/de/showthread.php?81074-Problem-mit-Bildgr%C3%B6%C3%9Fen-bei-responsive-Ausgabe-(seit-Kurzem)&p=545407&viewfull=1#post545407
*/
:where(source[width][height] ~ img) {
  width: auto;
  height: auto;
}

a {
  color: #19646D;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover, a:focus {
  color: #207FA4;
}

:focus {
  outline: 1px dashed #585C5C;
}

a[href^=tel] {
  text-decoration: none;
  color: #585C5C;
}

ul li, ol li {
  color: inherit;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

.content-text ul:first-child,
.content-text ol:first-child {
  margin-top: 0;
}

html {
  background-color: #F2F2F3;
}

body {
  background-color: #fff;
}

.wrap, .mod_article .wrap-article, #footer .inside, #tophead .inside, #header .inside {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 92.5em) {
  .wrap, .mod_article .wrap-article, #footer .inside, #tophead .inside, #header .inside {
    padding: 0 1rem 0 1rem;
  }
}

#container {
  background-color: #fff;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

#wrapper {
  background-color: #fff;
}

/*
.inside {

} */
#header {
  background: #fff;
  color: #585C5C;
  padding: 1rem 0;
}
#header .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logo {
  width: 200px;
}
@media screen and (min-width: 61.875em) {
  .logo {
    width: 300px;
  }
}
@media screen and (min-width: 75em) {
  .logo {
    width: 380px;
  }
}
.logo a {
  display: block;
}

#tophead {
  background: #19646D;
  color: #fff;
  padding: 0;
}
#tophead .inside {
  padding-block: 0.25rem;
}
#tophead ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#tophead li {
  margin-left: 1rem;
}
#tophead a {
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
}
#tophead a:hover, #tophead a:focus {
  text-decoration: underline;
}
#tophead a i {
  margin-right: 0.5em;
}

#footer {
  background-color: #19646D;
  color: #fff;
  padding: 1rem;
  z-index: 2;
  position: relative;
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  #footer {
    padding: 2.5rem 1rem 1rem 1rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 75em) {
  #footer {
    padding: 4rem 1rem 1rem 1rem;
    margin-top: 0;
  }
}
#footer .inside {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 241 157'%3E%3Cg opacity='.1' fill-rule='evenodd' clip-rule='evenodd' fill='%23499E9B'%3E%3Cpath d='M109.633 104.014c-5.774 0-11.286-1.177-16.404-3.794a34.96 34.96 0 0 1-8.924-6.15V241H70V75.492l13.91-13.869c-.13 1.047-.13 2.225-.13 3.402 0 4.58.918 9.028 3.28 12.953 2.231 3.925 5.25 6.934 9.187 9.028 4.199 2.355 8.53 3.009 13.386 3.009 4.2-.131 8.005-1.178 11.68-3.271 4.987-2.878 11.417-10.205 15.748-14.523l25.722-25.513h-.262V0h14.304v35.195a34.97 34.97 0 0 1 8.924-6.15c5.25-2.486 10.762-3.663 16.536-3.663 10.761 0 19.947 3.925 27.428 11.514C237.326 44.615 241 54.035 241 64.894c0 10.729-3.807 20.15-11.417 27.738-7.613 7.588-16.799 11.513-27.561 11.513-5.905 0-11.548-1.177-16.798-3.925-3.149-1.7-5.905-3.794-8.399-6.15v8.374h-14.304V75.1l13.911-13.869c-.132 1.047-.132 2.093-.132 3.14 0 7.065 2.231 13.345 7.218 18.448 4.987 4.972 10.893 7.327 17.848 7.327 4.462 0 8.662-1.047 12.599-3.271 3.936-2.224 6.956-5.495 9.185-9.42 2.232-3.925 3.413-8.243 3.413-12.822 0-4.58-1.181-8.897-3.413-12.822-2.229-3.925-5.249-7.196-9.185-9.551-3.806-2.224-7.874-3.402-12.336-3.402-4.593 0-8.793 1.178-12.73 3.402-2.1 1.177-4.068 2.617-5.774 4.448l-41.864 41.606c-3.413 3.402-6.562 6.803-10.499 9.42-6.168 4.056-13.255 6.28-21.129 6.28Z'/%3E%3Cpath d='M85.526 34.105c2.488-2.494 5.239-4.594 8.382-6.168C99.147 25.18 104.779 24 110.673 24c10.74 0 19.908 3.937 27.373 11.548 4.977 5.118 8.382 11.023 9.954 17.454l-13.228 13.254c.131-.919.131-1.969.131-2.887 0-4.593-1.179-8.924-3.406-12.86-2.226-3.938-5.238-7.218-9.168-9.58-3.536-2.1-7.465-3.281-11.525-3.412-6.156-.132-11.395 1.837-16.241 5.642-2.227 1.838-4.846 4.593-6.81 6.693L58.675 78.854l-17.55 17.322C36.41 100.769 30.648 103 24.099 103c-4.453 0-8.775-.919-12.704-2.887-3.93-1.969-7.335-4.593-10.085-8.005L0 90.402l9.168-10.367 1.965 2.23c3.274 3.675 7.596 6.956 12.704 6.956 2.882 0 5.37-.919 7.466-2.756l40.209-40.287v-20.34h14.276v8.267h-.262Z'/%3E%3Cpath d='m49 36.68-9.522 9.732-1.826-1.816c-3.26-3.115-7.565-6.23-12.26-6.23-2.218 0-4.044.65-5.74 2.206-1.435 1.298-2.348 2.856-2.348 4.802 0 1.817.783 3.374 1.957 4.802 2.087 2.465 7.043 5.19 10.043 6.748 4.435 2.206 9.652 5.32 13.305 9.214L32.696 76c-.13-.26-.261-.39-.392-.52-2.087-2.335-7.695-5.32-10.565-6.747-4.826-2.466-10.565-5.97-13.826-10.382C5.304 54.718 4 50.565 4 46.023c0-5.84 1.957-10.9 6.26-15.054C14.566 26.817 19.914 25 25.914 25c8.217 0 15.522 4.412 21.26 9.992L49 36.68Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 12rem;
}
#footer a {
  color: #fff;
  text-decoration: underline;
}
#footer a:hover, #footer a:focus {
  text-decoration: none;
}
#footer a[href^=tel] {
  text-decoration: none;
}

.footer-grid .content-image {
  margin-top: -2rem;
}
@media screen and (min-width: 48em) {
  .footer-grid .content-image {
    margin-top: -6rem;
  }
}

.footernav {
  margin-top: 4rem;
  text-align: center;
}
.footernav p {
  margin-bottom: 0;
}
.footernav .rte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.15rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mod_article {
  padding: 2rem 0;
}
@media screen and (min-width: 56.25em) {
  .mod_article {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 80em) {
  .mod_article {
    padding: 6rem 0;
  }
}
.mod_article.no-padding {
  padding: 0;
}
.mod_article.half-padding {
  padding: 1rem 0;
}
@media screen and (min-width: 61.875em) {
  .mod_article.half-padding {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 80em) {
  .mod_article.half-padding {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 61.8125em) {
  .hero .wrap-article {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .hero .hero-image {
    width: 80%;
  }
  .hero .hero-title {
    width: 70%;
    max-width: 400px;
    position: relative;
    margin-top: -3rem;
    z-index: 2;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (min-width: 61.875em) {
  .hero .wrap-article {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .hero .hero-image {
    width: 66%;
  }
  .hero .hero-title {
    width: 40%;
    max-width: 600px;
    position: absolute;
    bottom: 2rem;
    right: 0;
    z-index: 2;
  }
}
.hero .hero-title {
  padding: 1.5rem;
  background-color: #499E9B;
  color: #fff;
}
@media screen and (min-width: 61.875em) {
  .hero .hero-title {
    padding: 1.5rem 2.5rem;
  }
}
.hero .hero-title h1 {
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (min-width: 61.875em) {
  .hero .hero-title h1 {
    font-size: 2rem;
  }
}

@supports (grid-area: auto) {
  @media screen and (min-width: 61.875em) {
    [class*=grid_] {
      grid-column-gap: 4rem;
    }
  }
}
@media screen and (max-width: 48em) {
  .grid-order-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  position: relative;
}
nav a {
  display: block;
  text-decoration: none;
}
nav a:hover, nav a:focus {
  color: #207FA4;
}

.mainnav {
  display: none;
}
@media screen and (min-width: 61.9375em) {
  .mainnav {
    display: block;
  }
}
.mainnav .level_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.mainnav li {
  margin-left: 1rem;
}
.mainnav a {
  display: block;
  text-decoration: none;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #499E9B;
}
.mainnav a:hover, .mainnav a:focus, .mainnav a.active {
  background-color: #499E9B;
  color: #fff;
}

[class^=mobile_menu] button {
  border: 0;
  background-color: transparent;
  color: #19646D;
  padding: 0.5em 0.5em;
  cursor: pointer;
  font-size: 1.5rem;
}
[class^=mobile_menu] button span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.mod_mobile_menu {
  display: block;
}
@media screen and (min-width: 61.9375em) {
  .mod_mobile_menu {
    display: none;
  }
}

.mobile_menu .inner {
  background-color: #23798C;
}
.mobile_menu .mhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0.5rem 1rem;
}
.mobile_menu .mhead button {
  color: #fff;
}
.mobile_menu .mhead .logo {
  width: 250px;
}
.mobile_menu ul a {
  color: #fff;
  padding: 0.5em 1rem;
  border-bottom: 1px solid #fff;
}
.mobile_menu ul a:hover, .mobile_menu ul a:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
.mobile_menu .icon-close {
  color: inherit;
}

.module-onepage-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.module-onepage-navigation ul li {
  margin: 0.25rem;
}
.module-onepage-navigation ul li a {
  display: block;
  text-decoration: none;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  font-family: "Abel", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  background-color: #19646D;
  color: #fff;
}
.module-onepage-navigation ul li a:hover, .module-onepage-navigation ul li a:focus {
  background-color: #499E9B;
}

/* Contao elements */
.content-headline.centered {
  text-align: center;
}

.textwicon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.375em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-text:after {
  content: "";
  display: table;
  clear: both;
}
.content-text.portraits figure {
  margin-bottom: 0.75rem;
}
.content-text.portraits h2 {
  font-size: 1.25rem;
}
@media screen and (min-width: 30em) {
  .content-text.media.media--left figure {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
  }
  .content-text.media.media--right figure {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
  }
}
@media screen and (min-width: 37.5em) {
  .content-text.text-columns ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

main .content-text i,
footer .content-text i {
  min-width: 1.6rem;
  text-align: center;
}

.content-download {
  display: inline-block;
}
.content-download a {
  display: block;
  padding: 0.5em 0.5em 0.5em 2.5rem;
  background-color: #F2F2F3;
  border: 1px solid #D7D9DA;
  background-repeat: no-repeat;
  background-position: left 0.25rem center;
  background-size: 1.5rem;
  text-decoration: none;
}
.content-download a:hover, .content-download a:focus {
  border-color: #95999D;
  background-color: #F2F2F3;
  color: #585C5C;
}
.content-download .download-element a {
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
}
.content-download .download-element.ext-pdf a {
  background-image: url("/files/theme/img/icons/icon-pdf.svg");
}
.content-download .download-element.ext-docx a {
  background-image: url("/files/theme/img/icons/icon-docx.svg");
}
.content-download .download-element.ext-doc a {
  background-image: url("/files/theme/img/icons/icon-doc.svg");
}
.content-download .download-element.ext-jpg a {
  background-image: url("/files/theme/img/icons/icon-jpg.svg");
}
.content-download .download-element.ext-png a {
  background-image: url("/files/theme/img/icons/icon-png.svg");
}
.content-download .download-element.ext-gif a {
  background-image: url("/files/theme/img/icons/icon-gif.svg");
}
.content-download .download-element.ext-tiff a {
  background-image: url("/files/theme/img/icons/icon-tiff.svg");
}
.content-download .download-element.ext-mp3 a {
  background-image: url("/files/theme/img/icons/icon-mp3.svg");
}
.content-download .download-element.ext-mp4 a {
  background-image: url("/files/theme/img/icons/icon-mp4.svg");
}
.content-download .download-element.ext-ppt a {
  background-image: url("/files/theme/img/icons/icon-ppt.svg");
}
.content-download .download-element.ext-zip a {
  background-image: url("/files/theme/img/icons/icon-zip.svg");
}
.content-download .download-element.ext-rar a {
  background-image: url("/files/theme/img/icons/icon-rar.svg");
}
.content-download .download-element.ext-txt a {
  background-image: url("/files/theme/img/icons/icon-txt.svg");
}
.content-download .download-element.ext-xls a {
  background-image: url("/files/theme/img/icons/icon-xls.svg");
}
.content-download .download-element.ext-xlsx a {
  background-image: url("/files/theme/img/icons/icon-xlsx.svg");
}
.content-download .download-element.ext-xml a {
  background-image: url("/files/theme/img/icons/icon-xml.svg");
}

.content-accordion {
  margin-bottom: 0.3em;
}
.content-accordion .toggler {
  border: 1px solid #D7D9DA;
  position: relative;
  background-color: #F2F2F3;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 1rem 3rem 1rem 1rem;
}
.content-accordion .toggler:hover, .content-accordion .toggler:focus {
  background-color: #95999D;
  border: 1px solid #95999D;
  color: #fff;
}
.content-accordion .toggler:hover .title, .content-accordion .toggler:focus .title {
  color: #fff;
}
.content-accordion .toggler::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%231D1D1B'/%3E%3C/svg%3E");
  background-size: 40px;
  color: #585C5C;
  cursor: pointer;
}
.content-accordion .toggler:hover::after, .content-accordion .toggler:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.content-accordion .toggler.active::after {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.626 10.236l-8.628 8.392-8.624-8.392a.806.806 0 0 0-1.138 1.139L18.856 20l-8.62 8.625a.8.8 0 0 0-.175.878.806.806 0 0 0 1.313.26l8.628-8.39 8.624 8.391a.806.806 0 0 0 1.138-1.139L21.144 20l8.62-8.625a.8.8 0 0 0 .175-.878.806.806 0 0 0-1.313-.26z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.content-accordion .accordion {
  padding: 1rem;
}

blockquote {
  padding: 0.25rem 0 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  font-style: italic;
  color: #585C5C;
}
blockquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.content-gallery {
  margin-bottom: calc(var(--space-default) * 2);
}
.content-gallery ul {
  --gap-default: .5rem;
  --gap-value: var(--gap-default);
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-gap: var(--gap-value);
  -ms-grid-columns: 1fr var(--gap-value) 1fr;
  grid-template-columns: 1fr 1fr;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .content-gallery ul {
    -ms-grid-columns: 1fr var(--gap-value) 1fr var(--gap-value) 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 990px) {
  .content-gallery ul {
    --gap-value: calc(var(--gap-default) * 2);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery ul {
    --gap-value: calc(var(--gap-default) * 3);
  }
}
.content-gallery ul li {
  margin: 0;
  display: -ms-grid;
  display: grid;
  place-content: start;
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-2 ul {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-3 ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-4 ul {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-5 ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-5 ul {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-6 ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-6 ul {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-7 ul {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-7 ul {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-8 ul {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-8 ul {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-9 ul {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-9 ul {
    -ms-grid-columns: (1fr)[9];
    grid-template-columns: repeat(9, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-10 ul {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-10 ul {
    -ms-grid-columns: (1fr)[10];
    grid-template-columns: repeat(10, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-11 ul1 {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-11 ul1 {
    -ms-grid-columns: (1fr)[11];
    grid-template-columns: repeat(11, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .content-gallery--cols-12 ul {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content-gallery--cols-12 ul {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
}
.content-gallery.grid-gap-null ul {
  grid-gap: 0;
}
.content-gallery.gallery-with-caption figcaption {
  display: block;
}

.video_container .responsive {
  position: relative;
  overflow: hidden;
  max-width: 960px;
}
.video_container .responsive:hover {
  cursor: pointer;
}
.video_container .responsive iframe,
.video_container .responsive object,
.video_container .responsive embed {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  border: none;
}
.video_container .responsive.ratio-169 {
  aspect-ratio: 16/9;
}
.video_container .responsive.ratio-43 {
  aspect-ratio: 4/3;
}
.video_container .responsive.ratio-916 {
  aspect-ratio: 9/16;
}

.content-player figure,
.content-youtube figure,
.content-vimeo figure {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.content-player video,
.content-youtube video,
.content-vimeo video {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
}
.content-player iframe,
.content-player object,
.content-player embed,
.content-youtube iframe,
.content-youtube object,
.content-youtube embed,
.content-vimeo iframe,
.content-vimeo object,
.content-vimeo embed {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  border: none;
}

.ccb-element-blocker .cc-icon {
  width: 6rem;
}

.mod_cookiebarOpener {
  display: inline-block;
}

.contao-cookiebar {
  --ccb-text: $spb-schwarz;
  --ccb-detail-clr: $spb-schwarz;
}

.backtotop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.backtotop.is-visible {
  opacity: 1;
  visibility: visible;
}
.backtotop a {
  display: block;
  padding: 0.5em;
  text-decoration: none;
  background-color: rgba(73, 158, 155, 0.7);
  color: #fff;
  line-height: 1;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.backtotop a:hover {
  background-color: #207FA4;
}
.backtotop svg {
  width: 1.5rem;
  height: 1.5rem;
}
.backtotop span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.modal-overlay {
  background: rgba(25, 100, 109, 0.8);
}

.content-text.modal-content {
  padding: 1rem;
}
.content-text.modal-content .hyperlink_txt {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-align: center;
  border: 1px solid #499E9B;
  text-decoration: none;
  background-color: #499E9B;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content-text.modal-content .hyperlink_txt:hover, .content-text.modal-content .hyperlink_txt:focus {
  border-color: #19646D;
  background-color: #19646D;
}

.button {
  display: inline-block;
}
.button a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #585C5C;
  text-decoration: none;
  background: none;
  color: #585C5C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button a:hover, .button a:focus {
  border: 1px solid rgb(138.4666666667, 143.5333333333, 143.5333333333);
  color: rgb(138.4666666667, 143.5333333333, 143.5333333333);
  background: inherit;
}
.button.cta a {
  background: #19646D;
  color: #fff;
  border-color: #fff;
}
.button.cta a:hover, .button.cta a:focus {
  border-color: #fff;
  color: #fff;
  background: #207FA4;
}

[class^=icon] {
  height: 1.25em;
  width: 1.25em;
  display: inline-block;
  color: #585C5C;
}
#footer [class^=icon], #tophead [class^=icon] {
  color: #fff;
}
#tophead [class^=icon] {
  height: 1em;
  width: 1em;
}
[class^=icon] + span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

/*
    // https://packagist.org/packages/oveleon/contao-component-style-manager
    // Import Datei liegt in Templates (style-manager-export.xml)
*/
