body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
/**
 * 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 */

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
  vertical-align: bottom;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
/* Montserrat Light */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: normal;
  src: url('../../files/private/fonts/montserrat-light.woff2') format('woff2'),
       url('../../files/private/fonts/montserrat-light.ttf') format('truetype');
}
/* Montserrat Light */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: bold;
  src: url('../../files/private/fonts/montserrat-semibold.woff2') format('woff2'),
       url('../../files/private/fonts/montserrat-semibold.ttf') format('truetype');
}


/* Farben */
html {
    --blau: #0086a4;
    --gelb: #e8e342;
}



/* ALLGEMEIN */

html {
	font-family: 'Montserrat';
	font-size: 18px;
	line-height: 1.6;
	color: #020203;
	scroll-behavior: smooth;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

a {color: var(--blau); text-decoration: none;}
a:hover {color: black;}
.blau {color: var(--blau);}

h1, h2, .h2 {
	font-size: 30px; line-height: 1.34;
	color: var(--blau);
}
.h2 {font-weight: bold;}
h3 {
	margin: 3rem 0 0;
	padding-bottom: 0.8rem;
	font-size: 1rem;
	border-bottom: 1px solid var(--blau);
}

#main, #left, #right {float: none;}

#cboxPrevious, #cboxNext {outline: 0;} /*Lightbox*/
.ce_youtube {margin: 1em 0;}
iframe {border: none;}

.overflow_visible {overflow: visible;}
.overflow_visible.ce_cp_grid_start > div {overflow: visible;}
.text-align_center {text-align: center;}
.line-height_2 {line-height: 2;}

.z-index_-1 {z-index: -1 !important;}

.abstand_oben_-15vw {margin-top: -15vw;}
.abstand_oben_-13vw {margin-top: -13vw;}

.abstand_oben_0 {margin-top: 0;}
.abstand_oben,
.abstand_oben_1 {margin-top: 1em;}
.abstand_oben_2 {margin-top: 2em;}
.abstand_oben_3 {margin-top: 3em;}
.abstand_oben_4 {margin-top: 4em;}
.abstand_oben_5 {margin-top: 5em;}
.abstand_oben_6 {margin-top: 6em;}
.abstand_oben_7 {margin-top: 7em;}
.abstand_oben_8 {margin-top: 8em;}
.abstand_oben_9 {margin-top: 9em;}

.abstand_unten_-4 {margin-bottom: -4em;}

.abstand_unten_0 {margin-bottom: 0;}
.abstand_unten,
.abstand_unten_1 {margin-bottom: 1em;}
.abstand_unten_2 {margin-bottom: 2em;}
.abstand_unten_3 {margin-bottom: 3em;}
.abstand_unten_4 {margin-bottom: 4em;}
.abstand_unten_5 {margin-bottom: 5em;}
.abstand_unten_6 {margin-bottom: 6em;}
.abstand_unten_7 {margin-bottom: 7em;}

.zentriert {text-align: center;}
.rechtsbuendig {text-align: right;}

.linie_oben {border-top: 1px solid var(--blau); margin-top: 3em; padding-top: 3em;}
.linie_unten {border-bottom: 1px solid var(--blau);}

.abgerundet img {border-radius: 5px;}

.error {color: red; font-weight: bold;}

[class*="grid_"] {grid-gap: 25px;}
[class*="grid_"] > .block {margin-bottom: unset;}

.rowgap0 .grid_start {row-gap: 0;}


/*header .inside,*/
header .inside,
.mod_article,
footer .inside {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2em;
}



/**** HEADER ****/

header {
	position: sticky;
	top: -1.5em;
	color: white;
	font-size: 16px;
	line-height: 1.3;
	z-index: 3;
}
header .inside {
	padding-top: 40px;
	display: grid;
	grid-template-columns: 285px 1fr 5em;
}

header .logo a {display: none;}
header .logo a.de:lang(de) {display: block;}
header .logo a.en:lang(en) {display: block;}
header .logo a.cn:lang(zh) {display: block;}

/* Navigation */

.mod_navigation {text-align: right;}
.menu-icon {display: none;}
.mod_navigation ul {
	margin-top: 0.5em;
	padding: 0;
	/* wegen bold bei hover */
	display: grid;
	grid-template-columns: 8.8em 10.9em 9em 10em 6.7em;
	justify-content: end;
	text-align: center;
}
.mod_navigation li {display: inline-block; position: relative;}
.mod_navigation li.start {display: none;}
.mod_navigation li.last {margin-right: 0;}

.mod_navigation li a {display: block; color: white;}
.mod_navigation li a:hover {font-weight: bold;}

/* Sprachwechsler */
.mod_changelanguage {position: relative; margin-top: 0.5em; overflow: visible; text-align: right;}
.mod_changelanguage .aktive-sprache {text-transform: uppercase; cursor: pointer;}
.mod_changelanguage .aktive-sprache:hover {font-weight: bold;}
.mod_changelanguage .aktive-sprache img {width: 1em; margin-bottom: 0.4em;}
.mod_changelanguage ul {
	display: none;
	position: absolute;
	right: 0;
	width: 2.2em;
	margin: 1em 0 0;
	padding: 0.5em 0.7em;
	border: 1px solid var(--blau);
	list-style: none;
	text-align: center;
	background: white;
	z-index: 1;
}
.mod_changelanguage li {padding: 0.2em 0;}
.mod_changelanguage li a {color: var-(--blau);}

/*
.sprachwechsler {margin-top: 0.5em; text-align: right;}
.sprachwechsler img {display: inline-block; width: 0.8em; padding-bottom: 0.4em;}
*/

/**** INHALT ****/

#container main {margin-top: 1em; margin-bottom: 7vw; min-height: 35em;}

.mod_article.breit {
	width: 100vw;
	max-width: unset;
	padding: 0;
}
.mod_article.breit:first-child {margin: -9.5vw 0 4em;}
.breit video {width: 100vw;}

.subheadline {
	max-width: 52rem;
	margin: 0 auto;
	font-size: 48px;
	font-weight: bold;
	line-height: 68px;
	text-align: center;
}
.subheadline p {margin-top: 0;}

/* Titelbild */
img.titelbild {width: 100vw;}

/* Raster */
.raster_2-11 {max-width: 995px; margin-left: auto; margin-right: auto;}
.raster_3-10 {max-width: 792px; margin-left: auto; margin-right: auto;}
/*.raster_4-9 {max-width: 587px; margin-left: auto; margin-right: auto;}*/
.raster_7-12 {width: 548px; max-width: 100%; margin-left: auto;}
.raster_8-12 {width: 485px; max-width: 100%; margin-left: auto;}

.breite_3spalten {width: 100%; max-width: 281px;}
.breite_4spalten {width: 100%; max-width: 383px;}
.breite_5spalten {width: 100%; max-width: 485px;}
.breite_8spalten {width: 100%; max-width: 791px;}
.justify-self_end {justify-self: end;}
.margin-left_auto {margin-left: auto;}


/* Welle oben */
#welle {
	position: sticky;
	top: 3.3em;
	margin-top: -1.3em;
	z-index: 2;
}
#welle svg {display: block;}
#welle .hg {width: 100vw; height: calc(6em + 1px); position: absolute; top: -6em; background: var(--blau); z-index: 0;}

