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

.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
/* === Modern Reset (angepasst) === */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Entferne Standard-Margin für Elemente, die in normalize nicht anders gesetzt werden.
   (body und h1 werden durch normalize.css bereits definiert) */
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Entferne Listensymbole bei ul/ol mit list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A-Elemente ohne Klasse erhalten optimierte Dekoration */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Bilder und Picture-Elemente */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Entferne alle Animationen/Transitions für Nutzer, die reduzierte Bewegungen bevorzugen */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* === Normalize.css v8.0.1 === */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Korrigiert die Zeilenhöhe in allen Browsern.
 * 2. Verhindert die Anpassung der Schriftgröße nach Orientierungswechseln in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Entfernt den Standard-Margin in allen Browsern.
 */
body {
  margin: 0;
}
/**
 * Erzwingt, dass das `main`-Element in IE korrekt dargestellt wird.
 */
main {
  display: block;
}
/**
 * Korrigiert die Schriftgröße und den Margin von h1-Elementen in section- und article-Kontexten in Chrome, Firefox und Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Setzt das Box-Sizing in Firefox richtig.
 * 2. Zeigt den Overflow in Edge und IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Korrigiert die Vererbung und Skalierung der Schriftgröße in allen Browsern.
 * 2. Korrigiert die eigenartige Em-Schriftgrößenskalierung in allen Browsern.
 */
/* Text-level semantics
   ========================================================================== */
/**
 * Entfernt den grauen Hintergrund bei aktiven Links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Entfernt den unteren Rand in Chrome 57-
 * 2. Setzt die korrekte Textdekoration in Chrome, Edge, IE, Opera und Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Setzt in Chrome, Edge und Safari das korrekte Schriftgewicht.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Korrigiert die Vererbung und Skalierung der Schriftgröße in allen Browsern.
 * 2. Korrigiert die eigenartige Em-Schriftgrößenskalierung in allen Browsern.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Setzt in allen Browsern die korrekte Schriftgröße.
 */
small {
  font-size: 80%;
}
/**
 * Verhindert, dass sub- und sup-Elemente die Zeilenhöhe in allen Browsern beeinflussen.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Entfernt den Rahmen von Bildern in Links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Vereinheitlicht die Schriftarten in allen Browsern.
 * 2. Entfernt den Margin in Firefox und Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
/**
 * Zeigt in IE den Overflow und in Edge zusätzlich den Overflow.
 */
button,
input {
  overflow: visible;
}
/**
 * Entfernt die Vererbung der Texttransformation in Edge, Firefox und IE.
 */
button,
select {
  text-transform: none;
}
/**
 * Korrigiert das nicht stylbare Verhalten klickbarer Elemente in iOS und Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Entfernt den inneren Rahmen und das 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;
}
/**
 * Stellt die Fokus-Stile wieder her, die durch die vorherige Regel entfernt wurden.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Korrigiert das Padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Korrigiert den Textumbruch in Edge und IE.
 * 2. Korrigiert die Farbvererbung von fieldset-Elementen in IE.
 * 3. Entfernt das Padding, damit Entwickler nicht überrascht werden, wenn sie fieldset-Elemente auf null setzen.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
/**
 * Setzt in Chrome, Firefox und Opera die korrekte vertikale Ausrichtung.
 */
progress {
  vertical-align: baseline;
}
/**
 * Entfernt den standardmäßigen vertikalen Scrollbalken in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Setzt in IE 10 das korrekte Box-Sizing.
 * 2. Entfernt in IE 10 das Padding.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
/**
 * Korrigiert in Chrome das Aussehen der Inkrement-/Dekrement-Schaltflächen bei Number-Feldern.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Korrigiert das eigenartige Aussehen in Chrome und Safari.
 * 2. Korrigiert den Outline-Stil in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
/**
 * Entfernt das innere Padding in Chrome und Safari unter macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Korrigiert das nicht stylbare Verhalten klickbarer Elemente in iOS und Safari.
 * 2. Setzt in Safari die Schriftart auf inherit.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/* Interactive
   ========================================================================== */
/*
 * Setzt in Edge, IE 10+ und Firefox die korrekte Anzeige.
 */
details {
  display: block;
}
/*
 * Erzwingt in allen Browsern die richtige Darstellung.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Erzwingt in IE 10+ die korrekte Anzeige.
 */
template {
  display: none;
}
/**
 * Erzwingt in IE 10 die korrekte Anzeige.
 */
