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;
  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;
}
/* 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-v35-latin-regular.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v35-latin-regular.ttf') format('truetype');
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: normal;
  src: url('../../files/private/fonts/open-sans-v35-latin-italic.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v35-latin-italic.ttf') format('truetype');
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: bold;
  src: url('../../files/private/fonts/open-sans-v35-latin-600.woff2') format('woff2'),
       url('../../files/private/fonts/open-sans-v35-latin-600.ttf') format('truetype'); 
}

/* exo-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Exo';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/private/fonts/exo-v21-latin-600.woff2') format('woff2'),
       url('../../files/private/fonts/exo-v21-latin-600.ttf') format('truetype');
}




/* Farben */
html {	    
    --gruen: #859919;
    --gruen90: #859919e6;
	--orange: #e68d4b;
	--braun: #5b4e47;
	--braun80: #5b4e47cc;
}


/* ALLGEMEIN */

html {
	font-family: 'Open Sans';
	font-style: normal;
	font-size: 15px;
	line-height: 1.5;
	color: var(--braun);
}

p {margin: 0.5em 0;}

a {text-decoration: none; color: var(--orange); transition: 0.2s;}
a:hover {color: var(--braun);}

h1, h2, h3 {font-family: 'Exo';}
h1 {font-size: 2rem; margin: 0.67rem 0;}
body.index h1,
h2 {font-size: 1.6rem; text-align: center;}


#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;}
.zentriert,
.text-align_center {text-align: center;}
.rechtsbuendig {text-align: right;}

.titel-zentriert h1, .titel-zentriert h2, .titel-zentriert h3 {text-align: center;}
.titel-linksbuendig h1, .titel-linksbuendig h2, .titel-linksbuendig h3 {text-align: left;}

.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_unten_0 {margin-bottom: 0 !important;}
.abstand_unten,
.abstand_unten_1 {margin-bottom: 1em;}
.abstand_unten_2 {margin-bottom: 2em;}
.abstand_unten_3 {margin-bottom: 3em;}

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

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

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

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


#container,
footer .inside {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2em;
}



/**** HEADER ****/

#header {
	position: sticky;
	top: -2em;
	z-index: 2;
}
#header .inside {position: absolute; width: 100vw; font-weight: bold; text-align: right;}

.top-menu {margin-top: 2em; padding-right: 5vw; font-size: 0.9em; background: var(--gruen90);}
.top-menu a {display: inline-block; padding: 0.6em 0 0.6em 2.5em; color: white;}
.top-menu a:hover {color: black;}
.top-menu a div {display: inline-block;}
.top-menu .icon {margin-right: 0.5em;}
.top-menu a img {height: 1.5em; transition: 0.2s;}
.top-menu a:hover img {filter: invert(1);}

.logo {
	position: absolute;
	top: 0;
	left: 4vw;
	width: 10em;
}