/* Box */
.box {display: block; margin-top: 5em; margin-bottom: 2em; border: 1px solid; border-radius: 5px; background: white; position: relative; z-index: 1;}
.box p {margin: 1em 0; padding: 0 1em;}
a.box:hover {color: white; border-color: var(--blau); background: var(--blau);}


/* Startseite */
video {max-width: 100vw;}

.vorteil {margin-top: 4em;}
.vorteil figure {height: 150px;}

.button-auf-bild {
	position: relative;
}
.button-auf-bild.mittig {
	margin-top: -9vw;
	z-index: -1;
}

.button-auf-bild .content-hyperlink {
	position: absolute;
}
.button-auf-bild.mittig .content-hyperlink {
	bottom: 14vw;
	width: 100vw;
	text-align: center;
}
.button-auf-bild.unten-rechts .content-hyperlink {
	bottom: 0em;
	right: 1em;
}

.button-auf-bild .content-hyperlink a {
	color: var(--blau);
	background: white;
}

.button-auf-bild.mittig .content-hyperlink a {
	margin-left: 10vw;
	margin-right: 10vw;
}

.button-auf-bild .content-hyperlink a:hover {
	color: white;
	background: var(--blau);
}

.welle-start-1::after {content: url('../../files/private/img/wellen/welle-referenzen-1.svg');}
.welle-start-1::after {
	width: 100vw;
	left: calc(600px - 50vw);
	position: relative;
	display: block;
	margin: 0 0 4em;
}