[hidden] {
  display: none;
}
/* georama-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 100;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-100.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-100italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 100;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-100italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 200;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-200.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-200italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 200;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-200italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 300;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-300italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 300;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-300italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 400;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 400;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 500;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-500italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 500;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-500italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 600;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-600italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 600;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-600italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 700;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 700;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 800;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-800italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 800;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-800italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: normal;
  font-weight: 900;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* georama-900italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Georama';
  font-style: italic;
  font-weight: 900;
  src: url('/files/themes/frontend/webfonts/georama-v13-latin-900italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: "Georama";
  font-size: 18px;
  color: #555555;
}
strong,
bold {
  font-weight: 600;
}
.content-text .rte {
  line-height: 1.6em;
}
.content-text .rte ul li,
.content-text .rte ol li {
  line-height: 1.25em;
  margin-bottom: 0.67em;
}
#main .mod_article h2 {
  font-style: italic;
  font-size: 2rem;
  line-height: 1.125em;
  margin-bottom: 0.67em;
}
#main .mod_article h2 em {
  color: #FDC305;
}
#main .mod_article.bg_yellow h2 em {
  color: white;
}
#main .mod_article.bg_yellow p a,
#main .mod_article.bg_yellow ul li a,
#main .mod_article.bg_yellow ol li a {
  color: inherit;
  font-weight: bold;
}
body {
  width: 100%;
}
#topbar {
  height: 2px;
  background-color: red;
}
#navbar {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
}
#navbar .inside {
  width: 96%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#navbar .inside .logo {
  width: clamp(175px, 20%, 250px);
}
#hero {
  z-index: 10;
}
#hero .inside {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
#hero .inside .content-image figure {
  /*
                &::after {
                  width: 40%;
                  height: 40%;
                  bottom: 0;
                  right: 0;
                  z-index: 3;
                  transform: translate(25%, 35%);

                  position: absolute;
                  content: "";
                  display: block;
                  background-image: url("../../files/themes/frontend/styles/@{pathTheme}/icons/lw-wave-w-white.svg");
                  background-repeat: no-repeat;
                  background-size: contain;

                }
        */
}
#hero .inside .content-image figure img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
#hero .inside .content-text {
  position: absolute;
  display: block;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -25%);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: bold;
  font-style: italic;
}
#hero .inside .content-text .rte {
  width: auto;
}
#hero .inside .content-text .rte p {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-style: italic;
  line-height: 1em;
  color: white;
}
#hero .inside .content-text .rte p em {
  color: #FDC305;
}
#hero .inside .content-text .rte:before {
  display: block;
  content: " ";
  width: clamp(75px, 17.5%, 200px);
  aspect-ratio: 155 / 34;
  background-image: url("/files/themes/frontend/icons/lw-3plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
#wrapper {
  display: contents;
}
#wrapper #container {
  display: contents;
}
#main {
  z-index: 100;
}
#footer {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  display: block;
  width: 100%;
  background-color: #555;
  /*
    background-image: url("/files/themes/frontend/icons/lw-wave-w-white.svg");
    background-repeat: no-repeat;
    background-position-x: 105%;
    background-position-y: bottom;
    background-size: auto 110%;
  */
}
#footer > .inside {
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  max-width: 1200px;
}
#buttonContact {
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 25%;
  right: 0;
  z-index: 1000;
}
#buttonContact > .inside {
  display: contents;
}
@media screen and (min-width: 1400px) {
  #buttonContact {
    position: fixed;
  }
}
@media screen and (min-width: 1600px) {
  #buttonContact {
    right: calc(((100% - 1600px) / 2) + 2rem);
  }
}
#buttonContact .contact-button {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
  background-color: #FDC305;
  padding: 1rem 0.5rem 1rem 1rem;
  border-radius: 50px 0 0 50px;
}
@media screen and (min-width: 1600px) {
  #buttonContact .contact-button {
    border-radius: 50px;
    padding: 1rem;
  }
}
a {
  color: inherit;
}
a.email {
  color: #555555 !important;
}
a.email:hover {
  text-decoration: underline;
}
.button-rounded pre a {
  border-radius: 50px !important;
}
#main .content-text a,
#main .widget-explanation a {
  color: #FDC305;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
}
#main .content-text a:hover,
#main .widget-explanation a:hover {
  text-decoration: underline;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav ul li a,
