@charset "utf-8";
@font-face {
    font-family: 'open_sansregular';
    src: url('opensans-regular-webfont.woff2') format('woff2'),
         url('opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --fontFamily:"open_sansregular", "Open Sans", sans-serif;
    --fontSize:15px;
    --BodyBackgroundColor: #fff;
    --BodyColor: #000;
    --headerBackgroundColor: #fff;
    --headerColor: #000;
    --aColor:#345066;
    --h1Color: #345066;
    --h2Color: #345066;
    --backToTop: rgba(0,0,0,0.8);
    --footerColor: #fff;
    --footerBackgroundColor: #345066;
    --LightBoxBackgroundColor: #345066;
    --LightBoxTextColor: #fff;
    --SeconNavBackgroundColor:rgba(255, 255, 255, 0.9);
    --SeconNavColor:#fff;
    --inputTextColor: #000;
    --inputBackgroundColor: #fff;
    --inputBorderColor: #345066;
    
    --inputButtonBackgroundColor: #e94f1d;
    --inputButtonColor: #fff;
}


/* --- Allgemeine Definitionen -- */
html, body {
	min-height:100%;
	height: 100%;
}

html {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	min-height:100%;
	line-height: 1.5;
	font-family: var(--fontFamily);
	font-size: var(--fontSize);
	background-color: var(--BodyBackgroundColor);
	color: var(--BodyColor);
}

a {
	color:var(--aColor);
}

a.underline {
    position: relative;
    display: inline-block;
    -webkit-transition-property:   color;
	-moz-transition-property:  color;
	 -ms-transition-property:  color;
	  -o-transition-property:  color;
	     transition-property:  color;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	 -ms-transition-duration: 0.25s;
	  -o-transition-duration: 0.25s;
	     transition-duration: 0.25s
}

a.underline:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--aColor);
    left: 0;
    bottom: 0;
    z-index: -1;
    
    -webkit-transition-property: height;
	-moz-transition-property: height;
	 -ms-transition-property: height;
	  -o-transition-property: height;
	     transition-property: height;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	 -ms-transition-duration: 0.25s;
	  -o-transition-duration: 0.25s;
	     transition-duration: 0.25s
}

a:hover {
	/* text-decoration: underline; */
	cursor: pointer;
}

a.underline:hover {
    height: 100%;
    color:#fff;
}

.underline:hover::after {
    height: 100%;
}

.blur {
    filter: blur(15px);
}

video {
	max-width:100%;
}

.sl-overlay {
    background: var(--LightBoxBackgroundColor);
    opacity: 0.9;
}
.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-next,
.sl-wrapper .sl-prev {
    color: var(--LightBoxTextColor);
    font-size: 40px;
}

 /* e3e4e6 */

.backToTop {
	background-color: var(--backToTop) !important;
}

.col_4_4 {
    max-width: 1200px !important;
}

#main {
	min-height: 100%;
	position: relative;
    overflow: hidden;
}

main#content {
	box-shadow: 0 0 0 transparent;
}

#content h1 {
	font-size: 250%;
    color: var(--h1Color);
}

#content h2 {
	font-size: 200%;
    color: var(--h2Color);
}

#content h3 {
	font-size: 150%;
}

.backgroundImage .CMStext,
.backgroundImage .text {
    position: absolute;
    right: 10%;
    bottom: 10%;
    z-index: 9;
}

#content .backgroundImage h1 {
	font-size: 250%;
    color: #fff;
    font-style: italic;
    font-weight: bold;
    text-shadow: 0 0 25px rgba(0,0,0,0.5);
}

#content {
	font-size: 110%;
}

#content div.ext_FormBuilder textarea,
#content div.ext_FormBuilder input,
#content input[type=text] {
	border: 2px solid var(--inputBorderColor);
    background-color: var(--inputBackgroundColor);
    color: var(--inputTextColor);
    font-size: 95%;
    font-weight: normal;
    border-radius: 0;
}