.grid-anwendungen > div {row-gap: 3em;}
.grid-anwendungen div div:nth-child(6n + 1),
.grid-anwendungen div div:nth-child(6n + 2),
.grid-anwendungen div div:nth-child(6n + 3) {justify-self: end;}
.grid-anwendungen div .content-text {text-wrap: balance;}

.teaser {max-width: 282px; border-bottom: 1px solid var(--blau);}
.teaser img {border-radius: 5px;}
.teaser h3 {margin-top: 0.5rem; padding-bottom: 0.6rem; font-size: 0.99rem; text-wrap: balance; line-height: 1.3; border-bottom: none;}

.referenzteaser_wrapper {position: relative; overflow: visible;}
.referenzteaser_wrapper::after {
	content: '';
	background: url('../../files/private/img/wellen/welle-start-1.svg') no-repeat center top;
	width: 100vw;
	position: absolute;
	left: calc(600px - 50vw);
	top: 0;
	bottom: 0;
	z-index: -1;
}
.referenzteaser .bild img {border-top-right-radius: 5px; border-top-left-radius: 5px;}
.referenzteaser h3 {
	min-height: 3.2em;
	margin-top: -1px;
	padding: 0.8em 1.5em;
	color: white;
	font-weight: bold;
	border-bottom: none;
	background: url('../../files/private/img/hg-referenzteaser.svg') no-repeat;
	background-size: calc(100% + 2px) auto;
}
.referenzteaser .text {color: black; border: 1px solid var(--blau); border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background: white;}

.referenzteaser .table {margin: 0 30px 4px;}
.referenzteaser .tabletext .row {padding: 0.8em 0; display: grid; grid-template-columns: 8em 1fr; border-top: 1px solid var(--blau);}



/* Produkte */
.produkt-box {
	border: 1px solid var(--blau);
	border-radius: 5px;
	width: calc(100% - 2px);
}
.produkt-box h3 {margin: 1.2rem 1.5rem 0; padding-bottom: 0.5rem; color: var(--blau);}
.produkt-box .rte {margin-left: 1.5rem; margin-right: 1.5rem;}

.welle-produkte-1 {position: relative;}
.welle-produkte-1::after {
	content: '';
	background: url('../../files/private/img/wellen/welle-produkte-1.svg') no-repeat center 60%;
	width: 100vw;
	position: absolute;
	left: calc(600px - 50vw);
	top: 0;
	bottom: 0;
	z-index: -1;
}

.bildersprenkel {position: relative; margin-bottom: 14em;}
.bildersprenkel div:nth-child(1) {padding-top: 2em;}

.bildersprenkel div:nth-child(2) {
	position: absolute;
	top: 9.5em;
	right: 306px;
}
.bildersprenkel div:nth-child(3) {
	position: absolute;
	top: 0;
	right: 0;
}

.laden-entladen h3 {
	padding: 0.3rem 0 0.3rem 3.1rem;
	font-size: 1.67em;
	color: var(--blau);
	background: url('../../files/private/img/icon-minus.svg') no-repeat center left;
	background-size: 2rem;
}
.laden-entladen .laden h3 {background-image: url('../../files/private/img/icon-plus.svg');}


/* Anwendungen */
.anwendung .inner {
	margin-top: 9em;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto 1fr;
	gap: 0 26px;
}
.anwendung .bild {grid-column: 1; grid-row: 1; margin-bottom: -1px;}
.anwendung .bild img {border-top-left-radius: 5px; border-top-right-radius: 5px;}
.anwendung h2 {
	grid-column: 1;
	margin: 0;
	padding: 1.3em 1.5em;
	color: white;
	font-size: 1rem;
	background: url('../../files/private/img/hg-text-anwendung.svg') no-repeat;
	background-size: calc(100% + 1px) auto;
}
.anwendung .rte {grid-row: 1 / 3; padding-left: 39px; padding-right: 42px;}
.anwendung .rte strong {display: block; margin-bottom: 1.6em; padding-bottom: 1.6em; border-bottom: 1px solid var(--blau);}
.anwendung .rte p {margin: 0;}
.anwendung .rte ul {margin: 0;}

.anwendungen-kontakt {padding-left: 39px; padding-right: 42px;}


/* Referenzen */
.referenz-wrapper {}

.referenz-wrapper:nth-child(2n-1) .spalte1 {grid-column: 2; grid-row: 1; padding-left: 77px; padding-right: 0;}

