/* neue CSS zur neuen INDEX mit responsive NAVI */

 /* Add a black background color to the top navigation */

html, body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background-color: #f5f5f5;
} 
 
 
/*######################################
		NAVIGATION
######################################*/
.topnav {
	background-color: #4B9DD7;
	overflow: hidden;
	width: 100%;
	z-index: 1000;
	opacity: 0.9;
	font-family: 'Open Sans', sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: flex-end;
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
	position: fixed;
	/* KEINE HEIGHT ANGABE -> zersört responsive navi bar */
}
	.topnav a {
		color: #EAEDED;
		text-decoration: none;
		padding: 2em;
		display: block;
		font-size: 1em;
		background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #4B9DD7), color-stop(50%, #EAEDED));
		background-image: -webkit-linear-gradient(left, #4B9DD7 50%, #EAEDED 50%);
		background-image: -o-linear-gradient(left, #4B9DD7 50%, #EAEDED 50%);
		background-image: linear-gradient(to right, #4B9DD7 50%, #EAEDED 50%);	/* beide vorhandenen Farben auf 50% gesetzt */
		background-size: 201% 100%; /* damit sind beide Farbgrößen verdoppelt */
		background-repeat: no-repeat;
		background-position: bottom left;
		-o-transition: all 0.6s ease-out;
		transition: all 0.6s ease-out;
		-webkit-transition: all 0.6s ease-out;
		-moz-transition: all 0.6s ease-out;
	}
		.topnav a:hover,
		.topnav a:focus{
			color: #96A6A9;
			-webkit-box-shadow: 3px 3px 9px #999 inset;
			        box-shadow: 3px 3px 9px #999 inset;
			-o-transition: all 0.5s ease-out;
			transition: all 0.5s ease-out;
			-webkit-transition: all 0.5s ease-out;
			-moz-transition: all 0.5s ease-out;
			background-position: bottom right;
		}
		.topnav .active {
		  color: #2f3637;
		  background-position: bottom right;
		  
		}
.topnav .icon {
  display: none;
} 
	.topnav .icon:active{
		-webkit-transition: all;
		-o-transition: all;
		transition: all;
		background-color: transparent;
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		border-radius: 50%;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}

/*######################################
			FOOTER
######################################*/
#footer{
	width: 100%;
	height: 13em;
	background-color: #A2B0B5;
	position: relative;
	color: #1A323B;
	display: block;
	opacity: 0.9;
	margin: auto auto 0 auto !important;
}
	
#content_footer{
	padding-top: 1em;
}

.p_foot{
	font-size: 0.9em;
	text-align: center;
	font-family: 'Oxygen', sans-serif !important;
	font-variant: small-caps;
	letter-spacing: 1px;
}
	
.copyright{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 2em auto auto auto;
	font-size: 0.8em !important;
}	
	
.h3_foot{
	margin: 3em auto auto auto;
}
.h3_foot_b{
	margin: 1em auto auto auto;
}
	
.a_foot{
	text-decoration: none;
	color: inherit;
}	
	.a_foot:hover,
	focus{
		color: #666;
	}
	
	
/*#########################################
		MEDIA QUERIES
#########################################*/
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		display: block;
		float: none;
		text-align: left;
		opacity: 0.95;
	}
	.topnav.responsive a {
		display: block;
		text-align: left;
	}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
		flexbox: none;
	}
}

@media only screen and (min-width:300px){
	.svg_img_main{
		width: 19em;
		height: 10em;
	}
	#content-text{
		width: 90%;
	}
	.text-box{
		font-size: 1.1em;
		line-height: 1.2;
	}
	.content_h{
		font-size: 2.3em;
	}
	#content_footer{
		padding-top: 1px;
	}
	.p_foot{
		max-width: 90%;
	}
}

@media only screen and (min-width:500px){
	.svg_img_main{
		width: 40em;
		height: 20em;
	}
	#content-text{
		width: 65%;
	}
	.text-box{
		font-size: 1.2em;
		line-height: 1.5;
	}
	.content_h{
		font-size: 2.5em;
	}
	#content_footer{
		padding-top: 1em;
	}
	.p_foot{
		max-width: 60%;
	}
}

@media only screen and (min-width:860px){
	.svg_img_main{
		width: 70em;
		height: 40em;
	}
	#content-text{
		width: 55%;
	}
	.text-box{
		font-size: 1.7em;
		line-height: 1.6;
	}
	.content_h{
		font-size: 3em;
	}
	#content_footer{
		padding-top: 1em;
	}
	.p_foot{
		max-width: 50%;
	}
}