#content div.ext_FormBuilder input[type=submit] {
	background-color:  var(--inputButtonBackgroundColor);
    color: var(--inputButtonColor);
    border: none;
    color: #fff;
    padding: 15px 25px;
    font-size: 110%;
    font-style: italic;
    font-weight: normal;
}

#content div.ext_FormBuilder input[type=submit]:hover {
	cursor: pointer;
    background-color: var(--inputButtonBackgroundColor);
}

#content .feeld {
    margin-left: 0;
    padding-left: 0;
}


#content #FormBuilder3 {
	width: 50%;
    float: left;
}

#content #FormBuilder4 {
    clear: both;
}

#content .ext_Events .eventList {
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
  align-items: stretch;
  align-content: stretch;
}

#content .ext_Events .event {
    
}

#header {
    text-align: right;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 75px;
    z-index: 3;
    background-color:  var(--headerBackgroundColor);
    color:  var(--headerColor);
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    
	-webkit-transition-property: top;
	-moz-transition-property: top;
	 -ms-transition-property: top;
	  -o-transition-property: top;
	     transition-property: top;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	 -ms-transition-duration: 0.25s;
	  -o-transition-duration: 0.25s;
	     transition-duration: 0.25s
	     
}

#header.up {
/*	top:-100px;*/
}

#header #menu {
	min-height: 75px;
    height: 75px;
}

#HeaderExtnsion {
	padding-top: 75px;
	position: relative;
	z-index: 1;
}

header .socials {
    position: absolute;
    top: -8px;
    right: 0;
}

header .socials img {
    width: 22px;
}

#Logo {
    position: absolute;
    display: block;
	top: 10px;
}

#Logo img {
    height: 60px;
}

/* **************
 * Menü Animation
 * START
 * **************/
#MenuButton {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    margin: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    top: 19px;
}

#MenuButton {
	z-index:20;
}

#MenuButton .line {
	position: relative;
	height: 4px;
	width: 80%;
	right: -10%;
	border-radius: 2px;
	background-color: var(--aColor);
	-webkit-transition-property: all;
	-moz-transition-property: all;
	 -ms-transition-property: all;
	  -o-transition-property: all;
	     transition-property: all;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	 -ms-transition-duration: 0.25s;
	  -o-transition-duration: 0.25s;
	     transition-duration: 0.25s
}

#MenuButton .line.top {
	top:12px;
}
#MenuButton .line.middle {
	top:19px;
}
#MenuButton .line.bottom {
	top:26px;
}


#MenuButton:hover .line.top {
	width: 78%;
	right: -12%;
}
#MenuButton:hover .line.middle {
	width:65%;
	right: -25%;
}
#MenuButton:hover .line.bottom {
	width:70%;
	right: -20%;
}

#MenuButton.close .line.bottom,
#MenuButton.close .line.middle,
#MenuButton.close .line.top {
	transform: rotate(45deg);
	top: 22px;
	width: 90%;
	left: 3px;
}
#MenuButton.close .line.middle {
	top: 18px;
}
#MenuButton.close .line.bottom {
	transform: rotate(-45deg);
	top: 15px;
}

nav.second {
	opacity:0.2;
	overflow:hidden;
	
    height: 100vh;
    display: table;
    position: fixed;
    top: 0;
    right: 0;
    width: 0vw;
    
    overflow: hidden;
    z-index: 10;
    background-color: var(--SeconNavBackgroundColor);
	
	-webkit-transition-property: all;
	-moz-transition-property: all;
	 -ms-transition-property: all;
	  -o-transition-property: all;
	     transition-property: all;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	 -ms-transition-duration: 0.25s;
	  -o-transition-duration: 0.25s;
	     transition-duration: 0.4s
}

nav.second .TableCell {
    display: none;
}

nav.second.open {
	
	width: 100vw;
	opacity: 1;
}

nav.second.open .TableCell {
    display: table-cell;
}

footer ul.menu li a,
nav ul.menu li a  {
    letter-spacing: normal;
}

