* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/background.png);
}

/*Beginn Kopf*/

header {
	position: fixed;
	z-index: 3;
	width: 100%;
}

/*Überschrift*/

.kopfmain {
	width: 100%;
	height:60px;
	background-color:rgba(0,0,0,0.65);
}

.headliner {
	font-family: 'Oswald', sans-serif;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	font-size: 40px;
	letter-spacing: 3px;
	color:rgba(254,204,0,1.00);
	padding-top: 3px;
	font-weight: 400;
	-ms-hyphens: none; /*sogenannter Präfix, symbolisiert den Entwicklungszustand einer Eigenschaft im Browser, bei Überschrift ausgeschaltet*/ 
	-webkit-hyphens:none; /*Chrome und Safari, bei Überschrift ausgeschaltet*/
	-moz-hyphens: none; /*Mozilla, bei Überschrift ausgeschaltet*/
	hyphens: none; /*ohne Präfixe die Eigenschaft als letzte notieren, bei Überschrift ausgeschaltet*/
}

/*Navigation*/

nav {
	width: 100%;
}

#cssmenu {
	font-family: 'Indie Flower', cursive;
	background-color: rgba(0,0,0,0.65);
}

#cssmenu > ul > li > a {
	padding: 17px;
	font-size: 18px;
	letter-spacing: 3px;
	text-decoration: none;
	color: rgba(255,255,255,1.00);
	font-weight: 300;
	text-transform: none;
}

#cssmenu ul{
	width:50rem;
	margin: auto;
}

#cssmenu ul li:hover {
	background-color: rgba(0,203,255,1);
}

/*Mainbereich*/

main.mainmuster {
	position: relative;
	max-width:77.5rem;
	height: 110rem;
	z-index: 2;
	margin: auto;
	padding-bottom: 80px;
	background: rgba(0,106,167,0.50);
	border-left: 2px solid rgba(255,255,255,1.00);
	border-right: 2px solid rgba(255,255,255,1.00);
}

img, form {
	max-width: 100%;	/*ermöglicht das kleiner skalieren aller Medien*/
	height: auto;
	}

article {
	width:50%;
	height: auto;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 111px;
	color: rgba(255,255,255,1.00);
	float:left;
}

article.kontakt {
	width:100%;
	height: auto;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 30px;
	margin-top: 111px;
}

h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 10px;
	padding-bottom:5px;
	color:rgba(254,204,0,1.00);	
}

h1.fotogalerie {
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1px;
	width:100%;
	padding-top: 50px;
	padding-bottom:5px;
	padding-left: 5%;
	padding-right: 5%;
	margin: auto;
	color:rgba(254,204,0,1.00);	
	clear: both;
}

hr {
	margin-bottom:20px;
	border: 1px solid rgba(254,204,0,1.00);
}

hr.fotostrich {
	width:90%;
	padding-left: 5%;
	padding-right: 5%;
	margin-bottom:20px;
	margin: auto;
	border: 1px solid rgba(254,204,0,1.00);
}


p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	-ms-hyphens: auto; /*sogenannter Präfix, symbolisiert den Entwicklungszustand einer Eigenschaft im Browser*/ 
	-webkit-hyphens:auto; /*Chrome und Safari*/
	-moz-hyphens: auto; /*Mozilla*/
	hyphens: auto; /*ohne Präfixe die Eigenschaft als letzte notieren*/
}

aside {
	position: relative;
	width: 100%;
	height: 100%;
	top: 111px;
	z-index: -1;
}

section img{
	width: 50%;
	padding-right: 10%;
	padding-top: 30px;
	padding-bottom: 50px;
	margin-top: 111px;
}

/* Kontaktformular bei "Kontakt" */

form {
	width:100%;
	margin-top:20px;
	float:left;
}

form div {
	margin-bottom:20px;
}


label {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight:600;
	letter-spacing: 1px;
	padding-bottom:5px;
	width:220px;
	display:inline-block;
	text-align:right;
	color:rgba(254,204,0,1.00);	
}

input  {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight:400;
	letter-spacing: 1px;
	padding-left:5px;
	width:200px;
	height:25px;
	margin-left:20px;
	color:rgba(2,149,255,1.00);
	background-color: white;
}