.referenz {display: grid; grid-template-columns: 1fr 1fr; grid-gap: 25px;}
.referenz h2 {line-height: 1.4em;}
.referenz .spalte1 {padding-right: 77px;}
.referenz .spalte2 .inside {overflow: hidden;}

.referenz .spalte2 .bild {border-top-left-radius: 5px; border-top-right-radius: 5px; overflow: hidden;}

.referenz .spalte2 .text {margin-top: -1px; border: 1px solid var(--blau); border-top: none; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;}

.referenz .image_subtitle {
	min-height: 2.3em;
	padding: 1.3em 1.5em;
	color: white;
	font-weight: bold;
	background: url('../../files/private/img/hg-text-anwendung.svg') no-repeat;
	background-size: calc(100% + 2px) auto;
}
.referenz .table {margin: 0 30px 8px;}
.referenz .tabletext .row {padding: 0.8em 0; display: grid; grid-template-columns: 8em 1fr; border-top: 1px solid var(--blau);}

.welle-referenzen-1::after {content: url('../../files/private/img/wellen/welle-referenzen-1.svg');}
.welle-referenzen-2::after {content: url('../../files/private/img/wellen/welle-referenzen-2.svg');}

.welle-referenzen-1::after,
.welle-referenzen-2::after {
	width: 100vw;
	left: calc(600px - 50vw);
	position: relative;
	display: block;
	margin: 3em 0 4em;
}

/* Unternehmen */
.portraits .grid_start {grid-template-columns: 280px 280px 280px; margin-bottom: 2.7em;}
.portraits.links .grid_start {margin-left: 102px;}
.portraits.rechts .grid_start {justify-content: end;}
.portraits p {line-height: 1.2;}
.portraits img {border-radius: 5px;}

/* Kontakt: Formular */
.formular {
	position: relative;
	font-weight: bold;
	border: 1px solid var(--blau);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background: white;
}
.formular::after {
  content: '';
  background: url('../../files/private/img/wellen/welle-start-1.svg') no-repeat bottom 3em center;
  width: 100vw;
  position: absolute;
  left: calc(396px - 50vw);
  top: 0;
  bottom: 0;
  z-index: -1;
}
.formular h1 {
	min-height: 6.7rem;
	margin-top: -1px;
	padding: 2.4rem 4.2rem 0;
	color: white;
	background: url('../../files/private/img/hg-formular.svg') no-repeat;
	background-size: auto;
	background-size: calc(100% + 2px) auto;
}
.formular .hg_blau {padding: 1.3rem 4.2rem;}
.hg_blau {color: white; background: var(--blau);}
.hg_blau a {color: white;}
.hg_blau a:hover {color: var(--gelb);}

.formular .ce_form {margin: 2.2rem 4.2rem;}

.ce_form .widget-text label {display: block; margin: 1.7em 0 0.2em;}
.ce_form .widget-text input {
	display: block;
	width: calc(100% - 2px - 1em);
	padding: 0.7em 0.5em;
	font-weight: normal;
	border: 1px solid var(--blau);
	border-radius: 5px;
}




/* Listen (ul) */
.rte ul {padding-left: 1em;}
.rte ul li {padding-left: 1em;}
.rte ul li::marker {color: var(--blau);}

.content-text .rte ul li {padding-bottom: 0.5em;}

/* Wellen */
.welle {position: relative; z-index: 0/*-1*/;}
.abstand_oben_-11 {margin-top: -11em;}


/* Buttons */
.button a,
.content-hyperlink a,
button.submit {
	margin: 1em 0;
	padding: 0.5em 2.9em;
	display: inline-block;
	font-weight: bold;
	border: 1px solid var(--blau);
	border-radius: 5px;
	color: white;
	background: var(--blau);
}
.button a:hover,
.content-hyperlink a:hover,
button.submit:hover {color: var(--blau); background: white;}


:target:before {
content: "";
display: block;
height: 7em; /* fixed header height */
margin: -7em 0 0; /* negative fixed header height */
grid-row: 1; grid-column: 1; /* falls Ziel ein Grid ist */
}


/* über Footer: Welle */
#container {
	background: url('../../files/private/img/welle-footer.svg') no-repeat center bottom;
	background-size: calc(100vw + 2px) auto;
}





/**** FOOTER ****/

footer {
	margin-top: -1px;
	color: white;
	background: var(--blau);
}
footer .inside {
	margin: 0 auto;
	padding-bottom: 4em;
	font-size: 14px;
	line-height: 24px;
}

