/*-------------
 	Fonts
-------------*/

/* monda-regular - latin */
@font-face {
  font-family: 'Monda';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/monda-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/monda-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/monda-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/monda-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/monda-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/monda-v16-latin-regular.svg#Monda') format('svg'); /* Legacy iOS */
}

/* monda-700 - latin */
@font-face {
  font-family: 'Monda';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/monda-v16-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/monda-v16-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/monda-v16-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/monda-v16-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/monda-v16-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/monda-v16-latin-700.svg#Monda') format('svg'); /* Legacy iOS */
}

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
}


/*-------------
 	General
-------------*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font: normal 16px 'Roboto', sans-serif;
	color: #555;
}

ul, nav{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;

	opacity: 0.9;
}

a:hover{
	opacity: 1;
}

a.btn{
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #727374;
	font-weight: 700;
	text-align: center;
}

hr{
	width: 150px;
	height: 2px;
	background-color: #2196F3;
	border: 0;
	margin-bottom: 80px;
}

img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  max-width: 100%;
  height: auto;
  width: auto;
}

section{
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 80px 100px;
}

@media (max-width: 1000px){

	section{
		padding: 100px 50px;
	}

}

@media (max-width: 600px){

	section{
		padding: 80px 20px;
	}

}

section h3.title{
	color: #444;
	text-transform: none;
	font: normal 30px 'Monda', sans-serif;
	margin-bottom: 35px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	padding: 35px 120px 0;
}

header h2{
	font-family: 'Monda', sans-serif;
}

header nav{
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;	
}

header nav li:last-child{
	margin-right: 0;	
}



@media (max-width: 1000px){
	header{
		padding: 20px 50px;
	}
}


@media (max-width: 700px){
	header{
		flex-direction: column;		
	}

	header h2{
		margin-bottom: 15px;
	}
}



/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #eee;
	z-index: -1;
}

.hero .background-image:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #999;
	opacity: 0.2;
}

.dist60 {
	margin-top: 60px;
}

.hero h1{
	font: bold 60px 'Monda', sans-serif;
	margin-top: 30px;
	margin-bottom: 5px;
}

.hero h3{
	font: normal 28px 'Monda', sans-serif;
	margin-bottom: 40px;
}

.hero a.btn{
	padding: 20px 46px;
}

@media (max-width: 800px){

	.hero{
		min-height: 600px;
	}

	.hero h1{
		font-size: 38px;
	}

	.hero h3{
		font-size: 24px;
	}

	.hero a.btn{
		padding: 15px 40px;
	}

}



/*--------------------
 	Daten Section
---------------------*/

.data {
	background-color: transparent;
}

div.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.data .grid div{
	margin: 2%;
	padding: 20px;
	min-height: 286px;

  border: 0px solid #fff; /* 1 */
  	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
  -ms-interpolation-mode: bicubic; /* 2 */

	background-clip: padding-box;
	background-size: cover;
	background-position: center;
	
	box-shadow: 8px 8px 12px #333;
	
	position: relative;
}

.bottomright {
  position: absolute;
  bottom: 40px;
  right: 20px;
  font-size: 1.2em;
  line-height: 28px;
  text-align: right;
}

.bottomleft {
  position: absolute;
  width: 100%;
  bottom: 20px;
  right: 0px;
  padding: 5px 20px;
  font-size: 1.2em;
  line-height: 28px;
  text-align: left;
	background-color: #000;
	opacity: 0.7;
}

.data .grid div.small{
	flex-basis: 36%;
	background-color: #b68ebf;
}

.data .grid div.large{
	flex-basis: 56%;
	background-color: #6e1e80;
}

.data .grid div.full{
	flex-basis: 80%;
	background-color: #727374;
	color: #fff;
	text-align: left;
}

.data .grid div.full p{
	max-width: 100%;
	text-align: left;
	line-height: 1.5;
}

@media (max-width: 1000px){

	.data .grid div.small,
	.data .grid div.large, 
	.data .grid div.full{
		flex-basis: 100%;
	}
}

@media (max-width: 800px){

	.data h3.title{
		font-size: 24px;
	}

}


/*-------------
 	Footer
-------------*/

footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: #727374;
	padding: 60px 0;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;	
}

footer ul li:first-child{
	margin-left: 0;	
}

footer ul li:last-child{
	margin-right: 0;	
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer p a{
	color: #fff;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}