select{
	width:205px;
	margin-left:240px;
}

textarea {
	height:200px;
	width:200px;
	margin-left:240px;
	background-color: white;
}

label.nachrichtenfeld {
	display:block;
}

input.button{
	width:200px;
	height:30px;
	background-color:#3a3456;
	color:white;
	border-color:white;
}

input, select, textarea{
	border:none;
	border-bottom:1px solid silver;
	box-shadow:2px 2px 2px rgba(0,0,0,0.1);	/* Box-Schatten */
	border-radius:3px;	/* runde Eccken */
}

input:hover, input:focus,
select:hover, select:focus,
textarea:hover, textarea:focus{
	outline:none;
	background-color:#ffc;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}

label.frau, label.herr {
	width:25px;
}

input#frau, input#herr, input#kontakt {
	width:15px;
	box-shadow:none;
}

input[type="submit"]:hover, input[type="reset"]:hover{
	outline:none;
	background-color:#ffc;
	color:#3a3456;
	font-weight:bold;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
}

/*Danke Seite Kontaktformular*/

.danke {
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	text-align: center;
}

/*Slider*/
div.ism-slider {
	top:50px;
}

#my-slider {
    width: 90%;
	margin: auto;
}

#my-slider-ism-badge {
    width: 90%;
}


/*Impressum*/
.impressum {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: left;
}

h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 10px;
	padding-bottom:5px;
	color: rgba(254,204,0,1.00);
	-ms-hyphens: auto; /*sogenannter Präfix, symbolisiert den Entwicklungszustand einer Eigenschaft im Browser*/ 
	-webkit-hyphens:auto; /*Chrome und Safari*/
	-moz-hyphens: auto; /*Mozilla*/
	hyphens: auto; /*ohne Präfixe die Eigenschaft als letzte notieren*/
}

.impressum a {
	font-weight:600;
	color: rgba(0,19,235,1.00);
}

.impressum a:hover {
	color: rgba(254,204,0,1.00);
}

main.mainimpressum {
	position: relative;
	width:77.5rem;
	height: 300rem;
	z-index: 2;
	margin: auto;
	padding-bottom: 80px;
	background: rgba(0,106,167,0.50);
	border-left: 2px solid rgba(255,255,255,1.00);
	border-right: 2px solid rgba(255,255,255,1.00);
}

@media all and (max-width: 1600px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	main.mainemuster {
		width:80%;
		margin-left:10%;
		margin-right:10%;
		}
}


@media all and (max-width: 1050px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	main.mainmuster, main.mainimpressum {
		width:100%;
		margin-left:0%;
		margin-right:0%;
		}
}


@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

	#cssmenu #menu-button {
		display: block;
		padding: 17px;
		color:rgba(255,255,255,1.00);
		cursor: pointer;
		font-size: 18px;
		text-transform: none;
		font-weight: 300;
	}
	
	#menu-button:hover {
    	background-color: rgba(0,203,255,1);
	}
	
	.headliner {
		font-size: 34px;
		padding-top: 15px;
	}
	
	section img{
		width:100%;
		padding-right: 5%;
		padding-left: 5%;
		clear:both;
		margin-top: 0px;
	}
	
	article {
		width:100%;
	}
	
	div.ism-slider {
		border: none;
}
	
	#my-slider {
   		width: 100%;
}
	
}


@media all and (max-width: 700px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	.headliner {
		font-size: 28px;
		padding-top:17.5px;
	}
	
		

	
}


@media all and (max-width: 600px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	.headliner {
		font-size: 24px;
		padding-top:20px;
	}
	

	
}


@media all and (max-width: 564px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	.headliner {
		font-size: 20px;
		padding-top:25px;
	}
	
	label {
		text-align:left;	
	}
	
	input, select, textarea  {
		margin-left:0px;
	}
	
	.anrede, .newsletter {
		width:200px;
	}

	#herr {
		margin-left:20px;
	}
	
	.button {
		margin-bottom: 20px;;
	}
}


@media all and (max-width: 456px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
	
	.headliner {
		font-size: 18px;
		padding-top: 10px;
	}
}