/* Navigation */
.menu-icon {display: none;}
.hauptmenu {font-weight: bold; padding: 1rem 5vw 0 0; font-size: 1.2em; text-align: right; text-transform: uppercase; overflow: visible; background: #fffc;}
.hauptmenu ul {margin: 0; padding: 0;}
.hauptmenu li {display: inline-block; margin-left: 1em;}
.hauptmenu li strong,
.hauptmenu li a {
	display: block;
	padding: 0.4em 0;
	color: var(--braun);
}
.hauptmenu li a:hover {color: var(--gruen);}

.hauptmenu ul.level_1 li {position: relative;}
.hauptmenu ul.level_1 li ul {
	display: none;
	position: absolute;
	width: 13em;
	padding: 1em 1.5em;
	text-align: left;
	background: var(--braun80);
	z-index: 1;
}
.hauptmenu ul > li:hover > ul {display: block;}

.hauptmenu .level_2 li {display: block; margin-left: 0; font-size: 1rem; text-transform: none;}
.hauptmenu .level_2 li a {color: white;}
.hauptmenu .level_2 li a:hover,
.hauptmenu .level_2 li strong {color: var(--gruen);}




/**** TITELBILD ****/
.mod_pageimage {position: relative; margin-bottom: 2em;}
.mod_pageimage img {width: 100%;}
.mod_pageimage figcaption {position: absolute; bottom: 0; color: white; text-shadow: 0 0 4px black; font-size: 0.7em; right: 3px; opacity: 0.8;}
.mod_pageimage .textbox {
	position: absolute;
	right: calc(50vw - 600px);
	bottom: 1.5em;
	width: 14em;
	padding: 0.5em 1.5em;
	font-family: 'Exo';
	font-size: 1.6em;
	font-weight: bold;
	color: white;
	background: var(--braun80);
}
.mod_pageimage .textbox.linksbuendig {
	left: calc(50vw - 600px);
	right: unset;
}

body.no-headerpic #titelbild {display: none;}






/**** INHALT ****/

.mod_article.block {overflow: visible;}

.no-headerpic main {padding-top: 10em;}

main figure {position: relative;}
main figcaption {position: absolute; bottom: 0; color: white; text-shadow: 0 0 3px black; font-size: 0.7em; right: 3px;}

.schmal {max-width: 800px; margin-left: auto; margin-right: auto;}

ol li {margin-bottom: 0.5em;}

/* Spalten */
.grid_start {gap: 2em;}
.gap3 .grid_start {gap: 3em;}


/* Gemüse-Buttons */
.gemuese-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 3em;
	max-width: 53em;
	margin: 2em auto 0;
	text-align: center;
}
.gemuese-buttons a {color: var(--braun);}
.gemuese-buttons a img {transition: 0.2s;}
.gemuese-buttons a:hover {color: var(--orange);}
.gemuese-buttons a:hover img {filter: brightness(1.2);}


/* Trenner */
.trenner_unten {position: relative; margin-bottom: 10vw;}
.trenner_unten::after {content: url('../../files/private/img/trenner.svg'); display: block; width: 100vw; margin-top: 1em; position: absolute; left: calc(600px - 50vw);}


/* Teaser */
.teaser {position: relative; margin-bottom: 1em; background: var(--blass);}
.teaser figure {width: 100%; background: var(--grau);}
.teaser figure img {display: block; margin: 0 auto;}
.teaser .text {position: absolute; width: 100%; padding: 0.4em 0; bottom: 0; text-align: center; color: white; background: var(--gruen90);}
.teaser a:hover .text {background: var(--braun80);}
.teaser h2 {font-size: 1.4em; margin: 0;}


/* News Startseite */
.mod_newslist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 4em;
}
.mod_newslist .layout_latest {margin-bottom: 1em; display: grid; grid-template-columns: 202px 1fr; gap: 0 2em;}
.mod_newslist h2 {margin-top: 0; grid-column: 1 / 3; text-align: left;}
.mod_newslist h3 {margin-bottom: 0;}
.mod_newslist img {border: 1px solid white;}

.mod_newsreader img {width: 100%; margin-bottom: 1.5em;}
.mod_newsreader h1 {font-size: 1.5em; text-align: center;}
.mod_newsreader .info {text-align: center;}

/* Buttons */
.button a,
.back a,
button.submit {
	display: inline-block;
	margin: 0.5em 0;
	padding: 0.5em 1.5em;
	color: white;
	border: 1px solid var(--gruen90);
	background: var(--gruen);	
}
.button a:hover,
.back a:hover,
button.submit:hover {color: var(--gold); background: white;}
.back a {margin-top: 2em;}


/* grau-transparente Flächen */
.hg_grau {
	position: relative;
	margin: 4em 0 3em;
	padding: 1.5em 0;
	overflow: visible;
	color: white;
}
.hg_grau::before {
    content: "";
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: calc(600px - 50vw);
    background: url('../../files/private/img/hg_grau.jpg') no-repeat;
    background-size: cover;
    z-index: -1;
}
.hg_grau a {color: white;}
.hg_grau a:hover {color: black;}
.hg_grau button {border: 1px solid white;}



