/* Schriften
-----------------------------------------------------------*/
/* Schriften
-----------------------------------------------------------*/
@font-face {
	font-family: 'NettoWeb-Light';
	src: url('NettoWeb-Light.eot'); /* IE9 Compat Modes */
	src: url('NettoWeb-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	     url('NettoWeb-Light.woff') format('woff'); /* Modern Browsers */
		font-weight: normal;
		font-style: normal;
}

@font-face {
	font-family: 'NettoWeb-Bold';
	src: url('NettoWeb-Bold.eot'); /* IE9 Compat Modes */
	src: url('NettoWeb-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	     url('NettoWeb-Bold.woff') format('woff'); /* Modern Browsers */
		font-weight: normal;
		font-style: normal;
}


/* Grundgerüst
-----------------------------------------------------------*/
html {
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

}

body {
	font-family: "NettoWeb-Bold", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #fff;
	font-size: 24px;
	background-image: url(../_img/bg_1.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

body.body-1 {
	background-image: url(../_img/bg_1.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

body.body-2 {
	background-image: url(../_img/bg_2.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

body.body-3 {
	background-image: url(../_img/bg_3.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

body.body-4 {
	background-image: url(../_img/bg_4.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

.main {
	width: 38.2%;
	position: absolute;
	top: 0;
	bottom: 0;
	background: url(../_img/farbflaeche.png) no-repeat;
	background-size: 100% 100%;
}



@supports (-webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%)) or (clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%)) {

.main {
	-webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
	background: rgba(167, 145, 80, 0.8);
}
  
}




.innerContent {
	width: 57.5%;
	margin: 7.5%;
	position: absolute;
	top: 0;
	bottom: 0;
}

.content {
	position: absolute;
	top: 45%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.adresse {
	position: absolute;
	bottom: 0;
}

h1 {
	font-family: "NettoWeb-Bold";
}


/* Allgemeine Formatierungen
-----------------------------------------------------------*/
img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	line-height: 1.5em;
	padding: 0 0 1.5em 0;
}

p:last-child {
	padding-bottom: 0;
}

/* Struktur
-----------------------------------------------------------*/

/* Header
-----------------------------------------------------------*/
.logo {
	display: block;
	height: 100px;
}


/* Spezifische Formatierungen
-----------------------------------------------------------*/


/* Main Navigation
-----------------------------------------------------------*/




/*-----------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
MediaQueries
-------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------*/

@media screen and (max-height: 700px) {

body {
	font-size: 3vh;
}

} /* Ende 700 */

@media screen and (max-width: 1100px) {

body {
	font-size: 2vw;
}

} /* Ende 1100 */



@media screen and (max-width: 750px) {

body {
	font-size: 16px;
}

.logo {
	width: 90%;
	max-width: 250px;
	margin-bottom: 1em;
/* 	min-height: 110px; */
}

.main {
	width: auto;
	padding: 1em;
	position: static;
}

.innerContent {
	position: static;
	width: auto;
	margin: 0;
	padding: 1em 2em 1em 1em;
}

.content {
	position: static;
}

.adresse {
	position: static;
}

} /* Ende 750 */








/* Clearfix
-----------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
 }