footer ul.menu li.active a,
nav ul.menu li.active a  {
    font-weight: bold;
    letter-spacing: normal;
}

/* nav.second ul.menu { */
nav.second .TableCell {
    vertical-align: middle;
    text-align: center;
}

nav.second .TableCell > div:first-child {
	display: none;
}

nav.second ul.menu li {
    display: block;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
}

nav.second ul.menu li a {
    font-size: 23px;
    max-width: 600px;
    margin: 0 auto;
	padding: 8px;
}

#menu nav.second ul.menu li a:hover,
#menu nav.second ul.menu li.active a {
	background-color:var(--aColor);
	color:var(--SeconNavColor);
}

/* **************
 * Menü Animation
 * ENDE
 * **************/
nav.main {
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    top: 0;
}

#menu ul.menu li {
    padding: 0px;
}

#menu ul.menu li a {
    color: var(--aColor);
}

#menu ul.menu li.expand > a,
#menu ul.menu li a:hover,
#menu ul.menu li:hover > a,
#menu ul.menu li.active > a {
    color: #e94f1d;
}

#content {
    padding-bottom: 250px;
    z-index: 1;
    position: relative;
    height: auto;
}

#content img.CMSimage,
#content img.image {
    margin: 0;
    padding: 0px;
    width: 100%;
}

#content .CMSimage {
    text-align: center;
}

#content .image .ImageWrapper {
    display: inline-block;
    position: relative;
}

#content .slick-track {
    margin-top: 15px;
    margin-bottom: 20px;
}

#content .slick-dots li button::before {
    font-size: 28px;
    width: 28px;
    height: 28px;
    content: '•';
}

.slick-prev::before, .slick-next::before {
    font-family: var(--fontFamily);
    font-size: 80px;
}

#content .slick-prev::before,
#content .slick-next::before {
    font-family: var(--fontFamily);
    font-size: 80px;
    top: -40px;
    position: relative;
}

#content .slick-prev::before {
    content: '‹';
    left: -20px;
}

#content .slick-next::before {
    content: '›';
    right: -20px;
}

#content .slick-slide {
    margin-right: 20px;
    margin-left: 20px;
}

#content .slick-slide:empty,
#content .slick-slide > div:empty,
#content .slick-slide > div > div:empty {
    display: none;
}

footer {
    background-color: #345066;
    transform: skew(0deg, -2deg);
}

footer:before {
    content: "";
    background-color: #b7b61f;
    transform: skew(0deg, 0deg);
    position: relative;
    display: block;
    top: -20px;
    height: 20px;
    z-index: 1;
}

footer:after {
    content: "";
    background-color: rgba(52,80,102,0.5);
    transform: skew(0deg, 3deg);
    position: absolute;
    display: block;
    top: -4px;
    height: 20px;
    z-index: 2;
    height: 100px;
    right: 0;
    bottom: 0;
    left: 0;
}

footer .footer {
    background-color: var(--footerBackgroundColor);
    z-index: 3
}

footer .footer .footerText {
    transform: skew(0deg, 2deg);
}

footer .socials {
    text-align: right;
}

footer .drunter {
    /*position: absolute;*/
    /*bottom: -27px;*/
    /*top: 30px;*/
    /*left: 0;*/
    /*right: 0;*/
    /*background-color: var(--footerBackgroundColor);*/
    /*transform: skew(0deg, 2deg);*/
    position: absolute;
    bottom: -53px;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #345066;
    transform: skew(0deg, 0deg);
}

footer ul.menu li.active a,
footer ul.menu li a:hover,
footer a.active,
footer a:hover {
    color: #b7b61f;
}

#FooterWrapper {
	background-color: var(--footerBackgroundColor);
	color:var(--footerColor);
	position: absolute;
	width: 100%;
	bottom: 0;
	height: 166px;
	z-index: 2;
	font-weight: normal;
}

#footer {
	text-align: left;
	padding-top: 25px;
	padding-bottom: 25px;
}