/* Videos */
iframe {border: none;}
.ce_vimeo a, .ce_youtube a {position: relative;}
.ce_vimeo a::before, .ce_youtube a::before {
	content: '▶';
	position: absolute;
	left: calc(50% - 29px);
	bottom: 0;
	margin-bottom: calc(25% - 45px);
	font-size: 4em;
	color: white;
	opacity: 0.8;
}
.ce_vimeo a:hover::before, .ce_youtube a:hover::before {color: var(--gold);}

.ce_vimeo figure::before {
	content: 'Durch das Laden dieses Videos stimmen Sie den Datenschutzbedingungen von Vimeo.com Inc. zu. Vimeo setzt dann in Ihrem Browser Cookies (vimeo.com/privacy).';
}
.ce_youtube a::after {
	content: 'Durch das Laden dieses Videos stimmen Sie den Datenschutzbedingungen von Google LLC zu. YouTube setzt dann in Ihrem Browser Cookies (policies.google.com/privacy).';
}
.ce_vimeo figure::before,
.ce_youtube a::after {
	position: absolute;
	padding: 0.6em;
	left: 0;
	right: 5px;
	bottom: 0;
	font-size: 0.7em;
	color: white;
	background: #0009;
	z-index: 1;
}

/* Akkordeon */
.ce_accordion {margin-bottom: 1em;}
.ui-accordion-header {
	background: var(--gruen);
	color: white;
	font-weight: bold;
	padding: 0.5em 1.2em;
	font-size: 1.2em;
	cursor: pointer;
}
.ui-accordion-header:hover {background: var(--gruen90);}
.ui-accordion-header-icon {
	width: 0.8em;
	height: 0.8em;
	display: inline-block;
	background: url('../../files/private/img/pfeil_weiss.svg') no-repeat 50%;
	background-size: 0.35em auto;
	transition: 300ms;
}
.ui-icon-triangle-1-s {
	transform: rotate(90deg);
}
.ui-accordion-content {
	padding: 0.5em 1rem;
	background: #85991911;
}

/* Downloads */
.ce_downloads ul {padding-left: 1em;}
.ce_downloads ul li {margin-bottom: 0.3em;}
.ce_downloads .size {display: inline-block; font-size: 0.8em; color: lightgrey;}


/* Bildergalerie */
.ce_gallery > ul li, .content-gallery > ul li {
	float: unset;
	display: inline-block;
}


/**** FOOTER ****/

footer {margin-top: 0.5em; background: var(--gruen);}
footer .inside {
	padding-top: 3em;
	padding-bottom: 8em;
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3em;
	color: white;
}
footer ul {padding: 0;}
footer a {color: white;}

.mod_sitemap {columns: 2; margin-top: 0.5em;}
.mod_sitemap ul.level_1 {margin: 0;}
.mod_sitemap ul.level_1 > li {margin-bottom: 0.5em; list-style: none;}
.mod_sitemap ul.level_1 > li > a {font-weight: bold;}
.mod_sitemap ul.level_2 {padding-left: 1em;}

.footer-rechts img {max-width: 12em; background: white;}

footer .mod_customnav li {display: inline-block;}
footer .mod_customnav li:first-child::after {content: ' |';}
 
footer .trenner {
	position: absolute;
	display: block;
	width: 100vw;
	left: calc(600px - 50vw + 2em);
	bottom: 1em;
}
 
.ncoi---blocked {background: black;}
.mod_cookieOptInRevoke {margin: 1em 0 1em 1.5em; float: right;}
.mod_cookieOptInRevoke a {cursor: pointer;}




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


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



} /* Ende Desktop breit */



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


.hg_grau::before,
.trenner_unten::after {left: -2em;}

.mod_pageimage .textbox.linksbuendig,
footer .trenner {left: 0;}