nav ul li strong {
  font-weight: normal;
  display: inline-block;
  text-decoration: none;
}
nav ul li a :visited {
  color: inherit;
}
nav ul li strong {
  color: inherit;
}
nav.horizontal ul li {
  display: inline-block;
}
#nav-main {
  color: white;
  font-size: 1rem !important;
  margin-top: 12px;
}
#nav-main ul li a,
#nav-main ul li strong {
  color: #555555;
  display: inline-block;
  padding-bottom: 5px;
}
#nav-main ul li a:not(:last-child),
#nav-main ul li strong:not(:last-child) {
  margin: 0 10px;
}
#nav-main ul li a:last-child,
#nav-main ul li strong:last-child {
  margin: 0 0 0 10px;
}
#nav-main ul li a {
  letter-spacing: 0.055em;
  font-weight: 300;
  border-bottom: 6px solid transparent;
}
#nav-main ul li a:hover {
  border-bottom: 6px solid #FDC305;
}
#nav-main ul li strong {
  letter-spacing: 0;
  border-bottom: 6px solid #FDC305;
  font-weight: 700;
}
#nav-footer {
  margin-top: 2rem;
  font-size: 1rem;
}
#nav-footer ul li a,
#nav-footer ul li strong {
  margin-right: 1rem;
  display: inline-block;
  color: white;
}
#nav-footer ul li a {
  border-bottom: 3px solid transparent;
}
#nav-footer ul li a:hover {
  border-bottom: 3px solid #FDC305;
}
#nav-footer ul li strong {
  border-bottom: 3px solid #FDC305;
}
.ce_form .formbody * {
  font-size: 17px !important;
}
.ce_form .formbody .widget {
  padding: 0.5rem 3px;
  display: flex;
  flex-direction: column;
}
.ce_form .formbody .widget.widget-text input {
  padding: 0.5rem;
  border-radius: 1rem;
  border: 3px solid #ccc;
}
.ce_form .formbody .widget.widget-submit button {
  background: #FDC305 none;
  border: none;
  color: white;
  font-weight: 500;
  font-style: italic;
  width: fit-content;
  border-radius: 50px;
  padding: 0.5rem 1em;
  cursor: pointer;
}
.ce_form .formbody .widget.widget-submit button:hover {
  text-decoration: underline;
  color: #555555;
}
.ce_form .formbody .widget.widget-select select {
  padding: 0.5rem;
  background: white;
  border-radius: 1rem;
  border: 3px solid #ccc;
}
.ce_form .formbody .widget.widget-checkbox fieldset {
  border: none;
  padding: 0;
}
.ce_form .formbody .widget.widget-checkbox span {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 9px;
}
.ce_form .formbody .widget.widget-checkbox span input {
  display: block;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}
.ce_form .formbody .widget.widget-checkbox span label {
  font-size: 20px;
  line-height: 1.125em;
}
.ce_form .formbody .widget.widget-upload {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
  border: 3px solid #ccc;
  padding: 10px;
  margin-bottom: 1rem;
}
.ce_form .formbody .widget.widget-upload input {
  width: 100%;
  background-color: #fff;
}
.ce_form .formbody .widget.widget-textarea textarea {
  padding: 0.5rem;
  border-radius: 1rem;
  border: 3px solid #ccc;
  min-height: 15vh;
}
.ce_form .formbody .widget.widget-fineuploader .fineuploader-wrapper {
  border-radius: 1rem;
  padding: 0;
}
.ce_form .formbody .widget.widget-fineuploader .fineuploader-wrapper .qq-upload-button {
  width: 100%;
  border: 3px solid #ccc;
  text-align: center;
  border-radius: 1rem;
  font-size: 15px;
}
.ce_form .formbody .widget.widget-fineuploader .fineuploader-wrapper .qq-upload-list {
  font-size: 15px;
}
.ce_form .formbody .widget.widget-fineuploader .fineuploader-item.file {
  display: none;
}
.ce_form .formbody .widget.widget-explanation {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
}
#main .mod_article {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#main .mod_article > .article_inside {
  width: 86%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
