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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

/* archivo-narrow-regular - latin */
@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/files/theme/fontarchivo-narrow-v9-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Archivo Narrow Regular"), local("ArchivoNarrow-Regular"), url("/files/theme/font/archivo-narrow-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/archivo-narrow-v9-latin-regular.woff2") format("woff2"), url("/files/theme/font/archivo-narrow-v9-latin-regular.woff") format("woff"), url("/files/theme/font/archivo-narrow-v9-latin-regular.ttf") format("truetype"), url("/files/theme/font/archivo-narrow-v9-latin-regular.svg#ArchivoNarrow") format("svg"); /* Legacy iOS */
}
/* archivo-narrow-600 - latin */
@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/files/theme/font/archivo-narrow-v9-latin-600.eot"); /* IE9 Compat Modes */
  src: local("Archivo Narrow SemiBold"), local("ArchivoNarrow-SemiBold"), url("/files/theme/font/archivo-narrow-v9-latin-600.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/archivo-narrow-v9-latin-600.woff2") format("woff2"), url("/files/theme/font/archivo-narrow-v9-latin-600.woff") format("woff"), url("/files/theme/font/archivo-narrow-v9-latin-600.ttf") format("truetype"), url("/files/theme/font/archivo-narrow-v9-latin-600.svg#ArchivoNarrow") format("svg"); /* Legacy iOS */
}
/* caveat-regular - latin */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/files/theme/font/caveat-v5-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Caveat Regular"), local("Caveat-Regular"), url("/files/theme/font/caveat-v5-latin-regular.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/caveat-v5-latin-regular.woff2") format("woff2"), url("/files/theme/font/caveat-v5-latin-regular.woff") format("woff"), url("/files/theme/font/caveat-v5-latin-regular.ttf") format("truetype"), url("/files/theme/font/caveat-v5-latin-regular.svg#Caveat") format("svg"); /* Legacy iOS */
}
/* caveat-700 - latin */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/files/theme/font/caveat-v5-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Caveat Bold"), local("Caveat-Bold"), url("/files/theme/font/caveat-v5-latin-700.eot?#iefix") format("embedded-opentype"), url("/files/theme/font/caveat-v5-latin-700.woff2") format("woff2"), url("/files/theme/font/caveat-v5-latin-700.woff") format("woff"), url("/files/theme/font/caveat-v5-latin-700.ttf") format("truetype"), url("/files/theme/font/caveat-v5-latin-700.svg#Caveat") format("svg"); /* Legacy iOS */
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

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

.invisible, .ce_form .widget-radio .radio_container > span input, .ce_form .widget-checkbox .checkbox_container > span input {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

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

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

/*Make Contao Elements visble at all*/
.angle--top-left {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%);
}
@supports not (clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 100%)) {
  .angle--top-left::before, .angle--top-left::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--top-left::before {
    top: 0;
    border-width: 8vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
}

.angle--top-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% 100%, 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% 100%, 0 100%)) {
  .angle--top-right::before, .angle--top-right::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--top-right::before {
    top: 0;
    border-width: 8vw 0 0 100vw;
    border-color: #fff transparent transparent transparent;
  }
}

.angle--bottom-left {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 7vw));
}
@supports not (clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 7vw))) {
  .angle--bottom-left::before, .angle--bottom-left::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--bottom-left::after {
    bottom: 0;
    border-width: 0 100vw 8vw 0;
    border-color: transparent transparent #fff transparent;
  }
}

