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%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
/**
 * 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 */

/*! 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;
}

/**
 * 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: 0;
  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;
}
/* open-sans-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../../files/private/fonts/open-sans-v44-latin-300.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v44-latin-300.ttf') format('truetype');
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: normal;
  src: url('../../files/private/fonts/open-sans-v44-latin-regular.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v44-latin-regular.ttf') format('truetype');
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/private/fonts/open-sans-v44-latin-600.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v44-latin-600.ttf') format('truetype');
}



/* Farben */
html {
    --anthrazit: #444444;
    --blau: #2b748b;
    --hellblau: #e7f7f7;
}


/* ALLGEMEIN */
html {
	font-family: 'Open Sans';
	font-size: 17px;
	font-weight: normal;
	line-height: 1.5;
	color: var(--anthrazit);
	overflow-x: hidden;
}

p {margin: 0.8em 0;}

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

h1 {}
h2 {font-size: 1.6em; font-weight: normal; text-transform: uppercase; color: var(--blau); margin: 1.8em 0 1em; padding-bottom: 0.5rem; border-bottom: 1px solid;}

b, strong {
  font-weight: 600;
}

.content-text ul {margin: 0; padding-left: 1em;}

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

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

.overflow_visible {overflow: visible;}
.overflow_visible.ce_cp_grid_start > div {overflow: visible;}
.zentriert, .text-align_center {text-align: center;}
.rechtsbuendig {text-align: right;}

.zweispaltig {columns: 2; column-gap: 2em;}

.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_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;}

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

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

.grid_start {grid-gap: 0 2em;}
.ce_cp_grid_start {display: block;}
.gap2 .grid_start {gap: 2em;}
.rowgap0 .grid_start {row-gap: 0;}

.minwidth_0 {min-width: 0;}
.width_100 {width: 100%;}




header .inside,
.mod_article,
.volle_breite .inside,
footer .inside {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 6rem;
	padding-right: 6rem;
}



/**** HEADER ****/

header {
	position: fixed;
	width: 100vw;
	background: #fffe;
	backdrop-filter: blur(3px);
	z-index: 2;
}
header .inside {display: grid; grid-template-columns: 10em auto; padding-top: 1em; padding-bottom: 1.3em;}

header a {color: var(--anthrazit);}


/* Logo */
.logo {
	font-size: 1.25em;
	line-height: 1.3;
	font-weight: 300;
	text-transform: uppercase;
}

/* Navigation allg */
nav {text-transform: uppercase;}
nav ul {margin: 0; padding: 0;}
nav li {display: inline-block;}
nav li strong,
nav li a {
	display: block;
	padding: 0.4em 0.5em;
}
nav li.active a,
nav li a:hover {color: var(--blau); border-bottom: 1px solid;}


/* Hauptmenu */
nav.module-onepage-navigation {margin-top: 0.4rem; text-align: right;}
.menu-icon {display: none;}



/**** INHALT ****/

#container {min-height: calc(100vh - 3em);}
#main {padding-top: 5.5em; padding-bottom: 4em;}

.titelbild {position: relative; background: url('../../files/private/img/hg_gruenzeug.jpg'); background-size: cover; margin-bottom: 4em;}

.titelbild .text {
	position: absolute;
	padding: 1.8em 2.2em;
	bottom: 2em;
	display: block;
	z-index: 1;
}
.titelbild .text::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: skew(-4deg);
  background: #fffc;
}
.titelbild .text .uebertitel,
.titelbild .text .name {position: relative; z-index: 1;}
.titelbild .text .uebertitel {font-size: 1.8em; font-weight: 300;}
.titelbild .text .name {font-size: 2.35em; font-weight: normal; line-height: 1.2; margin: 0; padding-bottom: 0.7rem; border-bottom: 1px solid var(--blau);}
.titelbild .bild figure {text-align: right; line-height: 0;}

/*
main > .inside {display: grid; grid-template-columns: 1fr 1fr; grid-gap: 0 2em;}
.mod_article {grid-column: 1 / 3;}
*/

