body {
	width: 100%;
	height: 100%;
	margin: 0;
    padding: 0;
	transition: .5s;
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #323232;
}

.header {
	background-color: #1eabe3;
	width: 100%;
	height: 90px;
	position: fixed;
	top: 0;
	font-family: arial;
	color: white;
	font-weight: bold;
	box-shadow: 0 0 5px black;
}

.header img {
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
}

.icon {
    width: 40px;
	height: 30px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translate(0, -50%);
}

.hamburger {
	width: 37px;
	height: 4px;
	background: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .5s;
	box-shadow: 0 2px 8px rgba(0,0,0,2);
}

.hamburger:before,
.hamburger:after {
	content: '';
	position: absolute;
	width: 37px;
	height: 4px;
	background: white;
	transition: .5s;
	box-shadow: 0 2px 8px rgba(0,0,0,2);
}

.icon.active .hamburger {
	background: rgba(0,0,0,0);
	box-shadow: 0 2px 10px rgba(0,0,0,0);
}

.icon.active .hamburger:before {
	transform: rotate(45deg);
	top: 0;
}

.icon.active .hamburger:after {
	top: 0;
	transform: rotate(135deg);
}

.hamburger:before {
	top: -10px;
}

.hamburger:after {
	top: 10px;
}

.nav.active {
    left: 0;
}

.nav {
	background-color: #222222;
	display: block;
	height: 100%;
	float: left;
	font-family: Raleway, sans-serif;
	margin-left: -40px;
	overflow: auto;
	top: 80px;
	left: -300px;
	position: fixed;
	transition: 0.5s;
}

.nav i {
	padding-right: 10px;
}

.aktuell {
	background: #444444;
}

.aktuell i {
	color: #4f72c9;
}

nav ul li {
	list-style-type: none;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 40px;
	padding-right: 70px;
}

nav ul li:hover {
	background: #2e2e2e;
	cursor: pointer;
}

.aktuell:hover {
	background: #444444;
}

ul li a {
	text-decoration: none;
	color: white;
}

.socialmedia {
	border-top: solid #303030 1px;
}

.weiteres {
	border-top: solid #303030 1px;
}

.navbild {
	position: absolute;
	right: 80px;
	bottom: 100px;
}

.section {
	position: relative;
	font-family: 'Roboto', sans-serif;
	max-width: 100%;
	color: white;
	padding-top: 80px;
	padding-left: 30px;
	padding-right: 30px;
	float: center;
	left: 0;
	transition: 0.5s;
}

.section p {
	padding-bottom: 30px;
}

.section p a {
	color: #34a1eb;
	text-decoration: none;
}

.sectiontext {
	text-align: justify;
	font-size: 20pt;
}

.container {
	position: relative;
    top: -20px;
	left: 150px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.section iframe {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
}

.section.active {
	left: 200px;
}

.pageImage {
	display: block;
	width: 90%;
	margin: 0 auto;
	padding-bottom: 20px;
}

.titel {
	text-align: center;
}

.titel p {
	font-family: 'Raleway', sans-serif;
	font-size: 40pt;
}

.untertitel p {
	font-size: 35pt;
	font-family: 'Roboto', sans-serif;
	text-align: center;
}

.section ul li {
	list-style: none;
	padding: 5px;
	border: solid white 1px;
}

.section ul {
	position: relative;
	margin: 0 auto;
	padding-bottom: 30px;
	transform: translate(-5%, 0);
}

.section ul li a {
	font-size: 20pt;
}

.support {
	display: block;
	position: relative;
	left: 50%;
	width: 700px;
	height: 210px;
	transform: translate(-50%, 0);
	margin-bottom: 100px;
	border: solid 3px white;
}

.support img {
	position: relative;
	display: block;
	left: 50%;
	transform: translate(-50%, 0);
	margin-bottom: 100px;
	width: 700px;
	height: 210px;
	top: 0;
}

iframe {
	margin-bottom: 40px;
	box-shadow: 0 0 20px rgba(0,0,0,2);
}

.rang {
	text-align: center;
	font-size: 15pt;
	font-weight: bold;
}

.downloader {
	text-decoration: none;
	display: block;
	margin: auto;
	margin-bottom: 50px;
	margin-top: -30px;
	padding: 6px;
	width: 300px;
	font-size: 30pt;
	text-decoration: none;
	background: black;
	color: white;
	border: 5px solid white;
	text-align: center;
}

::-webkit-scrollbar {
	width: 0;
}


@media (max-width:1060px) {
	
	.back {
		top: 200px;
	}

	iframe {
		width: 660px;
		height: 372px;
	}
	
	.section img {
		top: 200px;
	}
	
	.img {
		top: 200px;
	}
	
	.header {
		height: 120px;
	}
	
	.header img {
		height: 100px;
	}
	
	.hamburger {
	    width: 74px;
	    height: 8px;
    }

    .hamburger:before,
    .hamburger:after {
	    width: 74px;
	    height: 8px;
    }
	
	.hamburger:before {
	    top: -20px;
    }

    .hamburger:after {
    	top: 20px;
    }
	
	.icon {
		left: 40px;
	}
	
	.nav {
		font-size: 30pt;
		width: 100%;
		padding: 0;
		margin: 0;
		height: auto;
		top: -1000px;
		border-bottom: solid 5px white;
		left: 0;
	}
	
	nav ul {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	
	.nav.active {
		top: 120px;
	}
	
	.section.active {
	    left: 0px;
	}
	
	.support {
    	width: 560px;
    	height: 168px;
    	border: solid 3px white;
    }

    .support img {
    	width: 560px;
    	height: 168px;
		top: 0px;
    }
	
	.section {
		transition: 0s;
		top: 20px;
	}
	
	.navbild {
		width: 0;
		height: 0;
	}
	
	.downloader {
		font-size: 50pt;
		width: 500px;
	}
	
}

@media (max-width:700px) {
	
	iframe {
		width: 460px;
		height: 259px;
	}

	.img {
		width: 100px;
		height: 33px;
	}
	
	.nav {
		font-size: 20pt;
	}
	
	nav ul li {
	    padding-top: 8px;
	    padding-bottom: 8px;
	    padding-left: 20px;
	    padding-right: 35px;
	}
	
	.support {
    	width: 373px;
    	height: 112px;
    	border: solid 3px white;
    }

    .support img {
    	width: 373px;
    	height: 112px;
	}
	
	.downloader {
		font-size: 50pt;
		width: 400px;
	}
}

@media (max-width:520px) {
	
	.nav {
		top: -400px;
	}

	iframe {
		width: 400px;
		height: 225px;
	}
	
	.section img {
		top: 50px;
	}
	
	.support img {
    	top: 0;
	}
	
	.downloader {
		font-size: 30pt;
		width: 250px;
	}
}