.angle--bottom-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7vw), 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7vw), 0 100%)) {
  .angle--bottom-right::before, .angle--bottom-right::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--bottom-right::after {
    bottom: 0;
    border-width: 0 0 8vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.angle--both-left-left {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 calc(100% - 7vw));
}
@supports not (clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% 100%, 0 calc(100% - 7vw))) {
  .angle--both-left-left::before, .angle--both-left-left::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--both-left-left::before {
    top: 0;
    border-width: 8vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
  .angle--both-left-left::after {
    bottom: 0;
    border-width: 0 100vw 8vw 0;
    border-color: transparent transparent #fff transparent;
  }
}

.angle--both-right-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% calc(100% - 7vw), 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% calc(100% - 7vw), 0 100%)) {
  .angle--both-right-right::before, .angle--both-right-right::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--both-right-right::before {
    top: 0;
    border-width: 8vw 0 0 100vw;
    border-color: #fff transparent transparent transparent;
  }
  .angle--both-right-right::after {
    bottom: 0;
    border-width: 0 0 8vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.angle--both-left-right {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%);
}
@supports not (clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%)) {
  .angle--both-left-right::before, .angle--both-left-right::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--both-left-right::before {
    top: 0;
    border-width: 8vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
  .angle--both-left-right::after {
    bottom: 0;
    border-width: 0 0 8vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.angle--both-right-left {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% 100%, 0 calc(100% - 7vw));
}
@supports not (clip-path: polygon(0 0, 100% calc(0% + 7vw), 100% 100%, 0 calc(100% - 7vw))) {
  .angle--both-right-left::before, .angle--both-right-left::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .angle--both-right-left::before {
    top: 0;
    border-width: 8vw 0 0 100vw;
    border-color: #fff transparent transparent transparent;
  }
  .angle--both-right-left::after {
    bottom: 0;
    border-width: 0 100vw 8vw 0;
    border-color: transparent transparent #fff transparent;
  }
}

.angle__content {
  display: block;
  width: 100%;
  height: auto;
}

.angle--colour {
  color: #fff;
  background-color: #2196F3;
  text-align: center;
  padding: 10% 0;
}

.angle--colour-rot {
  color: #fff;
  background-color: #B20000;
  padding: 10% 0;
}

.angle--colour-gelb {
  background-color: #FFE700;
  padding: 10% 0;
}

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html, body {
  font-size: 16px;
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #262626;
  scroll-behavior: smooth;
}

body {
  background: url("/files/theme/img/bg_image.png") repeat;
}

p, li {
  font-size: 18px;
  font-size: 1.125rem;
  color: #262626;
  max-width: 85ch;
}

p {
  margin: 0 0 0.5em 0;
}

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

::selection {
  background: #B20000;
  color: #fff;
  text-shadow: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  text-wrap: balance;
}
@media screen and (max-width: 25em) {
  h1, h2, h3, h4, h5, h6 {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
        hyphens: auto;
  }
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: calc(30px + (40 - 30) * (100vw - 320px) / (1900 - 320));
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #262626;
  margin: 0 0 0.5em 0;
}

h2 {
  font-size: calc(24px + (32 - 24) * (100vw - 320px) / (1900 - 320));
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #262626;
  margin: 0 0 0.5em 0;
}

h3 {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #262626;
  margin: 0 0 0.5em 0;
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #262626;
  margin: 0 0 0.5em 0;
}

h5 {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #262626;
  margin: 0 0 0.5em 0;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Archivo Narrow", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #262626;
  margin: 0 0 0.5em 0;
}

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

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

figcaption {
  line-height: 1.2;
}

a {
  color: #B20000;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #262626;
}

ul, ol {
  padding: 0;
  list-style-type: none;
}

main ul {
  list-style-type: disc;
}

main ol {
  list-style-type: decimal;
}

.iconlist li {
  background: url("/files/theme/img/iconlist.svg") no-repeat left center;
  background-size: 25px 25px;
  padding-left: 35px;
  margin-bottom: 10px;
  list-style-type: none;
}

.wrapper {
  max-width: 1980px;
  margin: 0 auto;
  background: #fff;
}

.wrap, .mainnav ul, .mod_article:not(.fullwidth) .inside, .footer .inside {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 92.5em) {
  .wrap, .mainnav ul, .mod_article:not(.fullwidth) .inside, .footer .inside {
    padding: 0 1em;
  }
}

/*
.inside {

} */
.header .inside {
  position: relative;
  z-index: 2;
}
.header .logo {
  position: absolute;
  top: 0;
  left: 10vw;
  height: auto;
  width: 310px;
  background: #fff;
  padding: 1em;
  z-index: 5;
}
@media screen and (max-width: 29.375em) {
  .header .logo {
    width: 130px;
  }
}
@media screen and (max-width: 42.5em) {
  .header .logo {
    left: 5px;
  }
}
.header .header-contact {
  background: #FFE700;
  position: relative;
  z-index: 4;
  padding-right: 10px;
}
@media screen and (min-width: 29.375em) {
  .header .header-contact {
    margin-bottom: 0.6em;
  }
}
.header .header-contact .icon {
  height: 25px;
  width: 30px;
  color: #262626;
}
@media screen and (min-width: 29.375em) {
  .header .header-contact .icon {
    height: 16px;
  }
}
.header .header-contact ul {
  margin: 0;
  text-align: right;
}
@media screen and (max-width: 29.375em) {
  .header .header-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: left;
  }
}
@media screen and (min-width: 38.3125em) {
  .header .header-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: left;
  }
}
.header .header-contact li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 0.5em;
}
@media screen and (max-width: 29.375em) {
  .header .header-contact li a span {
    display: none;
  }
}
.header .mod_navigation,
.header .mod_mobile_menu {
  position: relative;
  z-index: 4;
  padding-right: 10px;
}
.header .ce_image,
.header .content-image {
  position: relative;
  right: 0;
  left: 0;
  top: -130px;
  z-index: 1;
}
@media screen and (max-width: 42.8125em) {
  .header .ce_image,
  .header .content-image {
    top: 0;
  }
}