.mod_pageimage .textbox {width: unset; bottom: 1em; font-size: 1.4em;}

} /* Ende Desktop schmal */



/*********** ZWISCHENGROESSE ***********/
@media (max-width:900px) {
  .logo {left: 2vw;}
  .hauptmenu li {margin-left: 0.7em;}
}



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

html {font-size: 14px;}

.logo {left: 1rem;}
.top-menu {padding-right: 1rem;}
.hauptmenu {padding-right: 1rem; font-size: 1.1em;}

.mod_newslist {display: block;}

.gemuese-buttons {grid-template-columns: 15vw 15vw 15vw 15vw 15vw; gap: 4vw;}

} /* Ende Tablet 1 */



/*********** ZWISCHENGROESSE ***********/
@media (max-width:725px) {
  .hauptmenu .level_1 > .last {display: none;}
}



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

.image_container.float_right {float: unset; margin-left: 0 !important;}
.mod_pageimage {margin-bottom: 1em;}
.mod_pageimage .textbox {font-size: 1em;}
.mod_pageimage .textbox h1 {font-size: 1.7rem;}


} /* Ende Tablet 2 */



/*********** TABLET 3 ***********/
@media (max-width:650px) {

#header .inside {display: grid; grid-template-columns: 1fr 1fr;}

.top-menu {margin-top: 1.5rem; padding: 0.4rem 0.5rem;}
.top-menu a {display: block; text-align: left; padding: 0.5em 0 0.5em 1em;}
.top-menu > a:nth-child(3) {display: none;}

.menu-icon {display: block; padding-right: 1em; cursor: pointer;}
.menu-icon:hover {opacity: 0.6;}
.menu-icon img {width: 2em;}

.logo {left: calc(50vw - 4em); width: 8em;}

.hauptmenu {
	margin-top: 1.5rem;
	margin-right: 0;
	padding: 1.8rem 0.5rem 0;
	position: relative;
	overflow: visible;
	background: var(--gruen90);
}
.hauptmenu ul.level_1 {
	display: none;
	position: absolute;
	right: 0;
	margin-top: 1.5em;
	width: 100vw;
    padding: 1em 0;
    text-align: center;
	background: #444d;
	z-index: 2;
}
.hauptmenu li {display: block; margin-right: 0.6em; border-bottom: 1px solid var(--grau);}
.hauptmenu .level_1 > .first {display: block; border-top: 1px solid var(--grau);}
.hauptmenu .level_1 > .last {display: block;}

.hauptmenu li strong,
.hauptmenu li a {padding: 0.5rem 1rem; font-size: 1.2em; color: var(--gruen);}
.hauptmenu li a {color: white;}
.hauptmenu li a:hover {color: var(--grau); background: var(--gruen);}

/* Untermenues immer aus  .mod_navigation ul > li:hover > ul {display: none;} */

footer .inside {grid-template-columns: 1fr 1fr;}
.mod_sitemap {columns: 1;}

} /* Ende Tablet 3 */




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

#header {top: -0.7em;}
.top-menu {margin-top: 0.7rem; padding: 0.4rem 0;}
.top-menu > a:nth-child(1) > div:nth-child(2) {max-width: 25vw;}
.hauptmenu {margin-top: 0.7rem; padding-top: 2.2em;}

#titelfoto {
	padding-top: 4.8em;
	background: url('../../files/private/img/hg_grau.jpg') no-repeat;
    background-size: cover;
}

.gemuese-buttons {display: block;}
.gemuese-buttons a {display: inline-block; width: 8em; margin: 0.5em;}


} /* Ende Mobil 1 */




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

.mod_newslist .layout_latest {grid-template-columns: 2fr 3fr; align-items: center;}
  
footer .inside {grid-template-columns: 1fr;}



} /* Ende Mobil 2 */




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

.logo {left: calc(50vw - 1em);}





} /* Ende Mobil 3 */



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


} /* Ende Touchscreens */