.mod_article.volle_breite {
	width: 100%;
	max-width: unset;
	padding: 0;
	position: relative;
}

/*
#gutachten {grid-column: 1 / 2; padding-right: 0;}
#zur-person {grid-column: 2 / 3; padding-left: 0; margin-top: 1em;}
*/

/* Tabelle */
.content-table th {width: 7.5em;}
.content-table tr {vertical-align: top; text-align: left;}
.content-table tr td {padding-bottom: 1em;}

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

/* Figcaption */
.content-image figure {position: relative;}
.content-image figcaption {position: absolute; bottom: 0; color: white; text-shadow: 0 0 3px black; font-size: 0.7em; right: 3px;}


/* blauer Kasten */
.kasten {
	display: block;
	padding: 1em 2em;
	background: var(--hellblau);
}
.kasten h2 {margin: 1rem 0 0.8rem; border: none;}


/* farbige Flächen */
.hg_hellblau {
	position: relative;
	padding: 2.5em 0;
	overflow: visible;
}
.hg_hellrot::before {
    content: "";
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: calc(550px - 50vw);
    z-index: -2;
}
.hg_hellrot::before {background: var(--hellblau);}

.kontakt {margin-top: 0.8em;}
.kontakt > div {display: flex; margin-bottom: 0.5em;}
.kontakt .art {width: 4em;}
.kontakt img {width: 1.6em; margin-right: 0.8em;}
.kontakt a {color: var(--anthrazit);}
.kontakt a:hover {color: var(--blau);}




/**** FOOTER ****/

footer {
	padding: 1.5em 0 4em;
	background: url('../../files/private/img/hg_gruenzeug.jpg');
	background-size: cover;
	background-color: var(--blau);
}
footer .inside {margin: 0 auto;}

footer nav {text-align: right; font-size: 1rem;}
footer li strong {color: var(--hellblau); text-transform: uppercase; font-weight: normal;}
footer li a {color: white;}
footer li a:hover {color: var(--hellblau);}

/* für Barrierefreiheit - wave.webaim.org */
footer nav a.invisible {background: white;}




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


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

header .inside, .mod_article, .volle_breite .inside, footer .inside {
  padding-left: 3rem;
  padding-right: 3rem;
}


} /* Ende Desktop breit */



/*********** DESKTOP MITTEL ***********/
@media (max-width:1000px) {

html {font-size: 16px;}

} /* Ende Desktop mittel */



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

html {font-size: 15px;}

header .inside, .mod_article, .volle_breite .inside, footer .inside {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

} /* Ende Desktop schmal */




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



} /* Ende Tablet 1 */




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

nav li strong, nav li a {padding: 0.4em 0.3em;}

.kontakt {grid-row: 2;}



} /* Ende Mobil 1 */




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


.module-onepage-navigation {position: fixed; right: 1.5em; font-family: 'Open Sans';}
.module-onepage-navigation .menu-icon {
	display: block;
	font-size: 3em;
    line-height: 0.8;
	cursor: pointer;
}
.module-onepage-navigation ul {display: none; margin-top: 1.7em; padding: 1em 0; background: white; box-shadow: 0 2px 3px #0003;}
.module-onepage-navigation li {display: block;}

.module-onepage-navigation li strong,
.module-onepage-navigation li a {padding-left: 1.6em; padding-right: 1.6em;}

nav li.active a, nav li a:hover {border-bottom: none; background: var(--hellblau);}

.zweispaltig {columns: 1;}

.titelbild {margin-bottom: 1em;}
.titelbild .inside {padding-left: 0.7rem;}
.titelbild .bild img {max-width: 40vw;}
.titelbild .text {font-size: 2.6vw; bottom: 1em;}



} /* Ende Mobil 2 */




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



} /* Ende Mobil 3 */




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

} /* Ende Mobil 4 */




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


} /* Ende Touchscreens */
