@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

@font-face {
	font-family: 'MetaPlus';
	font-style: normal;
	font-weight: normal;
	src: local('MetaPlus'), url('MetaPlus.woff') format('woff');
}


@font-face {
	font-family: 'MetaPlus-BoldItalic';
	font-style: normal;
	font-weight: normal;
	src: local('MetaPlus-BoldItalic'), url('MetaPlusBoldItalic.woff') format('woff');
}

*{
	box-sizing: border-box;
}

html, body{
	padding: 0;
	margin: 0;
	font-family: 'MetaPlus', sans-serif;
}

section.full{
	background-image: url(Fahnen.jpg);
	background-size: cover;
	background-position: bottom;
	width: 100%;
	height: calc(100vh - 60px);
	position: relative;
}

section.full .logo{
	width: 350px;
	max-width: 50%;
	position: absolute;
	top: 40px;
	right: 40px;
}

section.full h1{
	/*background-color: rgba(117, 155, 210, 0.34);*/
	font-size: 36px;
	position: absolute;
	top: 50%;
	margin: 0;
	transform: translateY(-50%);
	left: 0px;
	color: #fff;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.33); 
	padding: 20px 20px 20px 40px;
}

section.full span.contact_us{
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	text-align: left;
	width: 100%;
	max-width: 1080px;
	color: #fff;
	padding: 0 20px;
}

section.full .downloads{
	position: absolute;
	right: 60px;
	bottom: 60px;
	padding: 20px;
	color: #fff;
}

section.full .downloads h2{
	margin: 0;
	padding: 10px;
	text-align: center;
	border-bottom: 2px solid #fff;
}

section.full .downloads .files{
	padding: 0 10px;
}

section.full .downloads .files span{
	width: 100%;
	margin: 12px 0;
	font-size: 18px;
	line-height: 1em;
	display: block;
	padding-right: 40px;
	position: relative;
}

section.full .downloads .files span:before{
	transition: transform 0.3s;
	content: '';
	width: 30%;
	height: 1px;
	position: absolute;
	bottom: -5px;
	background-color: #fff;
	transform: scaleX(0);
}

section.full .downloads .files a{
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

section.full .downloads .files a:hover span:before{
	transform: scaleX(1);
}

section.full .downloads .files span:after{
	content: '';
	background-image: url(downloads.svg);
	height: 1em;
	width: 1em;
	position: absolute;
	background-size: cover;
	right: 0;
}

footer{
	position: relative;
	height: 60px;
	background-color: #eee;
	color: #404040;
}

footer .flex_wrap{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	top: 50%;
	left: 50%;
	width: 100%;
	padding: 0 20px;
	transform: translate(-50%, -50%);
	flex-wrap: wrap;
	max-width: 1100px;
}

footer .flex_wrap span{
	margin: 0 10px;
	font-weight: bold;
}

footer .flex_wrap span a{
	text-decoration: none;
	color: #3285e8;
}

@media only screen and (max-width: 1100px) {
	section.full h1{
		font-size: 32px;
	}

	section.full{
		height: calc(100vh - 80px);
	}

	footer{
		height: 80px;
	}

	footer .flex_wrap{
		justify-content: center;
	}

	footer .flex_wrap span{
		margin: 5px 10px;
	}
}

@media only screen and (max-width: 768px) {
	section.full h1{
		font-size: 22px;
		top: 40%;
	}

	section.full span.contact_us{
	font-size: 16px;
	}

	footer{
		height: 120px;
	}

	section.full .downloads{
		left: 50%;
		right: inherit;
		bottom: 80px;
		transform: translateX(-50%);
	}

	section.full{
		height: 100vh;
	}

	section.full .downloads h2{
		font-size: 18px;
	}

	section.full .downloads .files span{
		font-size: 16px;
	}
	
	footer .flex_wrap span{
		font-size: 16px;
	}
}

@media all and (max-width: 768px) and (orientation : landscape) {
    section.full{
		height: 200vh;
	}
}