footer .grid_desktop_25_25_25_25 > div:first-child {grid-column: 1 / 3;}

footer .content-image {margin-bottom: 1.4em;}
footer p {font-weight: bold;}

footer a {color: white;}
footer a:hover {color: black;}

footer ul {padding: 0; list-style: none;}
footer li {display: block;}





/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/


/*********** DESKTOP BREIT ***********/
@media (max-width:1271px) {

header .inside {grid-template-columns: 14em 1fr 5em;}

.referenzteaser h3 {line-height: 1.4;}
.referenzteaser_wrapper::after,
.welle-produkte-1::after,
.welle-referenzen-1::after,
.welle-referenzen-2::after {left: -2em;}

.anwendung h2,
.referenz .image_subtitle {padding-top: 1rem; line-height: 1.3;}


} /* Ende Desktop breit */



/*********** DESKTOP SCHMAL ***********/
@media (max-width:1100px) {

html {font-size: 16px;}
h1, h2, .h2 {font-size: 1.5rem;}
.subheadline {font-size: 2.5rem; line-height: 1.4;}

.mod_navigation ul {grid-template-columns: 7.6em 9.2em 7.5em 8.9em 5.6em;}

.vorteil {margin-top: 2em;}
.vorteil figure {height: 7.5em;}
.vorteil figure img {height: 6.5em;}

.referenzteaser h3 {padding-left: 1em; padding-right: 1em;}
.referenzteaser .table {margin: 0 1em 4px;}
.referenzteaser img {width: 100%;}

.anwendung h2, .referenz .image_subtitle {padding: 0.6rem;}
.anwendung .rte,
.anwendungen-kontakt {padding-left: 0; padding-right: 0;}

.referenz {grid-gap: 3em;}
.referenz .spalte1 {padding-right: 0;}
.referenz-wrapper:nth-child(2n-1) .spalte1 {padding-left: 0;}
.referenz .table {margin: 0 1em 4px;}


} /* Ende Desktop schmal */




/*********** TABLET 1 ***********/
@media (max-width:991px) {

header {top: -4.3em;}
header .inside {padding-top: 1em; grid-template-columns: 1fr 11em 1fr;}
.logo {margin-bottom: 1em; grid-column: 2;}
.mod_navigation {grid-row: 2; grid-column: 1 / 4;}
.mod_navigation ul {grid-template-columns: 7.6fr 9.2fr 7.5fr 8.9fr 5.6fr;}

#welle .hg {height: calc(7.6em + 1px); top: -7.6em;}

.subheadline {font-size: 2rem;}
.subheadline p {margin-bottom: 0.6em;}

#article-19 {margin-top: 3em;}

.bildersprenkel {margin-bottom: 5em;}
.bildersprenkel figure img {max-width: calc(50vw - 2em);}
.bildersprenkel div:nth-child(1) {padding-top: 0;}
.bildersprenkel div:nth-child(2) {position: relative; top: unset; right: unset; text-align: center; padding-top: 1em;}

.box {margin-top: 3em; margin-bottom: 5em;}

.portraits .grid_start {grid-template-columns: 1fr 1fr 1fr;}
.portraits.links .grid_start {margin-left: 0;}

footer .grid_tablet_25_25_25_25 {grid-template-columns: 1fr 1fr 1.2fr 6.5em;}

} /* Ende Tablet 1 */


/* Zwischengröße */
@media (max-width: 859px) {
	.formular::after {left: calc(-2em - 1px);}
}


/*********** TABLET 2 ***********/
@media (max-width:800px) {

html {font-size: 15px;}


header .inside, .mod_article, footer .inside {padding-left: 1.5em; padding-right: 1.5em;}
.referenzteaser_wrapper::after,
.welle-produkte-1::after,
.welle-referenzen-1::after,
.welle-referenzen-2::after {left: -1.5em;}

#welle .hg {height: calc(8.9em + 1px); top: -8.9em;}

} /* Ende Tablet 2 */




