header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}.aspect--9\:16,.responsive.ratio-916{padding-bottom:177.7777%}.aspect--1\:1,.responsive.ratio-11{padding-bottom:100%}
.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 */

.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}.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;-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 .plyr__poster-enabled.plyr--loading .plyr__poster{display:none}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';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%;margin:auto}.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%;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 .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}}
/*style.css*/
HTML
{
	min-height: 100%;
	scroll-behavior:smooth;
}
BODY
{
	text-rendering: auto;
	font-optical-sizing: auto;
	font-size: 1.1rem;
	font-size: clamp(1.1rem, 0.9693rem + 0.3721vw, 1.2rem);
	line-height: 1.5;
	color: #474747;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
}
/*wrapper*/
#wrapper
{
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}
#headersocial .inside, #header .inside, .articlewrapper, #footertop .inside, #footer .inside
{
	margin: 0 auto;
	padding:0 clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	max-width: 1440px;
}
#main .mod_article, #footertop .inside
{
	padding-top:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	padding-bottom:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	position: relative;
}
#main .mod_article.first
{
	margin-top: 5vw;
}
#footer .inside
{
	padding-top: 2rem;
	padding-bottom: 1rem;
}
/*Header*/
#header
{
	line-height: 0;
	padding: 1rem 0;
	background: url("../../files/theme/img/header_bg.jpg") left bottom / 100% 100% no-repeat transparent;
	width: 100%;
}
/*Slidersection*/
#slidersection
{
	margin: 0;
	padding: 0;
	position: relative;
	border-bottom: 1vw solid #FFFFFF;
	z-index: 1;
}
#slidersection .articlewrapper
{
	max-width: none;
	padding: 0;
	position: relative;
	z-index: 1;
}
#slidersection .articlewrapper IMG
{
	width: 100%;
}
#slidersection .wave
{
	display: block;
	background: url("../../files/theme/img/slider_bg.png") left top / 100% auto no-repeat transparent;
	position: absolute !important;
	left: 0;
	right: 0;
	top: 0;
	min-height: 8.5vw;
	width: 100%;
	z-index: 2;
}
#slidersection .overlay
{
	position: absolute;
	margin: 0 auto;
	width: auto;
}
#slidersection .overlay.top
{
	top: 11.538465%;
}
#slidersection .overlay.bottom
{
	bottom: 7.69231%;
}
#slidersection .overlay.middle
{
	top: 50%;
	transform: translatey(-50%);
}
#slidersection .overlay.left
{
	left: 7.69231%;
	right: auto;
}
#slidersection .overlay.right
{
	right: 7.69231%;
	left: auto;
}
#slidersection .overlay.center
{
	left: 50%;
	/*+transform: translatex(-50%);*/
	-webkit-transform: translatex(-50%);
	-moz-transform: translatex(-50%);
	-o-transform: translatex(-50%);
	-ms-transform: translatex(-50%);
	transform: translatex(-50%);
}
#slidersection .overlay H1, #slidersection H1.overlay
{
	font-size: 1.2em;
	font-size: clamp(2.2rem, 1.6286rem + 2.8571vw, 3.4rem);
	color: #FFFFFF;
	font-weight: 400;
	-webkit-hyphens: auto;
	hyphens: auto;
	/*padding: 2vw 4vw;*/
	/*-webkit-backdrop-filter: blur(0.25rem);*/
	/*backdrop-filter:blur(0.25rem);*/
	/*background-color: rgba(0, 0, 0, 0.10);*/
	/*(*+border-radius: 1rem;*)
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;*/
}
@media (max-width: 1640px)
{
	#slidersection .overlay.left
	{
		left:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	}
	#slidersection .overlay.right
	{
		right:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	}
	#slidersection .overlay.center
	{
		/*+transform: none;*/
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
		left:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
		right:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	}
	#slidersection .overlay.bottom
	{
		bottom:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	}
	/*#slidersection .overlay H1, #slidersection H1.overlay
	{
		text-align: center;
	}*/
}
#slidersection .wrapped .articlewrapper
{
	margin: 0 auto;
	padding:9rem clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem) clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
	max-width: 1440px;
}
#slidersection .wrapped .articlewrapper IMG
{
	width: auto;
}
.kursleiter #slidersection .wave
{
	background-color: #EFEAD3;
}
/*Logo*/
.logo
{
	margin: 0 auto 0 0;
	max-width: 600px;
}
.logo IMG
{
	line-height: 0;
	padding: 1rem 0;
}
/*Typo*/
H1, H2, H3, H4, H5, H6
{
	line-height: 1;
	margin-top: 0;
	margin-bottom: 2rem;
	column-span: all;
	font-optical-sizing: auto;
	font-style: normal;
	color: #B69E0E;
}
H1
{
	font-size: 3rem;
	font-size: clamp(2.2rem, 1.6286rem + 2.8571vw, 3.4rem);
	line-height: 1.1em;
	position: relative;
	margin-top: 0;
	font-weight: 600;
}
H2
{
	font-size: clamp(2rem, 0.7807rem + 3.257vw, 2.8rem);
}
H3
{
	font-size: 1.5rem;
	font-size: clamp(1.2rem, 0.7427rem + 1.2214vw, 1.5rem);
	font-weight: 600;
	line-height: 1.25;
	color: #7e786a;
	margin-bottom: 1rem;
}
H4
{
	color: inherit;
	font-family: inherit;
	line-height: 1.25;
}
H4
{
	font-size: 1.313rem;
	font-weight: 700;
	position: relative;
}
H5
{
	font-size: 1rem;
	font-weight: 600;
	position: relative;
	margin-top: 1rem;
}
H2 .normal
{
	font-weight: 400;
	font-size: 90%;
}
.qudarat H3
{
	margin-top: 1rem;
}
.qudarat H3:before
{
	content: "◼︎";
	color: #B69E0E;
	padding-right: 0.25rem;
}
.bordered
{
	border-bottom: 1px solid currentColor;
}
SUP
{
	font-size: 70%;
	vertical-align: super;
	line-height: 1;
}
A
{
	text-decoration: none;
	color: #B69E0E;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
	cursor: pointer;
}
A:hover
{
	color: #003750;
}
.more A, A.more, .back A, A.back, .ce_hero .hero__links A, BUTTON, .content-download A
{
	display: inline-block;
	padding: 1rem 2rem;
	line-height: 1;
	font-size: 1rem;
	cursor: pointer;
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
	background-image: none;
	/*+transition: all 0.5s ease-in-out;*/
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	font-weight: 600;
	margin-top: 1em;
	background-color: #B69E0E;
	color: #FFFFFF;
	border: none;
}
.more A:hover, A.more:hover, .back A:hover, A.back:hover, .ce_hero .hero__links A:hover, BUTTON:hover, .content-download A:hover
{
	background-color: #003750;
}
STRONG
{
	font-weight: 600;
}
.nomargin H1, .nomargin H2, .nomargin H3, .nomargin H4, H1.nomargin, H2.nomargin, H3.nomargin, H4.nomargin
{
	margin-top: 0;
	margin-bottom: 0;
}
@media (max-width: 768px)
{
	H2, H3, H4, H5, H6
	{
		-webkit-hyphens: auto;
		hyphens: auto;
	}
}
/*Material Icons*/
.material-icons
{
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	vertical-align: bottom;
	/* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	vertical-align: middle;
}
.tiny.material-icons
{
	font-size: 1rem;
}
.small.material-icons
{
	font-size: 2rem;
}
.medium.material-icons
{
	font-size: 3rem;
}
.large.material-icons
{
	font-size: 4rem;
}
/*Content*/
#main .liste UL LI
{
	position: relative;
	margin-left: 1.4rem;
}
#main .liste UL LI:before, #footertop .liste UL LI:before
{
	content: "◼︎";
	color: rgba(181, 157, 14, 0.3333);
	padding-right: 0.4rem;
	margin-left: -1.6rem;
}
#main .liste OL LI
{
	list-style: numeric outside;
	margin-left: 1.1em;
	padding-left: 0.5em;
}
#main .liste OL LI UL LI
{
	list-style: none;
}
#main .liste LI LI
{
	padding-left: 1.7em;
}
#main .liste LI LI:before
{
	content: "\f105";
	margin-left: -1.7em;
}
#main .ce_downloads LI
{
	padding-left: 0;
}
#main .ce_downloads LI:before
{
	content: none;
}
#main #video .ce_hyperlink A:before
{
	content: "\f16a";
	margin-right: 0.5em;
	color: #E34931;
	font-weight: 400;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
#main #video .ce_hyperlink A:hover:before
{
	color: #FFFFFF;
}
#main .ce_hyperlink.right
{
	margin-right: 0;
	margin-left: auto;
	display: table;
}
#main .center, #main .center H2, #main .center H3
{
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
#main .big
{
}
#main .big .material-icons
{
	font-size: 4rem;
}
#main .white
{
	color: #FFFFFF;
}
#main .width70
{
	width: 70%;
}
@media (max-width: 899px)
{
	#main .small
	{
		width: auto;
	}
}
#main .buttoncenter
{
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
.rechts, .rechts H2, .rechts H3, .rechts H4
{
	text-align: right;
	-moz-hyphens: none;
	-webkit-hyphens: none;
	hyphens: none;
	margin-right: 0;
	margin-left: auto;
}
@media (max-width: 768px)
{
	.rechts.kontakt
	{
		right: 0 !important;
		left: 0 !important;
		margin: auto;
		text-align: center;
	}
}
.absolute
{
	position: absolute;
	top: 0;
	max-width: 50%;
	background-color: rgba(255, 255, 255, 0.750);
	padding: 5vw;
	backdrop-filter: blur(10px);
	/*+border-radius: 1vw;*/
	-moz-border-radius: 1vw;
	-webkit-border-radius: 1vw;
	-khtml-border-radius: 1vw;
	border-radius: 1vw;
}
.underline
{
	position: relative;
	padding-bottom: 1rem;
}
.underline:before
{
	content: "";
	display: block;
	width: 98px;
	height: 2px;
	background: #D46124;
	position: absolute;
	top: 2rem;
	left: 0;
}
#main .centerH H1, #main .centerH H2, #main .centerH H3
{
	text-align: center;
}
#main .intro P
{
	font-size: 130%;
}
@media (max-width: 899px)
{
	#main .offset
	{
		margin-top: auto;
	}
}
:focus
{
	outline: 0;
}
.weiss
{
	color: #FFFFFF;
}
.hint
{
	text-align: center;
	margin-top: 1rem;
}
.hint P:before
{
	content: "\f138";
	color: rgba(255, 255, 255, 0.750);
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	margin-right: 0.5rem;
	font-size: 2rem;
	vertical-align: middle;
}
HR
{
	border: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	-webkit-border-bottom-color: currentColor;
	-moz-border-bottom-color: currentColor;
	border-bottom-color: currentColor;
}
BLOCKQUOTE
{
	/*font-style: italic;*/
	position: relative;
	/*font-family: 'Amiri', serif;*/
	font-size: 2rem;
	font-size: clamp(2rem, 1.202rem + 3.2vw, 3rem);
	font-size: clamp(1.8rem, 1.3212rem + 1.92vw, 2.4rem);
	margin: 20px 0;
	letter-spacing: -0.05rem;
	/*font-family: 'Kaushan Script', cursive;*/
	line-height: 1;
}
BLOCKQUOTE:before
{
	position: absolute;
	left: 10px;
	top: 10px;
	content: "\f10e";
	font-style: normal;
	color: rgba(88, 80, 57, 0.07);
	font-size: 100px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	line-height: 0.5;
}
.border
{
	border-color: #0082CA;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
	cursor: cell;
}
.border.top
{
	border-top-width: 0.25rem;
	border-top-style: solid;
	padding-top: 1rem;
}
.border.right
{
	border-right-width: 0.25rem;
	border-right-style: solid;
	padding-right: 1rem;
}
.border.bottom
{
	border-bottom-width: 0.25rem;
	border-bottom-style: solid;
	padding-bottom: 1rem;
}
.border.left
{
	border-left-width: 0.25rem;
	border-left-style: solid;
	padding-left: 1rem;
}
.border.hover
{
	/*padding: 0;*/
	border-color: transparent;
}
.border.hover:hover
{
	padding: 1rem;
	border-color: currentColor;
}
.kasten
{
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
	padding:clamp(2rem, 0.4758rem + 4.0712vw, 3rem);
	font-weight: 600;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.500);
	margin-top:clamp(2rem, 0.4758rem + 4.0712vw, 3rem);
	margin-bottom:clamp(2rem, 0.4758rem + 4.0712vw, 3rem);
}
.kasten .material-icons
{
	font-size: clamp(2rem, 0.4758rem + 4.0712vw, 3rem);
}
.small .kasten
{
	font-size: 95%;
}
.small .kasten .material-icons
{
	font-size: 3rem;
}
.abstand
{
	margin-left: 2.2rem;
}
.abstand.top
{
	padding-top: 1rem;
}
/*Stroke*/
.stroke
{
	position: relative;
}
.stroke.top:before, .stroke.bottom:after
{
	content: "________";
	color: #EA072A;
	color: #0082CA;
	display: block;
	font-size: 1rem;
}
.stroke.content-headline:before
{
	padding-bottom: 2rem;
}
/*Footertop*/
#footertop
{
	background: url("../../files/theme/img/footer_bg.jpg") bottom right / cover no-repeat transparent;
	color: #FFFFFF;
	border-top: 1rem solid #FFFFFF;
	border-bottom: 1rem solid #B69E0E;
}
#footertop H2, #footertop H3, #footertop A
{
	color: #B69E0E;
	font-weight: normal;
	margin-bottom: 0;
}
#footertop A:hover
{
	color: #86D4FF;
}
/*Footer*/
#footer
{
	line-height: 1.5em;
	font-size: 0.8em;
	background-color: #EDEDED;
	background-color: #FFFFFF;
	border-top: 1px solid rgba(255, 255, 255, 0.250);
	color: #0051A0;
}
#footer .kontakt A
{
	font-weight: normal;
	text-decoration: none;
	color: #B69E0E;
}
@media (max-width: 576px)
{
	#footer
	{
		padding: 20px 0 20px;
	}
}
/*Farben*/
.gold
{
	color: #B69E0E;
}
.mod_article.hellblau
{
	background-color: #BDCBD2;
}
.mod_article.hellblau .content-headline
{
	color: #FFFFFF;
}
.mod_article.grau
{
	background-color: #EDEDED;
}
.mod_article.beige
{
	background-color: #F0EAD3;
}
.mod_article.support:after
{
	position: relative;
}
#slidersection .drache.content-image
{
	position: relative;
	z-index: 99 !important;
}
#slidersection .drache.content-image IMG
{
	position: absolute;
	bottom: -40px;
	left: 50%;
	/*+transform: translate(-50%, -50%);*/
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/*+transform: translate(-50%, 0);*/
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	-webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
	width: auto !important;
}

/*nav.css*/
/*Mobile*/
.mobileNAV .hamburger
{
	cursor: pointer;
	/*+transition: 500ms ease-out;*/
	-webkit-transition: 500ms ease-out;
	-moz-transition: 500ms ease-out;
	-o-transition: 500ms ease-out;
	transition: 500ms ease-out;
	background-color: #003750;
	color: #B69E0E;
	border: 1px solid #B69E0E;
	padding: 0.5rem;
	font-size: 2rem;
	/*+border-radius: 0.5rem;*/
	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-khtml-border-radius: 0.5rem;
	border-radius: 0.5rem;
	display: inline-block;
}
.mobileNAV .hamburger:hover
{
	background-color: #FFFFFF;
}
.mobile_menu A
{
	color: #B69E0E;
	font-weight: normal;
}
.mobile_menu A, .mobile_menu STRONG.active
{
	font-size: 1.5rem;
	line-height: 2;
	font-weight: 600;
}
.mobile_menu A:hover, .mobile_menu STRONG.active
{
	color: #FFFFFF;
}
.mobile_menu .level_1 STRONG.active, .mod_navigation A.trail
{
	color: #FFFFFF;
}
.mobile_menu .inner
{
	font-weight: normal;
	text-transform: none;
	background-color: rgba(8, 61, 101, 0.666);
	padding:clamp(1.1rem, 0.7952rem + 0.8142vw, 1.3rem);
}
.mobile_menu .inner IMG
{
	margin-bottom: 1rem;
}
.mobile_menu .inner .contactinfo
{
	border-top: 0.1rem solid #B69E0E;
	margin-top: 1rem !important;
	padding-top: 1rem !important;
}
.mobile_menu .inner .contactinfo, .mobile_menu .inner .contactinfo A
{
	color: #FFFFFF;
	font-weight: normal;
	font-size: clamp(1.1rem, 0.7952rem + 0.8142vw, 1.3rem);
}
.mobile_menu .inner .contactinfo A:hover
{
	color: #B69E0E;
}
@media (min-width: 768px)
{
	.mobile_menu.active
	{
		max-width: 50%;
	}
}
@media (min-width: 992px)
{
	.mobile_menu.active
	{
		max-width: 33%;
	}
}
/*Main Navigation*/
/*Header Navigation*/
.headerNAV
{
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}
.headerNAV LI
{
	margin: 0 0 0 auto;
	padding: 0.5rem 1rem;
	display: inline-block;
	text-align: center;
}
.headerNAV A, .headerNAV STRONG
{
	font-size: clamp(1rem, 0.5981rem + 1.1321vw, 1.3rem);
	text-decoration: none;
	line-height: 1.3;
	font-weight: 400;
	color: #474747;
	padding-bottom: 0.5rem;
}
.headerNAV A:hover
{
	color: #EA072A;
}
.headerNAV STRONG.active, .headerNAV A.trail
{
	border-bottom: 0.2rem solid #EA072A;
	color: #0082CA;
}
.headerNAV A.trail
{
}
.headerNAV LI.kontakt
{
	padding-right: 0;
}
@media (max-width: 992px)
{
	.headerNAV
	{
		display: none;
	}
}
/*Footer Navigation*/
.footerNAV
{
	text-transform: uppercase;
}
.footerNAV LI
{
	display: inline-table;
	vertical-align: baseline;
}
.footerNAV A, .footerNAV STRONG
{
	text-decoration: none;
	color: currentColor;
	/*+transition: all 500ms ease;*/
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	font-weight: normal;
	font-size: 0.925rem;
}
.footerNAV A:before, .footerNAV STRONG:before
{
	content: "◼︎";
	filter: opacity(20%);
	padding-right: 0.25rem;
}
.footerNAV A:hover
{
	color: #B69E0E;
}
@media (max-width: 768px)
{
	.footerNAV
	{
		text-align: center;
	}
}
/*Toplink*/
.ce_toplink
{
	display: block;
	text-align: right;
}
.ce_toplink A
{
	padding: 10px;
	color: #FFFFFF;
	background-color: #DBC583;
	text-decoration: none;
}
.ce_toplink A:before
{
	content: "\f139";
	margin-right: 5px;
	color: #FFFFFF;
	margin-left: 1px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
.ce_toplink A:hover
{
	background-color: #C3D621;
	/*+transition: all 500ms ease;*/
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.nach_oben_link A
{
	position: fixed;
	right: 0;
	bottom: 20vh;
	font-size: 32px;
	background-color: #B69E0E;
	color: #FFFFFF;
	padding: 0.25rem;
	line-height: 0;
	/*+box-shadow: 0 0 10px -5px #000000;*/
	-moz-box-shadow: 0 0 10px -5px #000000;
	-webkit-box-shadow: 0 0 10px -5px #000000;
	box-shadow: 0 0 10px -5px #000000;
	/*+border-radius: 5px 0 0 5px;*/
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px;
	-khtml-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	z-index: 999;
}
.nach_oben_link A:hover
{
	cursor: pointer;
	background-color: #003750;
}

/*Galerie*/
.content-gallery
{
	line-height: 0;
	position: relative;
	border: 0.1rem solid #B69E0E;
	padding:clamp(1rem, -2.0483rem + 8.1425vw, 3rem);
}
.content-gallery UL
{
	display: grid;
	grid-gap:clamp(1rem, -2.0483rem + 8.1425vw, 3rem) clamp(1rem, -2.0483rem + 8.1425vw, 3rem);
}
.content-gallery.content-gallery--cols-1 UL
{
	grid-template-columns: 1fr;
}
.content-gallery.content-gallery--cols-2 UL
{
	grid-template-columns: repeat(2, 1fr);
}
.content-gallery.content-gallery--cols-3 UL
{
	grid-template-columns: repeat(3, 1fr);
}
.content-gallery.content-gallery--cols-4 UL
{
	grid-template-columns: repeat(4, 1fr);
}
.content-gallery.content-gallery--cols-5 UL
{
	grid-template-columns: repeat(5, 1fr);
}
.content-gallery.content-gallery--cols-6 UL
{
	grid-template-columns: repeat(6, 1fr);
}
.content-gallery.content-gallery--cols-7 UL
{
	grid-template-columns: repeat(7, 1fr);
}
.content-gallery.content-gallery--cols-8 UL
{
	grid-template-columns: repeat(8, 1fr);
}
.content-gallery.content-gallery--cols-9 UL
{
	grid-template-columns: repeat(9, 1fr);
}
.content-gallery.content-gallery--cols-10 UL
{
	grid-template-columns: repeat(10, 1fr);
}
.content-gallery.content-gallery--cols-11 UL
{
	grid-template-columns: repeat(11, 1fr);
}
.content-gallery.content-gallery--cols-12 UL
{
	grid-template-columns: repeat(12, 1fr);
}
#main .content-gallery .image_container
{
	overflow: hidden;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}
#main .content-gallery IMG, #main A IMG
{
	/*+transition: 500ms ease;*/
	-webkit-transition: 500ms ease;
	-moz-transition: 500ms ease;
	-o-transition: 500ms ease;
	transition: 500ms ease;
	overflow: hidden;
}
#main .content-gallery FIGURE:hover, #main A IMG:hover
{
	opacity: 1;
	filter: saturate(2) sepia(0.5);
}
#main .content-gallery.rot IMG:hover
{
	opacity: 1;
	transition: 0.5s ease;
	filter: invert(30%) sepia(100%) hue-rotate(330deg) saturate(220%) brightness(0.75);
}
#main .content-gallery .caption
{
	line-height: 1;
	margin: 2rem auto 0;
	text-align: left;
	border-bottom: 2px solid #D46124;
	padding: 0.5rem 0;
}
#main .content-gallery.rot .row_0.col_first .caption
{
	text-align: right;
}
#main .content-gallery.center .caption
{
	text-align: center !important;
}
/*Hero*/
.ce_hero
{
	width: 100%;
	display: grid;
}
.ce_hero .hero__background
{
	grid-column: image;
	grid-row: 1 / -1;
	position: relative;
	z-index: 0;
}
.ce_hero .hero__background IMG
{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.ce_hero.hero .hero__content
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 0;
	grid-auto-columns: 1fr;
	grid-column: main;
	grid-row: 1 / -1;
	position: relative;
	z-index: 100;
	text-align: left;
	align-self: center;
}
.ce_hero .hero__text
{
	backdrop-filter: blur(10px);
	padding: 3rem;
	background-color: rgba(255, 255, 255, 0.666);
	/*+border-radius: 1vw;*/
	-moz-border-radius: 1vw;
	-webkit-border-radius: 1vw;
	-khtml-border-radius: 1vw;
	border-radius: 1vw;
	margin: 1vw;
}
.ce_hero .hero__headline
{
	margin-top: 0;
}
@media (max-width: 768px)
{
	.ce_hero .hero__content
	{
		grid-template-columns: 1fr !important;
	}
	.ce_hero .hero__text
	{
		margin: 0;
	}
}
@media (max-width: 576px)
{
	.ce_hero .hero__content
	{
		grid-template-columns: 1fr !important;
	}
	.ce_hero .hero__background IMG
	{
		display: none;
	}
	.ce_hero .hero__text
	{
		padding: 0;
		margin: 0;
	}
}
/*Angebot*/
.angebot
{
	padding: 2rem;
	margin-bottom: 1rem;
	position: relative;
	text-align: center;
	border: 0.2rem solid #B69E0E;
	line-height: 0;
}
.angebot H2
{
	position: absolute;
	bottom: 2rem;
	left: 3rem;
	color: #FFFFFF;
	font-size: clamp(2.4rem, 1.2816rem + 2.56vw, 3.2rem);
	z-index: 99 !important;
}
.angebot.gold
{
	color: #B69E0E;
	background-color: #F8F5E9;
}
.angebot.gold H2
{
	color: #B69E0E;
	text-align: center;
	left: 50%;
	/*+transform: translateX(-50%);*/
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
}
@media (max-width: 768px)
{
	.angebot H2
	{
		font-size: clamp(2.4rem, 1.2816rem + 2.56vw, 3.2rem);
		font-size: clamp(2.4rem, 1.204rem + 6.4vw, 2.8rem);
	}
}
/*Animated Timeline*/
.event__date
{
	color: #B69E0E;
}
.event__content .ce_text
{
	text-align: justify;
	hyphens: auto;
}
.roadmap.roadmap--orientation-auto .roadmap__events__event
{
	font-size: 1.2rem;
	line-height: 1.25;
}
.roadmap__navigation A.next, .roadmap__navigation A.prev
{
	display: inline-block !important;
	padding: 1rem 2rem !important;
	line-height: 1 !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	/*+border-radius: 1rem !important;*/
	-moz-border-radius: 1rem !important;
	-webkit-border-radius: 1rem !important;
	-khtml-border-radius: 1rem !important;
	border-radius: 1rem !important;
	background-image: none !important;
	/*+transition: all 0.5s ease-in-out !important;*/
	-webkit-transition: all 0.5s ease-in-out !important;
	-moz-transition: all 0.5s ease-in-out !important;
	-o-transition: all 0.5s ease-in-out !important;
	transition: all 0.5s ease-in-out !important;
	font-weight: 600 !important;
	background-color: #B69E0E !important;
	color: #FFFFFF !important;
	border: none !important;
}
.roadmap__navigation A:hover.next, .roadmap__navigation A:hover.prev
{
	background-color: #003750 !important;
}
/*Formular*/
FORM
{
	width: 100%;
	display: block;
}
INPUT[type=text], INPUT[type=password], INPUT[type=date], INPUT[type=datetime], INPUT[type=email], INPUT[type=number], INPUT[type=search], INPUT[type=tel], INPUT[type=time], INPUT[type=url], INPUT:not([type]), TEXTAREA
{
	padding: 1rem;
	background-color: #FFFFFF;
	border: none;
	width: calc(100% - 2rem);
	display: block;
	color: #0082CA;
	/*+box-shadow: 0 0.5rem 2rem -1.5rem #000000;*/
	-moz-box-shadow: 0 0.5rem 2rem -1.5rem #000000;
	-webkit-box-shadow: 0 0.5rem 2rem -1.5rem #000000;
	box-shadow: 0 0.5rem 2rem -1.5rem #000000;
}
FORM .widget
{
	margin-top: 1rem;
}
FORM SELECT
{
	padding: 1rem;
	/*+border-radius: 5rem;*/
	-moz-border-radius: 5rem;
	-webkit-border-radius: 5rem;
	-khtml-border-radius: 5rem;
	border-radius: 5rem;
	margin-right: 1rem;
	border: none;
	/*+box-shadow: 0 0 2rem -1.5rem rgba(0, 0, 0, 0.333);*/
	-moz-box-shadow: 0 0 2rem -1.5rem rgba(0, 0, 0, 0.333);
	-webkit-box-shadow: 0 0 2rem -1.5rem rgba(0, 0, 0, 0.333);
	box-shadow: 0 0 2rem -1.5rem rgba(0, 0, 0, 0.333);
	background-color: #FFFFFF;
}
FORM FIELDSET.personal, FORM FIELDSET.message
{
	margin-top: 4rem;
}
FORM .grid-2
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 1rem;
}
@media (max-width: 768px)
{
	FORM .grid-2
	{
		grid-template-columns: none;
	}
}
.form-confirmation
{
	padding-top: 1rem;
	border-top: 1px solid #000000;
}
/*Image*/
.rounded.content-image
{
	overflow: visible;
	margin: 0 0 1rem 0;
}
.rounded IMG
{
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
	/*+box-shadow: 0 1rem 2rem -1.5rem rgba(0, 0, 0, 0.666);*/
	-moz-box-shadow: 0 1rem 2rem -1.5rem rgba(0, 0, 0, 0.666);
	-webkit-box-shadow: 0 1rem 2rem -1.5rem rgba(0, 0, 0, 0.666);
	box-shadow: 0 1rem 2rem -1.5rem rgba(0, 0, 0, 0.666);
}
.absolute IMG
{
	position: absolute;
	left: 50%;
	/*+transform: translateX(-50%);*/
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	overflow: visible;
	z-index: 0;
	filter: brightness(0.75);
}
.shadow IMG
{
	filter: drop-shadow(0 1rem 0.75rem rgba(0, 0, 0, 0.75));
}
.schatten FIGURE
{
	margin: 0.5rem;
}
.schatten IMG
{
	/*+box-shadow: 0 0.25rem 2.5rem -1rem rgba(0, 0, 0, 0.333);*/
	-moz-box-shadow: 0 0.25rem 2.5rem -1rem rgba(0, 0, 0, 0.333);
	-webkit-box-shadow: 0 0.25rem 2.5rem -1rem rgba(0, 0, 0, 0.333);
	box-shadow: 0 0.25rem 2.5rem -1rem rgba(0, 0, 0, 0.333);
}
FIGCAPTION
{
	margin: 0 auto;
	text-align: center;
	font-size: 75%;
}
.icon-belegungsplan IMG
{
	margin: 0 auto 0 50%;
	/*+transform: translatex(-66%);*/
	-webkit-transform: translatex(-66%);
	-moz-transform: translatex(-66%);
	-o-transform: translatex(-66%);
	-ms-transform: translatex(-66%);
	transform: translatex(-66%);
	display: inline-block;
}
.icon-belegungsplan FIGCAPTION
{
	font-size: 2rem;
	font-size: clamp(1.8rem, 1.1903rem + 1.6285vw, 2.2rem);
	line-height: normal;
	color: #B69E0E;
}
.dark IMG
{
	filter: brightness(0.75);
}
.margin.bottom
{
	margin-bottom: 1rem;
}
/*Blog*/
.mod_newslist
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	grid-gap:clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem) clamp(1.5rem, -1.9615rem + 9.6154vw, 4rem);
}
.mod_newslist .layout_latest
{
	position: relative;
	overflow: visible;
	padding: 0 0 6rem 0;
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
}
.mod_newslist .layout_latest .info
{
	font-weight: bold;
	/*padding-top: 1rem;*/
	border-bottom: 0.25rem solid #0082CA;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
#main .mod_newslist .info IMG
{
	/*+box-shadow: none;*/
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.mod_newslist .layout_latest H2
{
	font-size: 1.6rem;
	font-size: clamp(1.6rem, 1.35rem + 0.8vw, 1.8rem);
	margin-top: 0;
	letter-spacing: normal;
	line-height: 1.25;
	margin-bottom: 1rem;
}
.mod_newslist .layout_latest .ce_text P:first-child:after
{
	content: " …";
}
.mod_newslist .layout_latest .more A
{
	position: absolute;
	bottom: 2rem;
	font-size: 80%;
}
.mod_newslist .layout_latest IMG
{
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
}
.mod_newslist .featured
{
	position: relative;
	background-color: #F0F8FA;
}
@media (max-width: 599px)
{
	.mod_newslist
	{
		grid-template-columns: 1fr;
	}
	.mod_newslist .layout_latest
	{
		margin-left: 0;
		background-color: transparent;
		width: 100%;
	}
	.mod_newslist .layout_latest .info
	{
		width: auto;
		float: none;
		margin-left: 0;
		padding: 0;
		height: 100px;
	}
	.mod_newslist .layout_latest .info P
	{
		width: 100px;
		height: 100px;
		float: left;
		margin: 0 auto 0 0;
	}
	.mod_newslist .info .day
	{
		padding-top: 10px;
	}
	.mod_newslist .info .image_container
	{
		float: right;
		width: 100px;
		height: 100px;
		padding: 0;
		margin: 0;
	}
	.mod_newslist .newlistContainer
	{
		padding: 4vw;
		clear: both;
	}
	.mod_newslist .layout_latest .more A
	{
		position: relative;
		bottom: auto;
	}
}
.mod_newslist .layout_simple
{
	margin-bottom: 20px;
	/*grid-template-columns: repeat(2, 1fr);*/
	/*background-color: #99D5DC;*/
	line-height: 1.25;
}
.mod_newslist .layout_simple .zeit
{
	display: table-cell;
	vertical-align: middle;
	width: 50px;
	background-color: #CCC7B6;
	float: left;
	height: 50px;
	padding: 10px 5px 0;
}
.mod_newslist .layout_simple .day, .mod_newslist .layout_simple .month, .mod_newslist .layout_simple .year
{
	display: block;
	text-align: center;
	line-height: 1;
}
.mod_newslist .layout_simple .day
{
	font-weight: bold;
	font-size: 1.2em;
}
.mod_newslist .layout_simple .month
{
	font-weight: bold;
	font-size: 1.2em;
}
.mod_newslist .layout_simple .year
{
	font-size: 0.825em;
}
.mod_newslist .layout_simple .image_container
{
	line-height: 0;
	float: left;
	/*display: inline-table;*/
	width: 60px;
}
.mod_newslist .layout_simple .blogheader
{
	vertical-align: middle;
	padding: 10px;
	line-height: 1em;
	text-align: left;
	display: block !important;
	margin-left: 130px;
}
.home .mod_newslist.blogsimple
{
	border: 0.25em solid #D5EDEB;
	/*+border-radius: 1em;*/
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	-khtml-border-radius: 1em;
	border-radius: 1em;
	padding: 0 1em 1em;
}
.home .mod_newslist.blogsimple H2
{
	border-bottom: 2px solid #8ACCD5;
	background: url("../../files/theme/img/aktuelles_home_header_bg.png") bottom right / contain no-repeat;
	padding-top: 1.5em;
}
.home .mod_newslist.blogsimple A
{
}
.mod_newsreader H2
{
	font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
	letter-spacing: normal;
}
.mod_newsreader TIME
{
	font-weight: 700;
	background-color: #0082CA;
	color: #FFFFFF;
	padding: 0.75rem 1.5rem;
	/*+border-radius: 5rem;*/
	-moz-border-radius: 5rem;
	-webkit-border-radius: 5rem;
	-khtml-border-radius: 5rem;
	border-radius: 5rem;
}
.mod_newslist TIME
{
}
#main .mod_newsreader .layout_full IMG
{
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
	margin-bottom: 2rem;
}
.mod_newslist H1 SPAN, .mod_newslist H2 SPAN, .mod_newslist H3 SPAN, .mod_newsreader H1 SPAN, .mod_newsreader H2 SPAN, .mod_newsreader H2 SPAN
{
	font-size: 50%;
	line-height: 1;
	vertical-align: super;
}
@media (min-width: 1499px)
{
	.mod_newsreader H1
	{
		margin-top: 50px;
	}
}
@media (max-width: 599px)
{
	.mod_newsreader H1
	{
		margin-top: 0;
	}
}
/*Downloads*/
.content-download A
{
	text-align: center;
	padding-top: 1rem;
	font-weight: 800;
	line-height: 1.25;
}
.content-download A:before
{
	font-size: 3rem;
	display: block;
	content: "\e2c4";
	vertical-align: middle;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
}
/*handorgel*/
.handorgel BUTTON
{
	display: block;
	padding: 0.5rem 0;
	line-height: inherit;
	font-size: inherit;
	/*+border-radius:none;*/
	-moz-border-radius: none;
	-webkit-border-radius: none;
	-khtml-border-radius: none;
	border-radius:none;
	background-image: none;
	margin-top: auto;
	background-color: transparent;
	color: #B79E0E;
	font-weight: 600;
}
.handorgel BUTTON:before
{
	content: "\e258";
	vertical-align: middle;
	font-family: 'Material Icons';
	font-weight: normal;
}
.handorgel .accordion.open
{
	padding: 1rem;
	font-size: 90%;
}
/*Preloader*/
.preloader-content BLOCKQUOTE
{
	font-size: 4.75rem;
	font-size: clamp(2.6rem, 0.1429rem + 5.119vw, 4.75rem);
	letter-spacing: -0.03rem;
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-style: normal;
}
#preloaderOverlay
{
	background: url("../../files/theme/img/wolken_preloader.webp") center / contain no-repeat #CCAB22;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9998;
	opacity: 1;
}
.preloader-content
{
	text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #2B2148;
}
/*Video*/
.ce_video IFRAME, .ce_video OBJECT, .ce_video EMBED, .ce_inlinemedia IFRAME, .ce_vimeo IFRAME, .ce_youtube IFRAME
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	margin: 0;
	padding: 0;
}
.ce_video, .ce_youtube, .ce_inlinemedia, .ce_vimeo
{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	width: 100%;
	line-height: 0;
}
/*Swiper*/
:root
{
	--swiper-theme-color:#0082CA !important;
	--swiper-navigation-size:4rem;
}
.swiper-button-next, .swiper-button-prev
{
	background-color: transparent !important;
	border: none;
	padding: 0;
}
.swiper .content-text
{
	margin: 0 4rem;
	padding: 4vw;
	background-color: rgba(0, 129, 200, 0.900);
	/*+border-radius: 1vw;*/
	-moz-border-radius: 1vw;
	-webkit-border-radius: 1vw;
	-khtml-border-radius: 1vw;
	border-radius: 1vw;
	color: #FFFFFF;
}
@media (max-width: 576px)
{
	.swiper .content-text
	{
		margin: 0;
		padding: 2rem 3em;
	}
}
/*Content Slider*/
.slick-slide
{
	position: relative;
}
.slick-slide > DIV
{
	background-color: #D9D9D9;
	/*+border-radius: 16px;*/
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	-khtml-border-radius: 16px;
	border-radius: 16px;
	padding: 70px 7vw;
	margin: 0 15px;
	min-height: 300px;
	display: grid;
	align-items: center;
	justify-content: center;
}
.slick-slide.slick-active > DIV
{
	background-color: rgba(212, 202, 161, 0.300);
}
.content-slider .image_container
{
	margin: 0;
}
#control-template
{
	display: none;
}
.slider-control
{
	width: 100%;
	height: 0%;
	left: 0;
	top: 50%;
	position: absolute;
}
.slider-control .slider-menu
{
	display: none;
}
.slick-slider .slick-prev
{
}
.slick-slider .slick-prev
{
}
.ce_sliderStart
{
	position: relative;
}
.ce_sliderStart .slider-control .slider-prev, .slick-slider .slick-prev
{
	width: 40px;
	height: 80px;
	left: 0%;
	position: absolute;
	margin-top: -40px;
	margin-left: -35px;
	background-color: #E34931;
	font-size: 0px;
	text-decoration: none;
	top: 50%;
	z-index: 99;
	/*+transition: all 0.3s ease-in-out;*/
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.ce_sliderStart:hover .slider-control .slider-prev, .slick-slider .slick-prev:hover
{
	margin-left: 0;
}
.ce_sliderStart .slider-control .slider-next, .slick-slider .slick-next
{
	width: 40px;
	height: 80px;
	right: 0;
	top: 50%;
	position: absolute;
	margin-top: -40px;
	margin-right: -35px;
	background-color: #D56124;
	font-size: 0px;
	text-decoration: none;
	z-index: 99;
	/*+transition: all 500ms ease-in-out;*/
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.ce_sliderStart:hover .slider-control .slider-next, .slick-slider .slick-next:hover
{
	margin-right: 0;
}
.ce_sliderStart .slider-control .slider-next:hover, .ce_sliderStart .slider-control .slider-prev:hover, .slick-slider .slick-prev:hover, .slick-slider .slick-next:hover
{
	background-color: currentColor;
}
.ce_sliderStart .slider-control .slider-prev:before, .slick-slider .slick-prev:before
{
	left: 14px;
	position: absolute;
	color: #FFF;
	top: 25px;
	font-size: 22px;
	font-family: sans-serif;
	content: "\f104";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
.ce_sliderStart .slider-control .slider-next:before, .slick-slider .slick-next:before
{
	right: 14px;
	position: absolute;
	color: #FFF;
	top: 25px;
	font-size: 22px;
	font-family: sans-serif;
	content: "\f105";
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
.wow
{
	visibility: hidden;
}
/*Fullcalender*/
.mod_fullcalendar
{
	background-color: #FFFFFF;
}
.mod_fullcalendar .fc-col-header
{
	margin-bottom: 0;
}
.mod_fullcalendar H2
{
	line-height: 0;
	font-size: 0;
	margin: 0;
	padding: 0;
}
.mod_fullcalendar .fc-toolbar-title
{
	color: #003750;
}
.mod_fullcalendar .fc-col-header-cell
{
	background-color: #B69E0E;
	color: #FFFFFF;
	padding: 0.5rem 0;
}
.mod_fullcalendar .fc-col-header-cell A
{
	color: #FFFFFF;
	font-weight: 400;
}
.mod_fullcalendar .fc-event-main, .mod_fullcalendar A.fc-event
{
	background-color: #003750;
}
.mod_fullcalendar .fc-event, .mod_fullcalendar .fc-timegrid-axis-cushion
{
	border: none;
	font-weight: 400;
	padding: 0.5vw;
}
.mod_fullcalendar TD:nth-child(even)
{
	background-color: rgba(0, 0, 0, 0.0250);
}
.mod_fullcalendar .fc-button
{
	background-color: #003750 !important;
	border: 1px solid #FFFFFF !important;
}
.mod_fullcalendar .fc-button A
{
	background-color: #003750;
	border: 1px solid #FFFFFF !important;
}
.mod_fullcalendar .fc-button:hover
{
	background-color: #B69E0E !important;
}
.mod_fullcalendar .fc-button.fc-button-active
{
	background-color: #B69E0E !important;
}
.mod_fullcalendar .fc-day A
{
	font-weight: 400;
	line-height: 1.25;
}
.mod_fullcalendar A.fc-timegrid-axis-cushion
{
}
.mod_fullcalendar .fc-list-event-dot
{
	border-color: #003750;
}
.mod_fullcalendar TD.fc-list-event-graphic
{
	background-color: #FFFFFF;
}
@media (max-width: 576px)
{
	.mod_fullcalendar .fc
	{
		min-height: 66vh;
	}
	.mod_fullcalendar .fc-toolbar
	{
		display: list-item !important;
	}
	.mod_fullcalendar .fc-toolbar-title
	{
		display: inline-block !important;
		line-height: 1.5;
	}
}
/*Kalender*/
.mod_calendar, .mod_timetable
{
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
}
.mod_timetable .timetable_navi
{
	background-color: rgba(181, 157, 16, 0.100);
}
.mod_calendar .event SPAN
{
	display: block;
	font-size: 80%;
}
.mod_calendar .minicalendar TH.current:before
{
	content: "\f073";
	display: inline-block;
	margin-right: 8px;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	font-weight: 900;
}
.mod_calendar .minicalendar TD
{
	width: 14.28%;
	padding: 0.375rem 0.425rem;
	border: 1px solid #EDEDED;
}
.mod_calendar TABLE, .mod_timetable TABLE
{
	border: 0;
	width: 100%;
}
.mod_calendar .calendar TD, .mod_timetable .timetable TD
{
	width: 14.28%;
	padding: 1em;
	border: 1px solid #EDEDED;
	white-space: normal;
}
.mod_calendar TD .event, .mod_timetable TD .event
{
	display: inline-block;
}
.mod_calendar TH.label, .mod_timetable TH.label
{
	padding: 0.75rem 0;
}
.mod_calendar TH.head
{
	padding: 0;
	color: #FFF;
	border-top: 1px solid #B69E0E;
	border-right: 1px solid #B69E0E;
	border-left: 1px solid #B69E0E;
	background-color: #B69E0E;
	font-weight: 400;
}
.mod_calendar TH.next A, .mod_calendar TH.previous A, .mod_timetable .timetable_navi .next A, .mod_timetable .timetable_navi .previous A
{
	display: inline-block;
	padding: 1rem;
	color: #FFF;
	background-color: #B69E0E;
	text-decoration: none;
}
.mod_calendar TH.next A:hover, .mod_calendar TH.previous A:hover, .mod_timetable .timetable_navi .next A:hover, .mod_timetable .timetable_navi .previous A:hover
{
	border-color: #84898D !important;
	background-color: #003750;
}
.mod_calendar TH.current
{
	text-align: center;
}
.mod_calendar TH.next
{
	text-align: right;
}
.mod_calendar TH.previous
{
	text-align: left;
}
.mod_calendar TH.label
{
	border-right: 1px solid #D8D8D8;
	border-bottom: 1px solid #D8D8D8;
	border-left: 1px solid #D8D8D8;
	background-color: #FFFFFF;
	text-align: center;
	font-weight: 300;
}
.mod_calendar TD .event
{
	width: 99%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	line-height: 1.25;
}
.mod_calendar TD.today
{
	background-color: rgba(181, 157, 14, 0.250) !important;
}
.mod_calendar TD .bygone
{
	text-decoration: line-through;
	font-size: 70%;
}
.mod_calendar TH.current
{
	padding: 1rem;
}
.mod_calendar TH.current:before
{
	display: inline-block;
	margin-right: 8px;
	content: "\ebcc";
	vertical-align: bottom;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
}
.mod_timetable TR:nth-child(even)
{
}
.mod_calendar TR:nth-child(even), .mod_timetable TR:nth-child(even)
{
	background-color: rgba(255, 255, 255, 0.100);
}
.mod_calendar TR:nth-child(odd), .mod_timetable TR:nth-child(odd)
{
	background-color: rgba(0, 0, 0, 0.050);
}
.mod_calendar TD:nth-child(even), .mod_timetable TD:nth-child(even)
{
	background-color: rgba(255, 255, 255, 0.100);
}
.mod_calendar TD:nth-child(odd), .mod_timetable TD:nth-child(odd)
{
	background-color: rgba(0, 0, 0, 0.050);
}
.mod_calendar TD:hover
{
	background-color: rgba(181, 157, 14, 0.100);
}
@media only screen and (min-width: 1025px)
{
	.mod_calendar, .mod_timetable
	{
		overflow-x: hidden;
	}
}
@media only screen and (max-width: 992px)
{
	.mod_calendar TD, .mod_timetable TD
	{
		min-width: 20vw;
	}
}
@media only screen and (max-width: 768px)
{
	.mod_calendar TH.label > SPAN, .mod_timetable TH.label > SPAN
	{
		display: none;
	}
	.mod_calendar TD, .mod_timetable TD
	{
		min-width: 25vw;
	}
}
/*Eventreader*/
.mod_eventreader .material-icons
{
	color: #B69E0E;
}
.mod_eventreader .info
{
	float: left;
	margin-right:clamp(1rem, -2.0483rem + 8.1425vw, 3rem);
	background-color: #F0EAD3;
	padding:clamp(1rem, -2.0483rem + 8.1425vw, 3rem);
	/*+border-radius: 0.25rem;*/
	-moz-border-radius: 0.25rem;
	-webkit-border-radius: 0.25rem;
	-khtml-border-radius: 0.25rem;
	border-radius: 0.25rem;
}
@media only screen and (max-width: 768px)
{
	.mod_eventreader .info
	{
		float: none;
		margin-bottom:clamp(1rem, -2.0483rem + 8.1425vw, 3rem);
		margin-right: 0;
	}
}

/* barlow-condensed-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: 'Barlow Condensed';
  font-style: normal;
  font-weight: 200;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: italic;
  font-weight: 200;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: italic;
  font-weight: 600;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-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: 'Barlow Condensed';
  font-style: italic;
  font-weight: 800;
  src: url('../../files/theme/fonts/barlow-condensed-v12-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* material-icons-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: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/theme/fonts/material-icons-v143-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