.footer {
  border-bottom: 50px solid #FFE700;
  background: #B20000;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 3vw), 100% 0, 100% 100%, 0 100%);
  padding: 4em 2em 0 2em;
}
@supports not (clip-path: polygon(0 calc(0% + 3vw), 100% 0, 100% 100%, 0 100%)) {
  .footer::before, .footer::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .footer::before {
    top: 0;
    border-width: 4vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
}
.footer .mod_article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .mod_article > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}
.footer .ce_text,
.footer .content-text,
.footer .mod_customnav {
  display: block;
  position: relative;
  margin-left: 0 !important;
  margin: 40px 0;
  padding-left: 10px;
}
.footer .ce_text ul,
.footer .content-text ul,
.footer .mod_customnav ul {
  margin: 0;
}
.footer h4 {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0 0.4em;
  margin: 0 0 10px 0;
  line-height: 24px;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.mod_article {
  position: relative;
  padding: 3em 0;
}
.mod_article.rot {
  background: #B20000;
  padding: 5em 0;
}
.mod_article.rot * {
  color: #fff;
}
.mod_article.gelb {
  background: #FFE700;
  padding: 5em 0;
}
.mod_article.weiss {
  background: #fff;
}
.mod_article.leistungen-teaser {
  padding-bottom: 5em;
  padding-top: 5em;
  margin-bottom: -3em;
}
.edge .mod_article.leistungen-teaser {
  margin-bottom: 0;
}
.mod_article.leistungen-teaser .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mod_article.leistungen-teaser .inside .ce_headline,
.mod_article.leistungen-teaser .inside .content-headline {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.mod_article.leistungen-teaser .inside .ce_hyperlink,
.mod_article.leistungen-teaser .inside .content-hyperlink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media screen and (min-width: 31.25em) {
  .mod_article.leistungen-teaser .inside .ce_hyperlink,
  .mod_article.leistungen-teaser .inside .content-hyperlink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
@media screen and (min-width: 60em) {
  .mod_article.leistungen-teaser .inside .ce_hyperlink,
  .mod_article.leistungen-teaser .inside .content-hyperlink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
.mod_article.leistungen-teaser .inside .ce_hyperlink figcaption,
.mod_article.leistungen-teaser .inside .content-hyperlink figcaption {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.4;
}
.mod_article.sturm {
  padding: 17em 0;
  margin-top: -9em;
}
@media screen and (max-width: 37.5em) {
  .mod_article.slope {
    padding: 1em 0;
  }
}
.mod_article#konfigurator {
  padding-top: 4em;
}
.mod_article#konfigurator iframe {
  border: none;
}

.header .mod_article {
  padding: 0;
}

.main .mod_article.first {
  padding-top: 0;
}

@supports (grid-area: auto) {
  [class*=grid_] {
    --gapvalue: 4rem;
    grid-gap: var(--gapvalue);
  }
}
@media screen and (min-width: 45em) {
  .grid-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  .grid-row.grid-3-2 .column-3 {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 6;
    grid-column-end: 7;
  }
  .grid-row.grid-3-2 .column-2 {
    -ms-grid-column: 8;
        grid-column-start: 8;
    -ms-grid-column-span: 4;
    grid-column-end: 12;
  }
  .grid-row.grid-2-3 .column-3 {
    -ms-grid-column: 6;
        grid-column-start: 6;
    -ms-grid-column-span: 6;
    grid-column-end: 12;
  }
  .grid-row.grid-2-3 .column-2 {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
  }
}
/* Contao elements */
.ce_headline,
.content-headline {
  margin-bottom: 1em;
}
@media screen and (min-width: 28.125em) {
  .ce_headline,
  .content-headline {
    margin-bottom: 2em;
  }
}

.ce_text:not(.startseitenslogan),
.content-text:not(.startseitenslogan) {
  margin-bottom: 2em;
}
@media screen and (min-width: 28.125em) {
  .ce_text:not(.startseitenslogan),
  .content-text:not(.startseitenslogan) {
    margin-left: 5em;
  }
}

.ce_image,
.content-image,
.mod_randomImage {
  margin-bottom: 1em;
}

.ce_hyperlink.linkkachel,
.content-hyperlink.linkkachel {
  margin-bottom: 3em;
}
.ce_hyperlink.linkkachel a,
.content-hyperlink.linkkachel a {
  text-decoration: none;
  color: #262626;
}
.ce_hyperlink.linkkachel img,
.content-hyperlink.linkkachel img {
  width: 100%;
}
.ce_hyperlink.centered,
.content-hyperlink.centered {
  text-align: center;
}

.ce_gallery ul,
.content-gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  paddgin: 0;
  margin: 0;
}
.ce_gallery li,
.content-gallery li {
  padding: 0.3em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.logo {
  max-width: 200px;
}

.partnerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.partnerbox > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.partnerbox .ce_hyperlink,
.partnerbox .content-hyperlink {
  margin-bottom: 2em;
  min-width: 180px;
}
.partnerbox .ce_hyperlink figure,
.partnerbox .content-hyperlink figure {
  text-align: center;
}
.partnerbox .ce_hyperlink figcaption,
.partnerbox .content-hyperlink figcaption {
  padding: 1em;
}

.space-bottom.center {
  margin-bottom: 2em;
}

/*Variable Werte für Grundstyle*/
/*
Import additional file for using js select solution (does not work with group otion in Contao select fields)
	// activate @import "nice-select";
	// add $GLOBALS['TL_JAVASCRIPT'][] = $GLOBALS['TL_CONFIG']['uploadPath'].'/theme/js/jquery.nice-select.min.js|static'; to script template
	// Add $('select').niceSelect(); to main js
*/
.nice-select {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.6em;
  background-color: white;
  border-radius: 0px;
  border: solid 1px #BABABA;
  cursor: pointer;
}
.nice-select:focus {
  outline: none;
}
.nice-select:after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  height: 5px;
  width: 5px;
  pointer-events: none;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  margin-top: -4px;
  -webkit-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #BABABA;
  color: gray;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #333333;
}
.nice-select .list {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 9;
  margin: 0;
  background-color: white;
  border: 1px solid #BABABA;
  border-top: none;
  border-radius: 0px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  outline: none;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  padding: 0.6em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: gray;
}
.nice-select .option:not(:last-child) {
  border-bottom: 1px solid #BABABA;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #cccccc;
}
.nice-select .option.selected {
  color: black;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: gray;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*Klassen für @extend*/
.fieldreset, .ce_form .widget-checkbox.dsgvo fieldset {
  border: none;
  padding: 0;
}

/*Basic Styles*/
.ce_form {
  /*Select basic styles works unreliably in IE and Edge browser */
  /*Select basic  end*/
}
.ce_form input,
.ce_form label {
  display: block;
}
.ce_form label,
.ce_form legend {
  color: black;
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory {
  color: red;
}
.ce_form input,
.ce_form textarea {
  width: 100%;
  border: 1px solid #BABABA;
  padding: 0.6em;
  background-color: white;
  color: black;
  border-radius: 0px;
}
.ce_form input:focus,
.ce_form textarea:focus {
  background: #fafafa;
}
.ce_form input:valid {
  color: black;
}
.ce_form input:invalid {
  color: gray;
}
.ce_form fieldset {
  border: 1px solid #BABABA;
}
.ce_form .widget {
  margin-bottom: 1em;
}
.ce_form .widget-checkbox .checkbox_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox .checkbox_container > span label {
  padding-left: 30px;
}
.ce_form .widget-checkbox .checkbox_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #BABABA;
  background: white;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-checkbox .checkbox_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-checkbox.dsgvo legend {
  display: none;
}
.ce_form .widget-radio .radio_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-radio .radio_container > span label {
  padding-left: 30px;
}
.ce_form .widget-radio .radio_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #BABABA;
  background: white;
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-radio .radio_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: 20px;
}
.ce_form .widget-submit button {
  background: white;
  color: black;
  padding: 0.6em;
  border: 1px solid #BABABA;
  cursor: pointer;
}
.ce_form .widget-submit button:hover {
  background: #fafafa;
}

@media screen and (min-width: 62em) {
  .mainnav {
    background: #B20000;
  }
  .mainnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mainnav li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 1em;
    position: relative;
    font-size: 16px;
  }
  .mainnav li a:hover:after, .mainnav li a:focus:after, .mainnav li a.active:after, .mainnav li a.trail:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #FFE700;
    position: absolute;
    left: 36%;
    bottom: 0;
  }
}
@media screen and (max-width: 61.9375em) {
  .mainnav {
    display: none;
  }
  .mobile_menu .inner {
    background: #fff;
    position: relative;
  }
  .mobile_menu svg {
    height: 40px;
    width: 40px;
  }
  .mobile_menu .mainnav {
    display: block;
  }
  .mobile_menu .mainnav a {
    display: block;
    background: #B20000;
    color: #fff;
    text-decoration: none;
    padding: 0.5em;
  }
  .mobile_menu .mainnav a:not(.last) {
    border-bottom: 1px solid #fff;
  }
  .mobile_menu .mainnav a:hover, .mobile_menu .mainnav a:focus, .mobile_menu .mainnav a.active {
    background: #FFE700;
    color: #000;
  }
  .mobile_menu .mheader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 50px 10px 10px;
  }
  .mobile_menu .mheader > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and (max-width: 61.9375em) and (min-width: 33.3125em) {
  .mobile_menu .mheader > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
@media screen and (max-width: 61.9375em) {
  .mobile_menu .mheader .call {
    border: none;
    margin: 0;
    width: auto;
    overflow: visible;
    background: transparent;
  }
  .mobile_menu .mheader .call svg {
    width: 22px;
    height: 22px;
  }
  .mobile_menu .mheader .call a {
    text-decoration: none;
    color: #000;
    background: #FFE700;
    padding: 0.5em;
    font-size: 22px;
  }
  .mobile_menu .mheader .call a:hover, .mobile_menu .mheader .call a:focus, .mobile_menu .mheader .call a.active {
    background: #B20000;
    color: #fff;
  }
  .mobile_menu .menu-close {
    position: absolute;
    right: 5px;
    top: 5px;
  }
  .mobile_menu .menu-close > span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
  }
  .mobile_menu .law-items {
    text-align: center;
  }
  .mobile_menu .law-items a {
    display: inline-block;
    padding: 0.5em;
  }
  .mod_mobile_menu {
    background: #B20000;
    text-align: right;
    color: #fff;
    cursor: pointer;
    padding: 0.5em;
  }
  .mod_mobile_menu .menu span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
  }
  .mod_mobile_menu svg {
    width: 30px;
    height: 30px;
  }
}
.startseitenslogan p {
  font-family: "Caveat";
  font-size: calc(30px + (60 - 30) * (100vw - 320px) / (1900 - 320));
  color: #B20000;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.slope.above.up {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 2vw), 100% 0, 100% 100%, 0 100%);
}
@supports not (clip-path: polygon(0 calc(0% + 2vw), 100% 0, 100% 100%, 0 100%)) {
  .slope.above.up::before, .slope.above.up::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.above.up::before {
    top: 0;
    border-width: 3vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
}

.slope.both.up {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 calc(0% + 2vw), 100% 0, 100% calc(100% - 2vw), 0 100%);
}
@supports not (clip-path: polygon(0 calc(0% + 2vw), 100% 0, 100% calc(100% - 2vw), 0 100%)) {
  .slope.both.up::before, .slope.both.up::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.both.up::before {
    top: 0;
    border-width: 3vw 100vw 0 0;
    border-color: #fff transparent transparent transparent;
  }
  .slope.both.up::after {
    bottom: 0;
    border-width: 0 0 3vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.slope.below.up {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2vw), 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2vw), 0 100%)) {
  .slope.below.up::before, .slope.below.up::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.below.up::after {
    bottom: 0;
    border-width: 0 0 3vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.slope.above.down {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% calc(0% + 2vw), 100% 100%, 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% calc(0% + 2vw), 100% 100%, 0 100%)) {
  .slope.above.down::before, .slope.above.down::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.above.down::before {
    top: 0;
    border-width: 3vw 0 0 100vw;
    border-color: #fff transparent transparent transparent;
  }
}

.slope.both.down {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% calc(0% + 2vw), 100% 100%, 0 calc(100% - 2vw));
}
@supports not (clip-path: polygon(0 0, 100% calc(0% + 2vw), 100% 100%, 0 calc(100% - 2vw))) {
  .slope.both.down::before, .slope.both.down::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.both.down::before {
    top: 0;
    border-width: 3vw 0 0 100vw;
    border-color: #fff transparent transparent transparent;
  }
  .slope.both.down::after {
    bottom: 0;
    border-width: 0 100vw 3vw 0;
    border-color: transparent transparent #fff transparent;
  }
}