/*********** MOBIL 1 ***********/
@media (max-width:767px) {

html {font-size: 14px;}
header {font-size: 1em;}

.zentriert-mobil {text-align: center;}
.abstand_oben_-11 {margin-top: -2em; margin-bottom: 2em;}

#container {background-image: url('../../files/private/img/welle-footer-mobil.svg');}
.start #container {margin-top: -3em;}

.mod_article.breit:first-child {margin-bottom: 2em;}

.grid-anwendungen > div {justify-items: center;}
.grid-anwendungen div div:nth-child(6n+1),
.grid-anwendungen div div:nth-child(6n+2),
.grid-anwendungen div div:nth-child(6n+3) {justify-self: unset;}
.grid-anwendungen .luecke {display: none;}


.anwendung .inner {grid-template-columns: 1fr; margin-top: 11vw;}
.anwendung h2 {margin-bottom: 1.2rem; padding: 0.8rem 0.7rem; background: var(--blau);}
.anwendung .rte {grid-row: unset;}

.ce_form .widget-text label {margin: 0.8em 0 0;}

footer .grid_mobile_50_50 {grid-template-columns: repeat(2, 1fr);}
footer .grid_mobile_50_50 > div:first-child {grid-column: unset;}
footer .grid_mobile_50_50 {gap: 0 25px;}
footer .mod_customnav {grid-column: 2;}


} /* Ende Mobil 1 */




/*********** MOBIL 2 ***********/
@media (max-width:650px) {

.referenz {grid-template-columns: 1fr;}
.referenz-wrapper:nth-child(2n-1) .spalte1 {grid-column: unset;}
.referenz .bild img {width: 100%;}
.referenz .text .image_subtitle {padding: 1em; min-height: unset;}


} /* Ende Mobil 2 */



/*********** MOBIL 3 ***********/
@media (max-width:575px) {

header {top: 0;}
header .inside {padding-top: 0.6em;}

/*.sprachwechsler {grid-row: 1; margin-top: 0.8em; text-align: left;}*/

.menu-icon {display: block; text-align: right; cursor: pointer;}
.menu-icon img {width: 1.6em; padding-top: 0.8em; filter: brightness(10);}
.menu-icon:hover img {filter: none;}

.mod_navigation {display: none; position: absolute; top: -2em; left: -1.5em; right: -1.5em; background: var(--blau); z-index: -1;}
.mod_navigation ul {display: block; margin-top: 3em;}
.mod_navigation li {display: block; font-weight: bold;}
.mod_navigation li.start {display: block;}
.mod_navigation li a,
.mod_navigation li strong {display: block; padding: 0.6em;} 
.mod_navigation li strong,
.mod_navigation li a:hover {color: var(--blau); background: var(--gelb);}

.mod_changelanguage {grid-row: 1; text-align: left;}
.mod_changelanguage ul {right: unset; left: 0; font-size: 1.3em;}

.button-auf-bild .content-hyperlink {position: relative;}
.button-auf-bild.mittig .content-hyperlink {bottom: unset;}

.vorteil {margin-top: 0;}
.vorteil figure {height: unset;}
.vorteil figure img {height: 5em;}
.vorteil.breite_4spalten {max-width: unset;}

.referenzteaser.abstand_oben_9 {margin-top: 0;}
.referenzteaser h3 {min-height: unset; background: var(--blau);}

.referenz .image_subtitle {background: var(--blau);}

.produkt-box.abstand_oben_4 {margin-top: 0; margin-bottom: 2em;}

.anwendung {margin-bottom: 6em;}

.formular h1 {min-height: 3.5rem; padding: 1rem 1rem 0; background: var(--blau);}
.formular .ce_form {margin: 1rem;}
.formular .hg_blau {padding: 0.5rem 1.5rem;}

.button-auf-bild.unten-rechts .content-hyperlink {text-align: center;}

.h2.zentriert.abstand_oben_3 {margin-top: 1rem;}

footer .inside {padding-top: 1.5em; padding-bottom: 1em;}
footer .grid_mobile_50_50 {display: block;}
footer .content-image img {max-width: 19.6em; margin-bottom: 2.5em;}
footer p {margin-bottom: 1.5em;}
footer .mod_customnav {position: absolute; bottom: 1.5em; right: 1.5em;}


} /* Ende Mobil 3 */




/*********** MOBIL 4 ***********/
@media (max-width:450px) {

.portraits .grid_start {display: block; margin-bottom: 0;}
.portraits .grid_start .content-text {display: grid; grid-template-columns: 1fr 1fr; gap: 2em; margin-bottom: 1.5em;}


} /* Ende Mobil 4 */




/*********** MOBIL 5 ***********/
@media (max-width:330px) {
	
footer .mod_customnav {position: relative; right: unset; bottom: unset;}

} /* Ende Mobil 5 */



/********* TOUCHSCREENS *********/
@media (hover: none) {


} /* Ende Touchscreens */
