/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v18-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/open-sans-v18-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('fonts/open-sans-v18-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v18-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v18-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v18-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v18-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v18-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('fonts/open-sans-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v18-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v18-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v18-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v18-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}






* {
margin: 0;
padding: 0;
/*-webkit-appearance: none;
-moz-appearance: none;*/
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
     box-sizing: border-box;
}

body {
     height: 100%;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 600;
}

a img {
border: none;
}

img {
max-width: 100%;
	height: auto;
}


#bg {
	padding: 35px;
	width: 100%;
	height: 100vh;
	position: relative;
	background: url("bilder/michael-niebler.jpg") no-repeat top center;
	background-size: cover;
	
	 display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
	align-content: stretch;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
	
}

#adress {
	background-color: rgba(255,255,255,0.75);
	padding: 25px;
	
	-webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

h1 {
	font-size: 1.8em;
	font-weight: 700;
	color: #3c73a8;
	text-transform: uppercase;
	margin-bottom: 30px;
}

p {
	line-height: 30px;
}

a {
	color: #3c73a8;
	text-decoration: none;
	-moz-transition: color 0.5s;
-ms-transition: color 0.5s;
-o-transition: color 0.5s;
-webkit-transition: color 0.5s;
transition: color 0.5s;
}

a:hover {
	color: #4D4D4D;
}


/*=================================
            Responsive
=================================*/

@media (max-width: 480px) {
	
	body {
		font-size: 14px;
	}
	
	h1 {
		margin-bottom: 15px;
	}
	
	p {
		line-height: 24px;
	}
	
	#bg {
		padding: 0;
	}
	
	#adress {
		padding: 20px;
		width: 100%;
	}

}

@media (max-height: 800px) and (orientation: portrait) {
	
	#bg {
		background-image: url("bilder/niebler_h800.jpg")
	}

}

@media (max-width: 640px) and (orientation: landscape) {
	
	#bg {
		background-image: url("bilder/niebler_w640.jpg")
	}

}