.slope.below.down {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 2vw));
}
@supports not (clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 2vw))) {
  .slope.below.down::before, .slope.below.down::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .slope.below.down::after {
    bottom: 0;
    border-width: 0 100vw 3vw 0;
    border-color: transparent transparent #fff transparent;
  }
}

.header .slope.below.up {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%);
}
@supports not (clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%)) {
  .header .slope.below.up::before, .header .slope.below.up::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 10;
    display: block;
    border-style: solid;
  }
  .header .slope.below.up::after {
    bottom: 0;
    border-width: 0 0 7vw 100vw;
    border-color: transparent transparent #fff transparent;
  }
}

.button {
  margin-bottom: 1em;
}
.button a {
  display: inline-block;
  text-align: center;
  padding: 1em;
  color: inherit;
  text-decoration: none;
}
.button.button-rot a {
  background: #B20000;
  color: #fff;
}
.button.button-rot a:hover {
  background: #262626;
}
.button.button-dark a {
  background: #262626;
  color: #fff;
}
.button.button-dark a:hover {
  background: #FFE700;
  color: #262626;
}

.contao-cookiebar {
  --ccb-detail-clr: #000;
}
.cookiebar__link:hover {
	color: #bebebe;
}

.cookiebar__button {
	background: #b20000;
	font-weight: normal;
}

.cookiebar__button:hover {
	background: #ffe700;
	color: #000;
}

.cookiebar {
	background-color: #262626;
}