#footer > div,
#footer > img {
	display: inline-block;
	width: 33%;
}

#footer a {
	color: #fff;
}

#footer b {
	font-weight: bold;
}

#footer img {
	height: 80px;
	margin-right: 50px;
}

#footer > div.Adress {
}

.ext_SlideJS .info {
    max-width: 33%;
}

.boxSlideDown{
    min-height: 440px;
    max-height: 440px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: max-height 1s ease-out;
}

.boxSlideDown:after {
    position: absolute;
    content: "+";
    bottom: 0px;
    right: 0;
    left: 0;
    font-size: 200%;
    background-color: #345066;
    text-align: right;
    padding-right: 18px;
}

.boxSlideDown:hover{
    max-height: 1000px;
    transition: max-height 1s ease-in;
    /*transition: max-height 2s;*/
}

.boxSlideDown:hover:after{
    content: "-";
}


#content .boxSlideDown img.CMSimage {
    margin-top: -25px;
    margin-left: -25px;
    margin-right: -25px;
    min-width: calc(100% + 50px);
}
/* ****************
 * Browser Theme
 * ****************/
@media (prefers-color-scheme: dark) { }
@media (prefers-color-scheme: light) { }

@media only screen and (max-width: 1024px) {
    .ext_SlideJS .info {
        top: 20%;
        max-width: 33%;
    }
}

@media only screen and (max-width: 900px) {
	#header .menu-icon {
		display: none;
	}
	
    .projektNetzBgLeft {
        background-size: contain;
        background-position: -20% center;
    }
    
	nav.second .TableCell > div:first-child {
		display: block;
		position: relative;
		height: auto;
		overflow: visible;
		width: 100%;
	}
	
	#header .TableCell ul.menu {
		display: block !important;
		position: relative;
		height: auto;
		width: 100%;
		top: auto;
		overflow: visible;
		opacity: 1;
	}
    
    
    #header.second #Logo img {
        height: 37px;
    }
    
    #header.second #MenuButton {
        top: 5px;
    }
    
    footer ul.menu li {
        padding: 0;
    }
    
    #footer > div:first-child {
        width: 25%;
    }
    
    #footer > div:last-child {
        width: 40%;
    }
    
    #footer img {
        height: 60px;
    }
    .width33 {
        width:48%;
        margin-left:1%;
        margin-right: 1%;
        float:none;
    }
}

@media only screen and (max-width: 700px) {
	.img { max-width: 100%; }
	.col_4 {  margin: 1% 0 1% 0%; }
	.col_1_4, .col_2_4, .col_3_4, .col_4_4 { width: 100%; }
	.backgroundImage { background-size:cover; background-position:center; background-attachment: inherit;}
	.width50 { width:95%; float:none; margin-right:1.8%;}
	.width25 { width:95%; margin-left:1.8%; float:none; text-align: center}
	.width33 { width:95%; margin-left:1.8%; float:none;}
	.width75 { width:95%; margin-left:1.8%; float:none;}
	
    
    .backgroundImage .CMStext,
    .backgroundImage .text {
        text-align: center;
    }
    
    header .socials {
        top: -2px;
        right: 5px;
    }
    
    #header.second #MenuButton {
        right: 0;
        top: 19px;
    }
    
    .projektNetzBgLeft {
        background-size: contain;
        background-position: -150% center;
    }
    
	#menuWrapper ul.menu {
		display: none;
	}
    
    .ext_SlideJS .info {
        top: 10%;
        max-width: 80%;
    }
    
    #Logo {
        left: 14px;
        top: 5px;
    }
    
    #header.second #Logo img {
        height: 60px;
    }
    
	#menuWrapper ul.menu {
		display: none;
	}
    
    #content {
        padding-bottom: 450px;
    }
    
    #FooterWrapper {
        height: 422px;
    }
    
    #footer > div {
        display: block;
        text-align: center;
        width: 75%;
        margin: 10px auto;
    }
}
