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 */

/*! 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;
}
/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: normal;
  src: url('../../files/private/fonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../files/private/fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/private/fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/private/fonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
  font-display: swap;
}

/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: normal;
  src: url('../../files/private/fonts/roboto-v30-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../files/private/fonts/roboto-v30-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/private/fonts/roboto-v30-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/private/fonts/roboto-v30-latin-300italic.svg#Roboto') format('svg'); /* Legacy iOS */
  font-display: swap;
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: bold;
  src: url('../../files/private/fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../files/private/fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/private/fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../../files/private/fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/private/fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
  font-display: swap;
}


/* FARBEN
	orange		#ec4706
	türkis		#005461
	anthrazit	#353534
	hellgrau	#ebeced
*/


/* ALLGEMEIN */

html {
	font-family: 'Roboto';
	font-size: 18px;
	font-weight: normal;
	line-height: 1.6;
	color: #353534;
	scroll-padding-top: 88px;
	scroll-behavior: smooth;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

h2 {font-size: 2.7rem; font-weight: normal; line-height: 1.2;}
.hg_orange h2 {margin: 0.4em;}
h2.klein,
h3.gross {font-size: 1.7rem;}

a {color: #ec4706; text-decoration: none; font-weight: bold;}
a:hover {text-decoration: underline;}

.text_gr {font-size: 1.6rem;}
.schmal {max-width: 52rem; margin: 1.6rem auto 2rem;}
.halbschmal {max-width: 63rem; margin: 1.6rem auto 2rem;}
.uppercase {text-transform: uppercase;}

.abstand_oben_xkl {margin-top: 1em;}
.abstand_oben_kl {margin-top: 1.5em;}
.abstand_unten_xkl {margin-bottom: 1em;}
.abstand_unten_kl {margin-bottom: 1.5em;}
.abstand_oben {margin-top: 2em;}
.abstand_unten {margin-bottom: 2em;}
.abstand_oben_mi {margin-top: 4em;}
.abstand_unten_mi {margin-bottom: 4em;}
.abstand_oben_gr {margin-top: 6em;}
.abstand_unten_gr {margin-bottom: 6em;}

.hg_grau {background: #ebeced;}
.hg_tuerkis {background: #005461; color: white;}
.hg_orange {background: #ec4706; color: white;}
.hg_orange figcaption {font-weight: bold; text-align: center; padding: 0.5em 0;}

.linie_oben_weiss {border-top: 2px solid white;}

.orange {color: #ec4706;}
.zentriert {text-align: center;}
.rechtsbuendig {text-align: right;}

.position_relative {position: relative;}

.padd_4rem {padding: 2rem 4rem;}
.gap0 .grid_start {gap: 0;}
.rowgap5 .grid_start {row-gap: 5em;}
.vertical-middle figure {display: flex; height: 100%;}

hr {border-top: 1px solid lightgrey; border-bottom: 0;}

.liste_orange ul {list-style: none; padding-left: 0;}
.liste_orange li {position: relative; padding-left: 1.3em;}
.liste_orange li::before {
	content: "●";
	color: #ec4706;
	position: absolute;
	left: 0;
}

.schatten img {-webkit-filter: drop-shadow(0 0.1em 0.2em #0007); filter: drop-shadow(0 0.1em 0.2em #0007);}

.confirm {font-weight: bold; color: #005461;}


/**** HEADER ****/
header {
	padding: 0.7em 0 0;
	
	position: sticky;
	top: 0;
	background: white;
	z-index: 5;
	box-shadow: 0 0 0.5em #0003;
}
header .inside {display: grid; grid-template-columns: 13em 1fr;}

.logo img {width: 222px;}
.kontakt-mobil {display: none;}



/* Navigation */

.mod_navigation {text-align: right; overflow: visible;}
.menu-icon {display: none;}
.mod_navigation ul {
	margin-bottom: 0;
	padding: 0;
	/* wegen bold bei hover */
	display: grid;
	grid-template-columns: 6.1em 7.3em 9.1em 7.4em 8.2em 7.4em 12.5em /*7.5em 9.5em 10.5em 9.5em 8em 13em*/;
	float: right;
	text-align: center;
}
.mod_navigation li {display: inline-block; position: relative;}

.mod_navigation li:last-child {margin-right: 0;}

.mod_navigation ul.level_1 > li > a,
.mod_navigation ul.level_1 > li > strong {padding-bottom: 2em;}

.mod_navigation li strong,
.mod_navigation li a {
	display: block;
	padding: 0.2em;
	font-weight: normal;
}

.mod_navigation li a {
	position: relative;
	color: #353534;
}
.mod_navigation li a:hover,
.mod_navigation li strong,
.mod_navigation li a.trail {
	font-weight: bold;
	color: #ec4706;
	text-decoration: none;
}
.mod_navigation ul.level_1 > li.kontakt > a {
	color: white;
	padding: 0.2em 0.5em;
	background: #ec4706;
}
.mod_navigation ul.level_1 > li.ems-portal {text-align: right;}
.mod_navigation ul.level_1 > li.ems-portal > a {
	margin-left: 1em;
	padding-top: 0.6em;
	font-size: 0.9em;
	line-height: 1;
	font-weight: bold;
	text-transform: uppercase;
	color: #ec4706;
}
.mod_navigation ul.level_1 > li.ems-portal > a::before {
	content: url('/files/private/img/icon_portal.svg');
	display: inline-block;
	width: 1em;
	margin-right: 0.2em;	
	vertical-align: middle;
}
.mod_navigation ul.level_1 > li.ems-portal > a:hover {color: black;}
.mod_navigation ul.level_1 > li.ems-portal > a:hover::before {filter: brightness(0);}

/* Untermenu */
.mod_navigation ul.level_2 {
	overflow: visible;
	display: block;
	position: absolute;
	left: 1.2em;
	min-width: 220px;
	z-index: 1;
}
.mod_navigation ul.level_2 li {
	display: block;
	padding: 0.36em 0.6em;
	text-align: left;
	background: #ec4706;
	border-bottom: 1px solid white;
}
.mod_navigation ul.level_2 li:last-child {border-color: #ec4706;}

.mod_navigation ul.level_2 li a {color: white;}
.mod_navigation ul.level_2 strong {color: white;}

.mod_navigation ul.level_1 li ul {display: none;}
.mod_navigation ul > li:hover > ul {display: block;}

.mod_navigation ul.level_3 {
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 220px;
	display: block;
}






/**** INHALT ****/

#container {margin-bottom: 5em; min-height: calc(100vh - 24em);}
.einsatzbereiche #container,
.unternehmen #container {margin-bottom: 0;}

.content-text {overflow: hidden;}

.mod_article:not(.breit),
.standardbreit,
.breit .content-text.standardbreit,
.banner .inner2,
header .inside,
footer .inside {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}


/* Banner */
.banner {position: relative;}
.banner .inner1 {position: absolute; width: 100%; height: 100%;}
.banner .inner2 {position: relative; height: 100%;}

.banner .box {
	position: absolute;
	min-width: 6.5em;
	padding: 0.9em 1.2em;
	bottom: calc(50% - 2em);
	font-size: 3em;
	color: white;
	background: #ec4706;
}
.banner .box h1,
.banner .box p {margin: 0; line-height: 1.2;}
.banner .box h1 {font-size: 1em;}

.banner .freisteller {
	position: absolute;
	right: 4em;
	bottom: 0.5em;
}
.banner .freisteller img {
	-webkit-filter: drop-shadow(0 0 5px #0007);
	filter: drop-shadow(0 0 5px #0007);
}
.banner .hg figure {padding-bottom: 4.7em;}

/* unterschiedliche Textbox-Größen in Bannern */
.index .banner .box {
	left: 2.5em;
	width: 8em;
	padding-right: 3em;
}
.produkte .banner .box {
	bottom: 9.8rem;
	left: 2.2em;
}
.pacadu-pro .banner .box {
	bottom: 14rem;
	left: 0em;
}

/* Video-Banner */
.banner.content-player {text-align: center;}


/* Pfeil nach unten (auf Banner) */
#article-7 {position: relative; max-height: calc(100vh - 99px);}
.pfeil_runter {width: 3em; display: block; position: absolute; right: 1em; bottom: 1em;}
.pfeil_runter img {transform: rotate(90deg);}
.pfeil_runter:hover img {filter: brightness(50);}

/* Spalten */
.grid_start {gap: 1.6em;}

.breit {margin-left: auto; margin-right: auto; max-width: 1920px;}
.breit .content-text:not(.halbschmal) {max-width: 706px;}


.index .breit .grid_desktop_50_50 > div:first-child {margin-left: auto; margin-right: 0;}

.index .breit .grid_desktop_50_50 h2 {margin-top: 0;}
.index .breit .grid_desktop_50_50 p {max-width: 26em;}
.index .breit .grid_desktop_50_50 > .content-text:nth-child(2) {margin-left: 6em;}
.index .breit .grid_desktop_50_50 > .content-text:nth-child(2) p {max-width: 24em;}



/* Banner mit orangem Hintergrund */
.banner-orange {
	background: #ec4706;
}
.banner-orange .titel {
  width: calc(100% - 2em);
  max-width: 550px;
  color: white;
  font-size: 2.7em;
  line-height: 1.2;
 }
 .banner-orange .titel h1 {font-size: 2.7rem; margin: 0;}
 .banner-orange .titel p {margin: 0;}

 .banner-orange.breit .grid_desktop_50_50 > div:first-child {margin-left: auto; margin-right: 0;}

/* Titel im Text */
.titel-im-text {font-size: 2.7em; line-height: 1.2; margin-top: 0.3em;}
.titel-im-text h2 {margin: 0; font-weight: bold;}
.titel-im-text p {margin: 0;}


/* Teaser-Kachel */
.teaser {background: #ebeced; margin-top: 4em; overflow: visible;}

.teaser .bild {position: relative; margin-top: -3.6em; text-align: center;}
.teaser .bild img {-webkit-filter: drop-shadow(0 0.1em 0.2em #0007); filter: drop-shadow(0 0.1em 0.2em #0007);}
.teaser .text {padding: 3em 0 0;}
.teaser h2 {margin: 0; padding: 2rem 2.2rem 0; font-size: 2.2em; font-weight: bold; text-transform: uppercase;}
.teaser .fliesstext {font-size: 1.6em; padding: 0 2.2rem 3rem;}
.teaser .fliesstext p {margin: 0; line-height: 1.3; max-width: 500px;}
.teaser .button_wrapper {/*margin-bottom: 2rem; */text-align: right;}
.teaser .button {width: 16em;}

.teaser .button.grossbuchstaben {width: 11em; text-transform: uppercase;}


/* Teaser-Bild */
.teaserbild-titel h2 {margin-bottom: 4.5rem;}
.teaserbild .bild {position: relative;}
.teaserbild .bild img {width: 100%;}
.teaserbild .button {position: absolute; right: 0; bottom: 0;}
.teaserbild .text {
	padding: 0.8em;
	font-size: 1.6em;
	text-align: center;
	background: #ebeced;
}

/* Button */
.button, .submit, .content-hyperlink a {
	display: inline-block;
	width: 10em;
	padding: 0.6em;
	font-weight: normal;
	text-align: center;
	color: white;
	background: #ec4706;
}
.button:hover, .submit:hover, .content-hyperlink a:hover {font-weight: bold; text-decoration: none;}

.button.blau, .content-hyperlink.blau a {background: #005461;}

.button.w16em, .content-hyperlink.w16em a {width: 16em;}

/* Videos */
.content-player video {width: 100%; height: auto;}


/* News Startseite */
.index .mod_newslist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5em;
}
.index .mod_newslist .bild {position: relative;}
.index .mod_newslist .button {position: absolute; right: 0; bottom: 0;}
.index .mod_newslist .info {margin: 1.1em 0 0.6em;}
.index .mod_newslist h3 {font-size: 1.6em; margin: 0; line-height: 1.4;}
.index .mod_newslist h3 a {color: #353534;}

/* News Liste */
.unternehmen .layout_latest {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3.6em;
	padding: 2.4em 0 3em;
	border-bottom: 1px solid lightgrey;
}
.unternehmen .layout_latest:last-child {border-bottom: none;}
.unternehmen .mod_newslist .bild {padding-top: 0.6em;}
.unternehmen .mod_newslist  .text {display: flex; flex-wrap: wrap;}
.unternehmen .mod_newslist .info {margin: 0;}
.unternehmen .mod_newslist h3 {margin: 0; font-size: 1em;}
.unternehmen .mod_newslist h3 a {color: #353534;}
.unternehmen .mod_newslist .content-text p::after {content: ' ...';}
.unternehmen .mod_newslist .button_wrapper {display: grid; align-content: end;}

/* News Detail */
.mod_newsreader {margin-top: 6em; overflow: visible;}
.mod_newsreader .layout_full {
	display: grid;
	grid-template-columns: 25em 1fr;
	gap: 6em;
	overflow: visible;
}
.mod_newsreader > .back {display: none;}
.mod_newsreader h1 {margin-top: 2em; font-size: 2.6rem; font-weight: normal; line-height: 1.3;}
.mod_newsreader h2 {font-size: 1.7em; font-weight: bold;}
.mod_newsreader .randspalte {margin-top: 2em;}
.mod_newsreader .randspalte .content-text {padding: 0.4em 1.6em 1.5em; box-shadow: 0 0 2em #0001;}
.mod_newsreader .download-element .button {width: calc(100% - 1.2em);}
.mod_newsreader .download-element img {width: 2em; margin-right: 0.8em; filter: invert(1);}
.mod_newsreader .kontakt img {width: 1.5em; float: left; margin-right: 0.4em;}
.mod_newsreader .kontakt a {color: unset; font-weight: normal;}

/* Karriere Liste */
.karriere-button {width: unset; margin-right: 1em; padding: 0.6em 0.4em; font-size: 1.5em; font-weight: bold;}
.karriere-button img {width: 1.3em; padding-left: 0.5rem; vertical-align: text-bottom;}
.karriere-button.nur-mobil {display: none;}
.karriere-item {font-size: 1.5em; margin-top: 0.6em;}
.karriere-item a {color: #353534;}
.karriere-item a:hover {color: #ec4706; text-decoration: none;}

/* Karriere Details */
.mod_newsreader .karriere-button {width: calc(100% - 0.8em); margin: 0 0 4rem; font-size: 3rem;}
.mod_newsreader .karriere h1 {margin: 4.3rem 0; font-size: 3rem; font-weight: bold;}


/* Freisteller Pacadu Compact */
.mod_article.freisteller {display: grid; grid-template-columns: 4fr 6fr;}
.mod_article.freisteller .content-image {text-align: right;}
.mod_article.freisteller .liste_design {max-width: 34em;}

/* Liste (designt) */
.liste_design > div > ul > li {
	display: grid;
	grid-template-columns: 5em 1fr;
	gap: 0.4em 0.7em;
	margin-top: 2rem;
	font-size: 1.6rem;
	font-weight: bold;
	list-style: none;
}
.liste_design > div > ul > li::before {
	content: '';
	background: url('../../files/private/img/punkt-linie.svg') no-repeat;
	background-position-y: 50%;
}
.liste_design li ul {grid-column: 2 / 3; padding-left: 0; list-style: none;} 
.liste_design li li {
	position: relative;
	padding-left: 1.3em;
	font-size: 1rem;
	font-weight: normal;
}
.liste_design li li::before {
	position: absolute;
	left: 0;
	content: "•";
	color: #ec4706;
	font-size: 2.5em;
	line-height: 0.66em;
}


/* Visual: Platzierte Bilder mit platzierten Textboxen */

.visual {position: relative; overflow: visible;}
.visual .box {
	position: absolute;
	padding: 0.5em 2.5em 1em;
	border: 1px solid #ebeced;
	box-shadow: 0 1em 2em 0 rgba(0,0,0,0.1);
	background: white;
	z-index: 3;
}
.visual .box.w500 {width: 500px;}

.visual .box.hinten {z-index: 1;}
.visual .box.liste {padding-left: 0; padding-right: 0;}
.visual .box.liste h2 {margin-left: 3.6rem; margin-right: 3.6rem;}
.visual .box.liste a {margin: 0.5em 3.6rem 0;}
.visual .box.liste a:first-child {margin-top: 1.7em;}

.visual .box h2 {font-weight: bold; font-size: 1.6em;}
.visual .box a.download {
	padding: 0.3em 0 0 2.5em;
	display: block;
	color: black;
	background: url('../../files/private/img/icon_download.svg') no-repeat;
	background-size: 1.8em auto;
}
.visual .box a.download:hover {color: #ec4706;}

.visual .box ul {padding-left: 0;}
.visual .box > div > ul > li {display: grid; grid-template-columns: 2.4em 1fr; padding: 0.6em 1.2em; border-top: 1px solid #ebeced;}
.visual .box > div > ul > li::before {
	content:'';
	width: 1.5em;
	height: 1.5em;
	display: block;
	background: url('../../files/files/private/img/icon_haekchen.svg') no-repeat;
	vertical-align: bottom;
	margin-right: 1em;
	background: url('../../files/private/img/icon_haekchen.svg') no-repeat;
}
.visual .box ul li:nth-child(2n-1) {background: #f9f9f9;}
.visual .box ul li:last-child {border-bottom: 1px solid #ebeced;}

.visual .box li ul {margin-left: 2.3em;}
.visual .box ul li li {
	display: grid;
	grid-template-columns: 1.3em 1fr;
	font-size: 1rem;
	font-weight: normal;
}
.visual .box ul li li::before {
	content: "•";
	color: #ec4706;
	font-size: 2.5em;
	line-height: 0.66em;
}


.visual .linie {position: absolute; display: block; z-index: 2; /*background: #ff000033;*/}
.visual .linie img {position: absolute; width: 3em;}
.visual .linie svg {stroke: #ec4706; stroke-width: 2px; width: calc(100% - 3em); height: calc(100% - 3em); padding: 1.5em;}


/* Visual Pacadu Pro */
.visual.pro .hauptbild {margin: 15em 0 26em 21.2em; z-index: 2;}

.visual.pro .box.modul {right: 0;}
.visual.pro .box.steuerung {width: 25.3em; left: 7em; bottom: 7em;}
.visual.pro .box.ergaenzung {width: 25.4em; right: 0; bottom: 3em;}

.visual.pro .linie.modul {top: 5em; right: 20em; width: 13em; height: 23em;} 
.visual.pro .linie.modul img {bottom: 0;}

.visual.pro .linie.steuerung {top: 25em; left: 20em; width: 8em; height: 31em;} 
.visual.pro .linie.steuerung img {right: 0;}

.visual.pro .linie.ergaenzung {top: 48em; right: 11.4em; width: 9em; height: 12em;} 
.visual.pro .linie.ergaenzung img {}

/* Visual Pacadu Compact */
.visual.com .hauptbild {margin: 2.3em 0 41em 23em; z-index: 2;}

.visual.com .box.pvanlage {width: 22em; left: 10em; top: 36em;}
.visual.com .box.sicherheit {width: 30em; right: 6em; bottom: 3em;}

.visual.com .linie.pvanlage {top: 28.3em; left: 19em; width: 13.5em; height: 13em;} 
.visual.com .linie.pvanlage img {right: 0;}

.visual.com .linie.sicherheit {top: 6.5em; right: 16em; width: 16em; height: 53em;} 
.visual.com .linie.sicherheit img {right: 3.2em;}
.visual.com .linie.sicherheit img.zellenfoto {width: 250px; top: calc(69% - 125px); left: calc(50% - 125px);}

.pfeil_drueber {position: relative; overflow: visible;}
.pfeil_drueber::before {
	content: '';
	position: absolute;
	top: calc(50% - 1em);
	left: -3em;
	width: 2em;
	height: 1.5em;
	background: url('../../files/private/img/pfeil_rechts_orange.svg') no-repeat;
	background-size: 2em;
	z-index: 2;
}



/* Visual Pacadu EMS */
.visual.ems .hauptbild {margin: 13em 0 34em 14em; z-index: 2;}

.visual.ems .box.liste {width: 21em; max-width: calc(100vw - 4em);}
.visual.ems .box.openems {width: 28em; left: 21em; bottom: 3em; overflow: visible;}
.visual.ems .box.openems figure {
	box-shadow: 0 0 1em #0003;
	border-radius: 50%;
	overflow: hidden;
	width: 8.5em;
	position: absolute;
	right: 2em;
	top: -2.2em;
}
.visual.ems .box.monitoring {width: 19em; right: 0; top: 0;}

.visual.ems .linie.monitoring {top: 4em; left: 39em; width: 22em; height: 16em;} 
.visual.ems .linie.monitoring img {bottom: 0;}


/* Pacadu Compact - Keller */
.keller .linien {
	position: absolute;
	top: calc(39.5% - 2em);
	left: 34%;
	width: 32%;
}
.keller .linien .rechts {float: right;}

.keller .linien img {width: 2em; vertical-align: unset;}
.keller .linien svg {
	height: 2em;
	width: 7em;
	stroke: #ec4706;
	stroke-width: 2px;
}


/* Referenz */
.referenz {background: #ebeced;}
.referenz .block1 {border-bottom: 0.5em solid white;} 

.referenz .titel {
	margin: 1.5rem;
	font-size: 1.5em;
}
.referenz h2 {margin: 0; font-size: 1.5rem; font-weight: bold;}
.referenz .ut {line-height: 1.3; margin-top: 0.1em;}

.referenz .fliesstext {margin: 1.5rem;}

.referenz table {width: 100%;}
.referenz td {vertical-align: top;}
.referenz td:first-child {width: 33%; font-weight: bold;}
.referenz td:last-child {width: 67%; border-bottom: 1px solid #999;}
.referenz p {margin: 1.5em 0;}

.referenz figure {position: relative;}
.referenz figure figcaption {
	position: absolute;
	bottom: 0;
	color: white;
	font-size: 0.7em;
	font-weight: bold;
	left: 0.3em;
	text-shadow: 0 0 4px black;
}

.rowgap_6em .grid_start {row-gap: 6em;}


/* Unternehmen */
.unternehmen .oben {overflow: visible;}
.unternehmen .oben .banner .box {bottom: -2.7em;}
.unternehmen .oben .banner .hg figure {padding-bottom: 0;}

.liste_haekchen ul {padding-left: 0;}
.liste_haekchen ul > li {display: grid; grid-template-columns: 2.8em 1fr; padding: 0.5em 0;}
.liste_haekchen ul > li::before {
	content:'';
	width: 1.5em;
	height: 1.5em;
	display: block;
	background: url('../../files/private/img/icon_haekchen.svg') no-repeat;
	vertical-align: bottom;
	margin-right: 1em;
	background: url('../../files/private/img/icon_haekchen.svg') no-repeat;
}

.karriere-inhalt .content-text {padding: 1em 1.5em 0;}
.titel-button {
	width: unset;
	display: flex;
	justify-content: space-between;
	padding-left: 1em;
	padding-right: 2em;	
	font-size: 2.6em;
	font-weight: bold;
}
.titel-button h1 {font-size: 1em; margin: 0;}

.benefits_wrapper {overflow: visible;}
.benefits_wrapper .grid_start {overflow: visible; margin: 4em 0;}
.benefits_wrapper .content-text {box-shadow: 0 0 15px lightgrey; margin-bottom: 1.7em;}
.benefits {
	min-height: 9em;
	display: grid;
	grid-template-columns: 4.5em 1fr;
	gap: 0.5em;
	padding: 1em;
}
.benefits figure {margin-top: 0.8em;}
.benefits p {margin-bottom: 0;}
.benefits strong {font-size: 1.6em;}
.benefits ul {margin-top: 0; padding-left: 1em;}


/* Formular */
.widget-text input, 
.widget-textarea textarea {
	border: none;
	width: calc(100% - 2em);
	padding: 1em;
	font-weight: bold;
	font-size: 0.8em;
	margin-bottom: 1em;
}
.widget-checkbox span {display: block;}
.widget-submit .submit {width: 100%; border: none;}


/* Technologie */
.batteriebildchen {
	max-width: 22em;
	margin-top: 3em;
	padding: 1em 0;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}
.batteriebildchen img {width: 4.5em; margin: 1.5em;}

.schaltung > .grid_start {gap: 5px;}

.schaltung > .grid_start > * {width: 100%; max-width: unset !important; background: #ebeced;}
.schaltung > .grid_start > *:nth-child(2n-1) {display: grid;}

.schaltung > .grid_start > * > * {padding: 1.5em 0 1.5em 3.5em; align-self: flex-start;}
.schaltung > .grid_start > *:nth-child(2n-1) > * {width: 710px; max-width: 710px; justify-self: end;}
.schaltung > .grid_start > *:nth-child(2n) > * {width: 760px; max-width: 760px;}

#technologie-speicher {
	padding: 3em 0;
	background: url('../../files/Fotos/Produkte/Pacadu_Pro/Pacadu-Pro-Stromspeicher-offen_hg.jpg') no-repeat;
	background-position: top right 51vw;
	background-size: auto 100%;
}
#technologie-speicher h2 {margin-left: 19.2rem;}
#technologie-speicher .content-text {max-width: 57em; margin-left: calc(50% - 14em);}

#technologie-speicher .liste_design > div > ul > li {grid-template-columns: 10em 1fr;}
#technologie-speicher .liste_design > div > ul > li::before {background-image: url("../../files/private/img/punkt-linie-lang.svg");}


/* abgeschaltet für Video auf Startseite */
/* #article-7 {overflow: visible;} */

#popup {
	position: absolute;
	top: 3em;
	right: 3em;
	font-size: 0.9vw;
	width: 40.6em;
	height: 40.6em;
	border-radius: 100%;
	overflow: hidden;
	text-align: center;
	color: white;
	background: #ec4706;
	z-index: 6;
}
#popup .close {font-size: 3em; cursor: pointer;}
#popup .close:hover {color: #efe9de;}
#popup .titel {margin-top: 3rem;; font-size: 5em; font-weight: bold; line-height: 1; color: #efe9de;}
#popup .normal {font-size: 2em; font-weight: bold; line-height: 1.35;}
#popup .normal p {margin: 0.5em 0;}
#popup .klein {font-size: 1.2em;}
#popup .extraklein {font-size: 0.85em; line-height: 1.4;}
#popup .mod_subscribe {margin: 1.5em 0; color: black; overflow: visible;}
#popup .mod_subscribe form {margin: 0 auto; width: 24em;}
#popup .mod_subscribe .formbody {display: grid; grid-template-columns: 2fr 1fr; box-shadow: 0 0 8px #0003;}
#popup .mod_subscribe input {margin-bottom: 0; padding: 0.8em 1em; font-size: 1em; font-weight: normal;}
#popup .mod_subscribe .widget-submit {width: 8em;}
#popup .mod_subscribe .submit {height: 100%; color: #ec4706; font-weight: bold; background: #efe9de;}
#popup .mod_subscribe .submit:hover {color: #efe9de; background: #ec4706;}

#popup .confirm {color: white; border: 1px solid white; font-size: 1.3em; font-weight: bold; background: green;}
#popup .error {background: red;}
#popup p.error {margin: 0;}

#popup.messe24 figure img {width: 200px; margin-top: 5px;}
#popup.messe24 .titel {margin-top: 1rem; color: #014882;}
#popup.messe24 .mod_subscribe .submit {color: white; background: #014882;}
#popup.messe24 .mod_subscribe .submit:hover {background: #ec4706;}




/**** FOOTER ****/

footer {
	color: white;
	background: #005461;
}
footer a {color: white;}

.kontaktdaten {display: grid; grid-template-columns: 1fr 0.9fr 1.1fr; font-weight: bold; padding: 1.8em 0 1.3em;}
.kontaktdaten .spalte {display: grid; grid-template-columns: 3.5em 1fr; gap: 0.5em; align-items: center;}

.kontaktdaten .uhrzeit {display: inline-block;}

footer nav {padding-bottom: 1em;}
footer nav ul {padding: 0; text-align: center;}
footer nav li {display: inline-block;}
footer nav li::after {content: ' |'; padding: 0 0.5em;}
footer nav li:last-child::after {content: ''; padding: 0 0.5em;}
footer nav li a {font-weight: normal;}






/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/
/*********** RESPONSIV ***********/


/*********** SUPER-BREITER RIESENSCHIRM ***********/
@media (min-width:1920px) {

.breit {max-width: 100vw;}
.index .banner .hg figure {max-height: 48.5em;}
.banner .hg figure img {width: 100vw;}



} /* Ende super-breiter Riesenschirm */



/*********** DESKTOP BREIT 1 ***********/
@media (max-width:1900px) {

.produkte .banner .box {left: 3.3em;}


} /* Ende Desktop breit 1 */


/*********** DESKTOP BREIT 2 ***********/
@media (max-width:1700px) {

.index .breit .grid_desktop_50_50 p {max-width: unset;}
.banner .freisteller {max-width: 45vw;}

.schaltung > .grid_start > * > * {padding: 1.5em;}
#technologie-speicher .content-text {margin-right: 2em;}


} /* Ende Desktop breit 2 */


/*********** DESKTOP MITTEL ***********/
@media (max-width:1500px) {

html {font-size: 16px;}
h2 {font-size: 2.3rem;}
.titel-im-text,
.banner-orange .titel {font-size: 2.3rem;}

.index .breit .grid_desktop_50_50 h2 {margin-bottom: 1rem;}
.index .breit .grid_desktop_50_50 p {max-width: unset;}
.index .breit .grid_desktop_50_50 > div:nth-child(1) .content-text,
.index .breit .grid_desktop_50_50 > div:nth-child(1) .content-hyperlink {margin-left: 2rem; margin-right: 2em;}

.banner .box {font-size: 2.5em;}
.index .banner .box {bottom: 19vw; left: unset; right: 42vw; font-size: 3em;}
.pacadu-pro .banner .box {bottom: calc(50% - 2.4em); left: unset;}

.teaser .bild img {max-width: 90%;}

.teaserbild .text .ut {white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 1.5rem;}

.visual.pro .hauptbild {margin-bottom: 24em;}
.visual.com .hauptbild {margin-bottom: 39em;}

.schaltung > .grid_start > :nth-child(2n) > * {width: unset;}
.schaltung > .grid_start > :nth-child(2n-1) > * {width: unset; justify-self: unset;}

.padd_4rem {padding: 1rem 2rem;}


} /* Ende Desktop mittel */



/*********** DESKTOP SCHMAL ***********/
@media (max-width:1200px) {

html {line-height: 1.5;}
h2 {font-size: 2rem;}
.titel-im-text, .banner-orange .titel {font-size: 2rem;}

.text_gr {font-size: 1.5rem;}

header .inside {grid-template-columns: 10.5em 1fr;}
.logo img {width: 160px;}
.mod_navigation ul {grid-template-columns: 4.8em 6.1em 7.6em 5.9em 6.8em 5.1em 1fr /*5.1em 6.9em 8.3em 7.7em 7em 1fr*/;}

.abstand_oben {margin-top: 1.5em;}
.abstand_oben_gr {margin-top: 4em;}

.index .breit .grid_desktop_50_50 > .content-cp_column_start:first-child {margin-top: 1em; margin-bottom: 1em;}
.index .breit .grid_desktop_50_50 > .content-text:nth-child(2) {margin-left: 3em;}

.breit .halbschmal {padding: 0 2rem;}

.banner .box {font-size: 2.3em;}

.pfeil_runter {display: none;}

.index .banner .box {font-size: 2.5em;}
.produkte .banner .box {left: unset;}
.teaser .bild img {height: 300px; width: auto;}

.visual .box {padding: 0.5em 2em 1em;}
.visual .box.w500 {max-width: 52vw;}

.visual.pro .box.steuerung {left: 0; max-width: calc(50% - 5em);}
.visual.pro .box.ergaenzung {max-width: calc(50% - 5em);}

.visual.com .hauptbild {margin-bottom: 27em;}

.visual.com .box.pvanlage {left: 0; top: unset; bottom: 3em; max-width: calc(45% - 6em);}
.visual.com .box.sicherheit {right: 0; max-width: calc(55% - 6em);}

.visual.ems .hauptbild {margin: 13em 7em 34em 9em;}

.visual .linien {display: none;}

.keller .linien svg {width: 5em;}
.keller .grid_mobile_100 {gap: 0;}
.keller .content-headline {margin-bottom: 0;}
.keller .abstand_oben_xkl {margin-top: 0;}

.schaltung > .grid_start > * > * {padding: 1em;}

#technologie-speicher {padding: 0; background-position: top right 55vw;}
#technologie-speicher .content-text {margin-left: calc(45% - 16em);}

.mod_newsreader .layout_full {grid-template-columns: 23em 1fr; gap: 3em;}

.pfeil_drueber::before {top: 11vw; left: -2.7em;}
  
  
} /* Ende Desktop schmal */



/*********** TABLET 1 ***********/
@media (max-width:900px) {

header .inside {display: block;}
.logo {text-align: center; margin-bottom: 1em;}
.mod_navigation ul {
	grid-template-columns: 5em 6.3em 7.9em 6.2em 7em 5.6em;
	float: none;
	max-width: 38em;
	margin: 0 auto;
}

.mod_navigation ul.level_1 > li.ems-portal {position: absolute; top: 0.5em; right: 2em;}

#container {min-height: calc(100vh - 37em);}

.text_gr {font-size: 1.4rem;}
.index .banner .box {font-size: 2.1em;}
.teaser .bild img {height: 230px;}
.index .breit .grid_desktop_50_50 > .content-text:nth-child(2) {margin-left: 2em; margin-right: 2em; margin-bottom: 1em;}
.index .breit .grid_desktop_50_50 > .content-text:nth-child(2) p {max-width: unset;}

.teaserbild-titel h2 {margin-bottom: 3.5rem;}
.teaserbild .text {padding: 0.5em;}

.index .mod_newslist {grid-template-columns: 1fr 1fr;}

.visual.pro .hauptbild {margin-bottom: 30em;}
.visual .box.w500 {max-width: calc(50% - 1em);}
.visual.pro .box.modul {width: calc(50% - 1em);}
.visual.pro .box.steuerung {bottom: 3em;}

.visual.com .hauptbild {margin-bottom: 33em;}

.visual.ems .hauptbild {margin: 24em 13em 29em 0em;}
.visual.ems .box.openems {left: unset; width: unset;}
.visual.ems .box.monitoring {max-width: calc(50% - 5em);}

.mod_article.freisteller {grid-template-columns: 1fr 2fr;}

.kontaktdaten {display: block; max-width: 25em; margin: 0 auto;}

.mod_newsreader {margin-top: 0;}
.mod_newsreader .layout_full {grid-template-columns: 1fr; gap: 0;}
.mod_newsreader .randspalte {display: grid; grid-template-columns: 1fr 1fr;}
.mod_newsreader .randspalte .image_container img {width: 100%;}
.mod_newsreader h1 {margin-top: 0;}

.mod_newsreader .karriere .randspalte {display: flex; flex-wrap: wrap-reverse;}
.mod_newsreader .karriere .randspalte .ansprechpartner {display: grid; grid-template-columns: 1fr 1fr;}
.mod_newsreader .karriere h1 {margin: 1rem 0;}

.mod_newsreader .karriere-button {display: none;}
.mod_newsreader .karriere-button.nur-mobil {display: block;}
.mod_newsreader .karriere .randspalte {grid-row: 2;}

.pfeil_drueber::before {top: 10vw; left: -2.5em;}

#popup {right: 9vw; font-size: 2vw; box-shadow: 0 0 14px #0004;}

} /* Ende Tablet 1 */




/*********** Zwischengröße ***********/
@media (max-width: 767px) {

.mod_navigation ul {grid-template-columns: 11.3vw 15.2vw 19.1vw 15vw 16.7vw 12vw; max-width: 40em;}

.banner .box {font-size: 1.8em;}
.index .banner .box {font-size: 1.8em; bottom: 7rem;}
.produkte .banner .box {bottom: unset;}
.banner .freisteller {right: 2em;}
.banner .hg figure {padding-bottom: 2.5em;}

.titel-im-text, .banner-orange .titel {font-size: 1.8rem;}

.produkte .banner .box {bottom: 2em;}
.teaserbild .text .ut {font-size: 1.2rem;}
#industrie .grid_start .content-text,
#hotels .grid_start .content-text,
#einfamilie .grid_start .content-cp_column_start {grid-row: 2;}
#einfamilie .grid_start .content-hyperlink {margin-bottom: 1em;}

.visual .box {position: relative; box-shadow: 0 0.2em 0.7em 0 rgba(0,0,0,0.1);}
.visual .box.liste,
.visual.pro .hauptbild {margin: 1em;}
.visual .box.w500,
.visual.pro .box.modul,
.visual.pro .box.steuerung,
.visual.pro .box.ergaenzung,
.visual.com .box.pvanlage,
.visual.com .box.sicherheit,
.visual.ems .box.monitoring {width: unset; max-width: unset; margin: 0 auto; bottom: unset;}

.visual.pro .box.w500 {margin-top: 1em;}
.visual.pro .box.ergaenzung,
.visual.com .box.sicherheit,
.visual.ems .box.monitoring {margin-bottom: 3em;}

.visual.com .hauptbild {margin: 1em;}
.visual.ems .hauptbild {margin: 1em;}
.visual.ems .box.openems {bottom: unset;}

.keller .linien {display: none;}
.keller .pacadu_schiene {display: none;}

.liste_design > div > ul {padding-left: 0.5em;}
.liste_design > div > ul > li {grid-template-columns: 1.5em 1fr;}
.liste_design > div > ul > li::before {background-image: url('../../files/private/img/icon_punkt.svg');}
#technologie-speicher .liste_design > div > ul > li::before {background-image: url('../../files/private/img/icon_punkt.svg');}

#technologie-speicher {background: none;}
#technologie-speicher h2 {margin-left: 0.5rem;}
#technologie-speicher .liste_design > div > ul > li {grid-template-columns: 2em 1fr;}

.schaltung > .grid_start > :nth-child(2n) {background: lightgrey;}

.pfeil_drueber::before { top: 16vw; left: -2.8em;}

.banner-orange:first-child .grid_mobile_100 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	gap: 0;
}
.banner-orange .titel {width: unset; max-width: unset; margin: 1rem auto 1rem 2rem !important;}


.unternehmen .rowgap5 .grid_start {row-gap: 1em;}
.unternehmen .rowgap5 .grid_start .content-image {margin-top: 2em; text-align: center;}

.unternehmen .layout_latest {grid-template-columns: 1fr;}

.unternehmen #karriere img,
.unternehmen #news img {max-width: 20vw;}

} /* Ende Zwischengröße */




/*********** TABLET 2 ***********/
@media (max-width:600px) {

.abstand_oben_xkl {margin-top: 1em;}
.abstand_unten_xkl {margin-bottom: 1em;}
.abstand_oben_kl {margin-top: 1em;}
.abstand_unten_kl {margin-bottom: 1em;}
.abstand_oben {margin-top: 1.5em;}
.abstand_unten {margin-bottom: 1.5em;}
.abstand_oben_mi {margin-top: 2em;}
.abstand_unten_mi {margin-bottom: 2em;}
.abstand_oben_gr {margin-top: 3em;}
.abstand_unten_gr {margin-bottom: 3em;}

.schmal {margin: 1rem auto 1rem;}
.padd_4rem {padding: 0 1rem;}

/*header {position: relative;}*/
.mod_article:not(.breit), .banner .inner2, footer .inside {padding: 0 1.5em;}
header .inside {
	display: grid;
	grid-template-columns: 2fr 1fr 5em;
	padding: 0;
}

.logo {margin-bottom: 0; padding-left: 1.3em; padding-bottom: 1.3em; text-align: left;}

.kontakt-mobil {display: block; justify-self: center; align-self: end; margin-bottom: 1.4em;}
.kontakt-mobil a {
	color: white;
	padding: 0.3em 1em;
	font-weight: normal;
	background: #ec4706;
}

.menu-icon {display: block; width: 2.5em; justify-self: right; align-self: end; margin: 0 1.5em 1.3em 0; cursor: pointer;}


.mod_navigation {grid-column-end: span 3; font-size: 1.3em;}
.mod_navigation ul {display: block; text-align: left;}

/* Menu ausblenden */
.mod_navigation ul.level_1 {display: none;}

.mod_navigation li {display: block; background: #ec4706; border-bottom: 1px solid white;}
.mod_navigation li.kontakt {display: none;}

.mod_navigation ul.level_1 > li.ems-portal {position: unset; top: unset; right: unset; text-align: left;}
.mod_navigation ul.level_1 > li.ems-portal > a {margin-left: 0; font-size: 1em; color: white;}
.mod_navigation ul.level_1 > li.ems-portal > a::before {filter: brightness(50);}

.mod_navigation li a,
.mod_navigation li strong {color: white; padding: 0.4em 1.3rem;}
.mod_navigation li a:hover, .mod_navigation li strong, .mod_navigation li a.trail {color: #eee;}

.mod_navigation ul.level_1 > li > a, .mod_navigation ul.level_1 > li > strong {padding-bottom: 0.4em; font-weight: bold;}

.mod_navigation a.submenu::after,
.mod_navigation strong.submenu::after {
	content: '';
	position: absolute;
	width: 1.7em;
	height: 1em;
	margin-top: 0.4em;
	right: 1.5rem;
	background: url('../../files/private/img/pfeil-unten-weiss.svg') no-repeat;
}
.mod_navigation ul.level_2 a.submenu::after,
.mod_navigation ul.level_2 strong.submenu::after {background-image: url('../../files/private/img/pfeil-unten-orange.svg');}


.mod_navigation ul.level_1 li ul {
  position: relative;
  left: unset;
}
.mod_navigation ul.visible {display: block !important;}

.mod_navigation ul.level_2 li {padding: 0; border-bottom: 0; background: white;}
.mod_navigation ul.level_2 li:last-child {border-bottom: 0;}
.mod_navigation ul.level_2 li a {color: #353534; border-bottom: 1px solid #eee;}
.mod_navigation ul.level_2 li:last-child a {border-bottom: none;}
.mod_navigation ul.level_2 li a:hover,
.mod_navigation ul.level_2 li strong {color: #ec4706; font-weight: normal;}

.mod_navigation ul.level_3 li a {padding-left: 2em;}

.banner {display: flex; flex-wrap: wrap; flex-direction: column-reverse;}
.banner .inner1 {position: relative;}
.banner .inner2 {padding: 0;}
.banner .box {position: relative; padding: 1rem 1.5rem;}
.banner .hg figure {padding-bottom: 0;}

.pacadu-pro .grid_start.grid_mobile_50_50 {gap: 1em;} 
.teaserbild .text {min-height: 2.3em;}
.teaserbild .text .ut {white-space: normal;}

.index .banner .box {width: unset; right: 0; bottom: unset;}
.banner .freisteller {max-width: 50vw; bottom: 6.5em;}
.unternehmen .oben .banner .box {bottom: unset;}

.pfeil_drueber::before {left: -2em; background-size: 1.6em;}

.mod_article.freisteller {
  display: flex;
  flex-wrap: wrap-reverse;
}
.mod_article.freisteller .content-image {width: 100%; text-align: center;}
.mod_article.freisteller .content-image img {max-width: 10em;}

.teaser .text {padding: 1.5em 0;}

#technologie-speicher .content-text {margin: 0 1em;}

.mod_newsreader .randspalte {grid-template-columns: 1fr;}
.mod_newsreader .karriere .randspalte .ansprechpartner {grid-template-columns: 1fr;}
.mod_newsreader h1,
.mod_newsreader .karriere h1 {font-size: 2em;}

} /* Ende Tablet 2 */





/*********** Zwischengröße ***********/
@media (max-width:575px) {

.grid_mobile_50_50 {grid-template-columns: 1fr 1fr;}

.visual.ems .box.openems figure {right: 0.5em;}


} /* Ende Zwischengröße */



/*********** MOBIL 1 ***********/
@media (max-width:500px) {
	
.index .mod_newslist {grid-template-columns: 1fr;}

.mod_article:not(.breit), header .inside, footer .inside {padding: 0 1em;}
header .inside {padding: 0;}

.menu-icon {margin-right: 1em;}
.breit .halbschmal {padding: 0 1rem;}
.text_gr {font-size: 1.16rem;}
.schmal {margin: 0.4em auto 1.2em;}

.liste_design > div > ul > li {display: block;}
.liste_design > div > ul > li::before {background-image: none;}

.banner-orange .titel {margin-left: 1rem !important;}

.index .mod_newslist {grid-template-columns: 1fr;}

.pacadu-pro .grid_start.grid_mobile_50_50,
.pacadu-com .grid_start.grid_mobile_50_50 {grid-template-columns: 1fr;}
.teaserbild .text {min-height: unset;}

.visual.ems .box.openems {width: calc(100% - 4em - 4px);}
.visual.ems .box.openems figure {position: relative; right: unset; margin: 0 auto;}
.visual.ems .box.openems h2 {margin-top: 0;}

} /* Ende Mobil 1 */




/*********** MOBIL 2 ***********/
@media (max-width:400px) {

.mod_navigation ul {grid-template-columns: 19vw 24vw 29vw 26vw; margin-left: 1vw;}
.mod_navigation li.kontakt {right: 3vw;}

.index .mod_newslist {grid-template-columns: 1fr;}
.grid_mobile_50_50 {grid-template-columns: 1fr;}
.schaltung .grid_mobile_50_50 {grid-template-columns: 1fr 1fr;}



} /* Ende Mobil 2 */



/********* TOUCHSCREENS *********/
@media (hover: none) {


} /* Ende Touchscreens */