#main .mod_article.bg_grey {
  background-color: #f5f5f5;
}
#main .mod_article.bg_yellow {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #FDC305;
}
#main .mod_article.bg_L {
  background-image: url('/files/themes/frontend/icons/lw-wave-l-white.svg');
  background-repeat: no-repeat;
  background-size: clamp(120px, 33%, 480px) auto;
  background-position: -5% -5%;
}
#main .mod_article.bg_lll {
  background-image: url('/files/themes/frontend/icons/lw-hooks-yellow.svg');
  background-repeat: no-repeat;
  background-size: clamp(125px, 25%, 250px) auto;
  background-position: right -30px center;
}
#main .mod_article.bg_5plus {
  background-image: url('/files/themes/frontend/icons/plus-multi.svg');
  background-repeat: no-repeat;
  background-size: clamp(125px, 25%, 250px) auto;
  background-position: left 50px top 40%;
}
#main .mod_article.bottom_xxx {
  padding-bottom: 15vw;
  overflow: visible;
  background-position: bottom 2% right 2%;
  background-size: clamp(180px, 44%, 560px) auto;
  background-image: url("/files/themes/frontend/icons/lw-article-bottom-xxx.svg");
}
#main .mod_article.bottom_xxx.bg_L {
  background-image: url('/files/themes/frontend/icons/lw-wave-l-white.svg'), url("/files/themes/frontend/icons/lw-article-bottom-xxx.svg");
  background-position: -5% -5%, bottom 2% right 2%;
  background-size: clamp(240px, 44%, 560px) auto, clamp(240px, 44%, 560px) auto;
}
#main .mod_article.bg_lw {
  background-image: url('/files/themes/frontend/icons/lw-lw.svg');
  background-repeat: no-repeat;
  background-size: clamp(125px, 25%, 250px) auto;
  background-position-x: 100%;
  background-position-y: top;
}
#main .mod_article.bg_lw_white {
  background-image: url('/files/themes/frontend/icons/lw-hooks.svg');
  background-repeat: no-repeat;
  background-size: clamp(125px, 25%, 250px) auto;
  background-position-x: 102%;
  background-position-y: 50%;
}
#main .mod_article.bg_mmm {
  position: relative;
  overflow: visible;
}
#main .mod_article.bg_mmm:after {
  aspect-ratio: 241 / 288;
  width: clamp(175px, 15vw, 300px);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-25%, -30%);
  background-image: url('/files/themes/frontend/icons/lw-mmm.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
#main .mod_article.bg_mmm_white {
  position: relative;
  overflow: visible;
}
#main .mod_article.bg_mmm_white .article_inside {
  position: relative;
  z-index: 2;
}
#main .mod_article.bg_mmm_white:after {
  z-index: 1;
  aspect-ratio: 198 / 299;
  width: clamp(175px, 15vw, 300px);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10%;
  background-image: url('/files/themes/frontend/icons/lw-mmm-white.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
#main .mod_article.bg-3plus-column {
  position: relative;
  overflow: visible;
}
#main .mod_article.bg-3plus-column:after {
  aspect-ratio: 159 / 272;
  width: clamp(150px, 12.5vw, 250px);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -60px;
  background-image: url('/files/themes/frontend/icons/lw-3plus-column.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.mod_article:has(.no-padding-bottom) {
  padding-bottom: 0 !important;
}
.google-maps-container {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 0.25em 2em;
  overflow: hidden;
}
img {
  height: auto;
}
.content-text.media {
  display: flex;
  gap: 2rem;
}
.content-text.media.media--left,
.content-text.media.media--right {
  align-items: center;
  justify-content: space-between;
}
.content-text.media.media--left .rte,
.content-text.media.media--right .rte {
  width: 66%;
}
.content-text.media.media--left .figure,
.content-text.media.media--right .figure {
  width: 33%;
}
.content-text.media.media--right {
  flex-direction: row-reverse;
}
.content-text.media.media--left {
  flex-direction: row;
}
.content-text.media.media--above {
  flex-direction: column;
}
.content-text.media.media--below {
  flex-direction: column-reverse;
}
.content-element-group.service-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  align-items: top;
}
@media screen and (max-width: 1109px) {
  .content-element-group.service-icons {
    grid-template-columns: repeat(4, 1fr);
    width: 76%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .content-element-group.service-icons {
    grid-template-columns: repeat(3, 1fr);
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 519px) {
  .content-element-group.service-icons {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-element-group.service-icons .content-text figure {
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 5;
  border-radius: 200px;
}
.content-element-group.service-icons .content-text figure img {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  height: auto;
}
.content-element-group.service-icons .content-text .rte {
  text-align: center;
  font-weight: 600;
  hyphens: auto;
}
.content-text.rounded-image,
.content-image.rounded-image {
  overflow: hidden;
}
.content-text.rounded-image img,
.content-image.rounded-image img {
  border-radius: 10px 40px;
  overflow: hidden;
}
.content-gallery ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.content-gallery--cols-1 ul {
  grid-template-columns: repeat(1, 1fr);
}
.content-gallery--cols-2 ul {
  grid-template-columns: repeat(2, 1fr);
}
.content-gallery--cols-3 ul {
  grid-template-columns: repeat(3, 1fr);
}
.content-gallery--cols-4 ul {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1023px) {
  .content-gallery--cols-4 ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .content-gallery--cols-4 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .content-gallery--cols-4 ul {
    grid-template-columns: 1fr;
  }
}
.content-gallery--cols-5 ul {
  grid-template-columns: repeat(5, 1fr);
}
.content-gallery--cols-6 ul {
  grid-template-columns: repeat(6, 1fr);
}
.content-gallery--cols-7 ul {
  grid-template-columns: repeat(7, 1fr);
}
.content-gallery--cols-8 ul {
  grid-template-columns: repeat(8, 1fr);
}
.content-gallery--cols-9 ul {
  grid-template-columns: repeat(9, 1fr);
}
.content-gallery--cols-10 ul {
  grid-template-columns: repeat(10, 1fr);
}
.content-gallery--cols-11 ul {
  grid-template-columns: repeat(11, 1fr);
}
.content-gallery--cols-12 ul {
  grid-template-columns: repeat(12, 1fr);
}
.ce_compare_images_slider {
  position: relative;
}
.ce_compare_images_slider h1,
.ce_compare_images_slider h2,
.ce_compare_images_slider h3,
.ce_compare_images_slider h4,
.ce_compare_images_slider h5,
.ce_compare_images_slider h6 {
  font-weight: 400;
  font-size: 1.25rem;
  color: white;
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
}
.ce_compare_images_slider figure {
  position: relative;
}
.ce_compare_images_slider figure img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px 40px;
}
.ce_compare_images_slider figure figcaption {
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
  position: absolute;
  bottom: 1rem;
  left: 50%;
}
.ce_compare_images_slider figure[slot="first"] figcaption {
  transform: translate(-50%, 0);
}
.ce_compare_images_slider figure[slot="second"] figcaption {
  transform: translate(calc(-50% - 3px), -12px);
}
.content-gallery.rounded-image img {
  border-radius: 10px 40px;
}
.content-gallery figcaption,
.content-image figcaption,
.content-text figcaption {
  line-height: 1.2;
  padding-top: 0.5em;
  padding-bottom: 1em;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  hyphens: auto;
}
.content-gallery figcaption:first-line,
.content-image figcaption:first-line,
.content-text figcaption:first-line {
  font-weight: 600;
}
.content-gallery.image_grayscale img,
.content-image.image_grayscale img,
.content-text.image_grayscale img {
  filter: grayscale(100%);
  transition: all 250ms ease-in-out;
}
.content-gallery.image_grayscale img:hover,
.content-image.image_grayscale img:hover,
.content-text.image_grayscale img:hover {
  filter: grayscale(0%);
}
.content-image.lw-plusmulti,
.content-text.lw-plusmulti {
  position: relative;
  padding-right: 100px;
}
.content-image.lw-plusmulti:after,
.content-text.lw-plusmulti:after {
  z-index: -1;
  aspect-ratio: 198 / 299;
  width: 125px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 10%;
  transform: translate(30%, -40%);
  background-image: url('/files/themes/frontend/icons/plus-multi.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.content-text .rte pre {
  font-family: "Georama";
}
.content-text .rte pre a {
  background-color: #FDC305;
  padding: 0.5em 1em;
  border-radius: 5px 15px;
  text-decoration: none;
  color: white !important;
}
.content-text .rte pre a:hover {
  color: #555555 !important;
  text-decoration: none;
}
.bg_yellow .content-text .rte pre {
  font-family: "Georama";
}
.bg_yellow .content-text .rte pre a {
  background-color: white;
  padding: 0.5em 1em;
  border-radius: 5px 15px;
  text-decoration: none;
  color: #555555 !important;
}
.bg_yellow .content-text .rte pre a:hover {
  color: #555555 !important;
  text-decoration: none;
}
.bg_yellow .content-text.joboffer {
  border-top: 1px solid #555555;
  padding-top: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  max-width: 960px;
}
.bg_yellow .content-text.joboffer h3 {
  font-weight: normal;
}
.bg_yellow .content-text.joboffer:first-of-type {
  margin-top: 2rem;
}
.bg_yellow .content-text.joboffer:last-of-type {
  border-bottom: 1px solid #555555;
}
.contact-info .content-text p {
  line-height: 1.25em !important;
  margin-bottom: 0.5em !important;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink {
  border-radius: 10px 40px;
  position: relative;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink figure {
  border-radius: 10px 40px;
  overflow: hidden;
  background-color: #e7b102;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink figure img.project_teaser_image {
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink .project_title {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink .project_title h3 {
  color: white;
  padding: 0 1rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 2px 2px 8px black;
}
.mod_listing-table.projects-list .projects-list-item a.teaserlink:hover figure img.project_teaser_image {
  opacity: 0.5;
}
.mod_listing-table.projects-list-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1140px) {
  .mod_listing-table.projects-list-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .mod_listing-table.projects-list-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
#hero .project-details-hero {
  display: contents;
}
#hero .project-details-hero .projects-details-header {
  display: contents;
}
#main .mod_article:has(.project-details) > .article_inside {
  width: 100%;
  max-width: unset;
}
.project-details-content .project-details-intro {
  width: 86%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.project-details-content .project-details-intro .project-details-description.media {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.project-details-content .project-details-intro .project-details-description.media .rte {
  width: calc(62% - 1rem);
}
.project-details-content .project-details-intro .project-details-description.media figure.description_image {
  width: calc(38% - 1rem);
}
.project-details-content .project-details-intro .project-details-description.media figure.description_image img {
  border-radius: 10px 40px;
}
.project-details-content .project-details-intro .project-details-description.media figure.description_image figcaption {
  padding: 0.25em 1em;
  font-size: 1rem;
}
.project-details-content .project-details-intro .project-details-description.media figure.description_image figcaption .license {
  font-style: italic;
}
.project-details-content .project-details-intro .project-details-description.media figure.description_image figcaption .caption {
  font-weight: 600;
}
.project-details-content .project_details_areas_container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.project-details-content .project_details_areas_container .project-details_areas_headline {
  position: relative;
  width: 86%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.project-details-content .project_details_areas_container .project-details_areas_headline:after {
  background-image: url("/files/themes/frontend/icons/lw-plus-plus-yellow.svg");
  background-repeat: no-repeat;
  background-position: center right 2%;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0, 50%);
  width: clamp(100px, 15%, 150px);
  height: 150px;
  aspect-ratio: 1;
  z-index: 100;
}
.project-details-content .project_details_areas_container .project_areas_image {
  position: relative;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container {
  padding: 5%;
  position: absolute;
  top: 2%;
  left: 1%;
  width: 98%;
  height: 96%;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay {
  z-index: 8;
  font-size: clamp(13px, 1.65vw, 24px);
  position: absolute;
  display: flex;
  align-items: center;
  color: #555555;
  font-weight: 500;
  text-decoration: none;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay .project_area_overlay_icon {
  transition: all 150ms ease-in-out;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
  width: 3em;
  aspect-ratio: 1;
  height: fit-content;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay .project_area_overlay_icon img {
  width: 100%;
  height: auto;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay .project_area_overlay_title {
  white-space: nowrap;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.85);
  line-height: 1.125em;
  padding: 0.25em 1em;
  border-radius: 0 10px 10px 0;
  transform: translateX(-0.4em);
  transition: all 150ms ease-in-out;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay .project_area_overlay_title a {
  color: white !important;
  text-decoration: none;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay:hover {
  cursor: pointer;
  z-index: 10;
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay:hover .project_area_overlay_icon {
  background-color: white;
  transform: rotate(360deg);
}
.project-details-content .project_details_areas_container .project_areas_overlays_container .project_area_overlay:hover .project_area_overlay_title {
  background-color: #FDC305;
  font-size: 1.125em;
  color: white;
}
.project_areas_modals_container {
  border: 5px solid red;
}
/* Dunkler Hintergrund für das Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  /* Dunkel-transparent */
  z-index: 1000;
  display: none;
}
/* Modal-Fenster */
.project_area_modal {
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  max-width: 738px;
  width: 96%;
  z-index: 1001;
  border-radius: 15px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.project_area_modal .project_area_modal_inner {
  font-size: 1.125rem;
  max-height: calc(100vh - 80px);
  height: 100%;
  overflow-Y: scroll;
}
.project_area_modal .project_area_modal_inner img {
  width: 100%;
  height: auto;
  border-radius: 10px 40px;
}
.project_area_modal .project_area_modal_inner h3 {
  margin-top: 1em;
  padding: 0 1rem;
}
.project_area_modal .project_area_modal_inner p {
  margin-top: 0.5em;
  padding: 0 1rem;
}
/* Modals standardmäßig verstecken */
.hidden {
  display: none;
}
/* Wenn das Modal geöffnet wird */
.modal-backdrop.visible {
  display: block;
}
/* Schließen-Button */
.modal-close {
  border: 4px solid transparent;
  position: fixed;
  justify-content: center;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  line-height: 1em;
  font-size: 28px;
  cursor: pointer;
  color: #FDC305;
  transition: all 150ms ease-in-out;
  background-image: url("/files/themes/frontend/icons/lw-plus.svg");
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  opacity: 0.8;
}
.modal-close:hover {
  background-size: 66%;
  opacity: 1;
  border: 4px solid #FDC305;
  background-color: white;
  transform: rotate(405deg);
}
/* Pfeile für die Navigation */
.modal-navigation {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.modal-prev,
.modal-next {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #FDC305;
  padding: 10px;
  transition: all 150ms ease-in-out;
}
.modal-prev:hover,
.modal-next:hover {
  transform: scale(125%);
}
/* Punkte für Pagination */
.modal-pagination {
  display: flex;
  gap: 5px;
}
.modal-dot {
  color: #FDC305;
  font-size: 26px;
  cursor: pointer;
}
.project-details-content-elements > :is([class^="ce_"], [class^="content-"], [class*=" ce_"], [class*=" content-"]) {
  padding: 2.5rem 0;
}
.project-details-content-elements > :is([class^="ce_"], [class^="content-"], [class*=" ce_"], [class*=" content-"]):not(.fullwidth) {
  width: 96%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.project-details-content-elements .content-element-group:not(.slider-images) {
  background-color: rgba(255, 0, 0, 0.1);
}
.project-details-content-elements .content-element-group:not(.slider-images) > :is([class^="ce_"], [class^="content-"], [class*=" ce_"], [class*=" content-"]) {
  padding: 2.5rem 0;
}
.project-details-content-elements.slider-images .content-image {
  padding-bottom: 2.5rem;
}
.mod_listing-table:has(.project-areas-details, .project-areas-navigation) {
  display: contents;
}
.mod_article:has(.project-areas-navigation) {
  position: relative;
  overflow: visible;
  /* Icons sind per Default unsichtbar, nur per Opacity animiert */
  /* Persistente Anzeige: wenn nichts gehovert wird, zeige das selektierte Icon */
  /* Hover-Logik: beim Hovern über die Liste alle Icons ausblenden ... */
  /* ... und nur das Icon des aktuell gehoverten Items einblenden */
}
.mod_article:has(.project-areas-navigation) .project-area-icon {
  z-index: 5;
  overflow: visible;
  bottom: 0;
  right: 0;
  transform: translate(7%, 25%);
  position: absolute;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  /* nicht anklickbar, falls sie überliegen */
}
.mod_article:has(.project-areas-navigation) .project-area-icon figure,
.mod_article:has(.project-areas-navigation) .project-area-icon figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mod_article:has(.project-areas-navigation) .project-areas-navigation:not(:hover) .project-areas-navigation-item.is-selected .project-area-icon {
  opacity: 1;
}
.mod_article:has(.project-areas-navigation) .project-areas-navigation:hover .project-area-icon {
  opacity: 0;
}
.mod_article:has(.project-areas-navigation) .project-areas-navigation-item:hover .project-area-icon {
  opacity: 1;
}
.mod_article:has(.project-areas-details) {
  z-index: 10;
  position: relative;
}
ul.project-areas-navigation {
  margin-bottom: 3rem;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  ul.project-areas-navigation {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 560px) {
  ul.project-areas-navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480x) {
  ul.project-areas-navigation {
    grid-template-columns: 1fr;
  }
}
ul.project-areas-navigation li.project-areas-navigation-item {
  transition: all 0.25s ease-in-out;
  border-radius: 10px 40px;
  overflow: hidden;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper {
  position: relative;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link {
  display: block;
  transition: all 0.25s ease-in-out;
  background-color: black;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link:hover {
  background-color: #FDC305;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link img {
  transition: all 0.25s ease-in-out;
  opacity: 0.75;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link:hover,
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link.is-active {
  background-color: #FDC305;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link:hover img,
ul.project-areas-navigation li.project-areas-navigation-item .project-area-link-wrapper a.project-area-link.is-active img {
  opacity: 0.25;
}
ul.project-areas-navigation li.project-areas-navigation-item .project-area-title {
  hyphens: auto;
  padding: 0 1rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: fit-content;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 1.25rem;
}
.project-areas-details-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.project-areas-details-item.is-visible {
  opacity: 1;
}
.project-area-info {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 3rem;
}
@media screen and (max-width: 919px) {
  .project-area-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .project-area-info {
    grid-template-columns: 1fr;
  }
}
.project-area-info h2 {
  grid-column: 1 / -1;
}
.project-area-info p {
  margin-bottom: 1rem;
}
.project-area-info ul.project_areas_services {
  height: fit-content;
  display: block;
  background-color: #FDC305;
  border-radius: 10px 40px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 1rem;
  margin: 0;
  hyphens: auto;
}
.project-area-info ul.project_areas_services li {
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 0.5em;
}
.project-areas-details-item {
  overflow: hidden;
  height: 0;
  /* Startzustand */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: height 0.35s ease, opacity 0.25s ease;
}
.project-areas-details-item.is-visible {
  /* Zielzustand während/ nach Animation */
  visibility: visible;
  pointer-events: auto;
}
.project-areas-content-elements {
  padding-top: 4rem;
}
.project-areas-content-elements:not(:has(.swiper-container)) {
  padding-bottom: 4rem;
}
.project-areas-content-elements:empty {
  background-color: #f5f5f5;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.project-areas-content-elements .ce_swiperStart {
  position: relative;
  z-index: 10;
}
.project-areas-content-elements .ce_swiperStart:after {
  z-index: -1;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background-color: #FDC305;
}
.project-areas-content-elements .ce_swiperStart .swiper-pagination-bullet {
  background: #555555;
}
.project-area-contact-footer {
  padding: 8rem 0 2rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  background-color: #FDC305;
  background-image: url('/files/themes/frontend/icons/lw-plusplus.svg');
  background-repeat: no-repeat;
  background-size: 8% auto;
  background-position: right 25% top 15%;
}
.project-area-contact-footer h4 {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5em;
  line-height: 1.25em;
  text-align: right;
}
.project-area-contact-footer h4 span {
  color: white;
}
.project-area-contact-footer .contact_photo {
  width: 250px;
  border-radius: 10px 40px;
  overflow: hidden;
}
.project-area-contact-footer .project-area-contact-info h5 {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}
.project-area-contact-footer .project-area-contact-info p {
  font-size: 16px;
}
.project-area-contact-footer .project-area-contact-info p .contact_name {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .project-area-contact-footer {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    background-size: 15% auto;
    background-position: right 5% top 30%;
  }
}
.content-element-group.columns {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.content-element-group.columns.cols-5-7 {
  grid-template-columns: 5fr 7fr;
}
.content-element-group.columns.cols-1-1 {
  grid-template-columns: 1fr 1fr;
}
.content-element-group.margin-left-right {
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ce_swiperStart {
  position: relative;
}
.swiper-container {
  overflow: visible;
  position: static;
}
.swiper-container .swiper-wrapper {
  padding: 2rem 0;
}
.swiper-button-prev,
.swiper-button-next {
  display: none;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 1px solid red;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: #FDC305;
}
.swiper-pagination {
  position: unset;
}
.swiper-pagination-bullets {
  bottom: -10px;
}
.swiper-pagination-bullet {
  margin-top: 10px;
  background: #FDC305;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.bg_yellow .swiper-pagination-bullet {
  background: white;
}
.bg_yellow .swiper-button-prev:after,
.bg_yellow .swiper-button-next:after {
  color: red;
}
.gslide img {
  border-radius: 10px 40px 0 0;
}
.gslide .gslide-description {
  background-color: #FDC305;
  border-radius: 0 0 10px 40px;
}
.job_listing {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.job_listing .job_item {
  border-top: 1px solid #555555;
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 960px;
}
.job_listing .job_item:last-of-type {
  border-bottom: 1px solid #555555;
}
.job_listing .job_item h3 {
  line-height: 1.125em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.job_listing .job_item h3 span.job_location {
  font-weight: 400;
}
.job_listing .job_item .link_job_more {
  display: inline-block;
  margin-top: 1em;
  margin-bottom: 0;
  background-color: white;
  color: #555555;
  border-radius: 5px 15px;
  padding: 0.5em 1em;
  line-height: 1.125em;
  font-weight: 500 !important;
  text-decoration: none;
  font-style: italic;
}
.job_listing .job_item .link_job_more:hover {
  text-decoration: underline;
}
.job_details .job_item h2 {
  margin-bottom: 0.25em !important;
  margin-top: 1em !important;
  font-weight: 700;
  font-size: 1.5em !important;
}
.job_details .job_item h3 {
  font-style: italic;
  font-weight: 700;
  margin-top: 1em;
}
.job_details .job_item ul {
  margin-top: 0;
  margin-bottom: 0;
}
.job_details .job_item ul.job_locations {
  list-style-type: none;
  padding: 0;
  display: block;
}
.job_details .job_item ul.job_locations li + li {
  display: flex;
  flex-direction: column;
}
.job_details .job_item ul.job_locations li + li:before {
  content: " oder ";
  display: block;
}
.job_details .job_item a.link_application {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
  background-color: #FDC305;
  border-radius: 5px 15px;
  padding: 0.5em 1em;
  line-height: 1.125em;
  margin-bottom: 15px;
  color: white;
}
.job_details .job_item a.link_application:hover {
  color: #555555;
  text-decoration: underline;
}
.job_details .job_item ul.download_links {
  list-style-type: none;
  padding: 0;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}
.job_details .job_item ul.download_links a {
  color: #555555;
}
.job_details .job_item ul.download_links a:hover {
  color: #FDC305;
}
:has(.deco) {
  position: relative;
  overflow: visible;
}
.deco {
  pointer-events: none;
}
.deco.lw-plusplus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.content-element-group.deco-columns {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .content-element-group.deco-columns .deco {
    display: none;
  }
}
/*# sourceMappingURL=basic.css.map */
