body {
	padding: 0;
	margin: 0;

	font-family: 'Muli', Arial, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
}

body * {
	position: relative;
	box-sizing: border-box;
}

a {
	color: #ffffff;
	text-decoration: none;
	transition: all .5s;
}

h1,h2,h3 {
	font-family: 'Anton', Arial, sans-serif;
}

h1 {
	font-size: 25px;
	font-weight: 500;
}

#wrapper {
	background: url(./media/background.jpg) no-repeat top center transparent;
	background-attachment: fixed;
	background-size: cover;
	min-height: 100vh;
	height: auto;
	max-height: 1414px;
	
	padding: 0;
	margin: 0;
	
	overflow: hidden;
}

#logo {
	position: absolute;
	min-width: 20vw;
	max-width: 80vw;
	max-height: 180px;
	width: auto;
	display: block;
	top: 15vh;
	left: 10vw;
	bottom: calc(100vh - (180px + 10vh));
	z-index: 100;
}

#logo > a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: ' ';
	background: url(./media/logo.svg) no-repeat left center transparent;
}

#info {
	position: absolute;
	min-width: 30vw;
	max-width: 80vw;
	max-height: 50vh;
	min-height: 35vh;
	width: auto;
	display: block;
	top: calc(20vh + 180px);
	left: 10vw;
	z-index: 100;
}

#info > ul {
	list-style-type: none;
	padding: 0;
}

#info > ul > li {
	line-height: 40px;
	font-size: 16px;
	padding-left: 40px;
	cursor: default;
}

#info > ul > li.offset {
	padding-left: 38px;
	line-height: 20px;
}

#info > ul > li.offset:last-child {
	margin-bottom: 20px;
}

#info > ul > li > a {
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
	transition: color .5s;
}

#info > ul > li > a:hover {
	color: #d8292f;
}

#info > ul > li > i.icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	line-height: 40px;
	text-align: left;
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: center center;
	background-size: contain;
}

#info > ul > li > i.icon.address {
	background-image: url(./media/icons/marker.svg);
}

#info > ul > li > i.icon.phone {
	background-image: url(./media/icons/phone.svg);
}

#info > ul > li > i.icon.email {
	background-image: url(./media/icons/email.svg);
}

#info > ul > li > i.icon.www {
	background-image: url(./media/icons/www.svg);
}

#content {
	position: absolute;
	top: 10px;
	left: 30vw;
	width: 65vw;
	padding: 20px;
	background-color: rgba(0,0,0,.75);
	height: calc(100vh - 60px);
	overflow-y: auto;
}

#content h2 {
	margin-bottom: 0;
	font-family: 'Anton', Arial, sans-serif;
	font-weight: 500;
	font-size: 24px;
	text-transform: uppercase;
}

#content h4 {
	margin-bottom: 0;
	font-size: 18px;
	text-transform: uppercase;
}

#content a {
	color: #d8292f;
	text-decoration: none;
	transition: color .5s;
}

#content a:hover {
	color: #ffffff;
	text-decoration: none;
}

#links {
	position: fixed;
	bottom: 20px;
	right: 0;

	width: auto;
	height: 40px;
	padding: 0 20px;
}

#links > ul {
	list-style-type: none;
	padding: 0;
}

#links > ul > li {
	float: left;
	height: 40px;
	line-height: 40px;
	margin: 0 15px;
}

#links > ul > li > a {
	color: #d8292f;
	text-decoration: none;
	transition: color .5s;
}

#links > ul > li > a:hover {
	color: #ffffff;
	text-decoration: none;
}

@media screen and (max-width: 1500px){
	#content {
		left: 35vw;
		width: 63vw;
	}
}

@media screen and (max-width: 1100px){
	#content {
		left: 40vw;
		width: 58vw;
	}
}

@media screen and (max-width: 1000px){
	#info h1 {
		display: none;
	}

	#content {
		left: 10vw;
		width: 80vw;
		overflow-x: hidden;
	}

	#content p {
		font-size: 14px;
	}

	#content p:last-child {
		margin-bottom: 60px;
	}

	#content ul {
		padding-left: 10px;
	}

	#content h4 {
		font-size: 16px;
		text-transform: none;
	}

	#wrapper.datenschutz #info, #wrapper.impressum #info {
		display: none;
	}

	#wrapper.datenschutz #content, #wrapper.impressum #content {
		top: 25vh;
		max-height: 73vh;
	}

	#content h2 {
		margin-top: 0;
	}

	#links {
		bottom: 0;
		width: 100%;
		text-align: center;
		background-color: #000000;
	}

	#links > ul {
		display: inline-block;
		padding: 0;
		margin: 0;
	}
}

/** Responsive Design **/
@media screen and (max-width: 800px){
	h1 {
		font-size: 20px;
		font-weight: 400;
	}
}

@media screen and (max-width: 800px) and (min-width: 531px){
	#info {
		bottom: 50px;
		top: unset;
	}
}

@media screen and (max-width: 800px) and (max-height: 400px){
	#logo {
		max-height: 100px;
		top: 5vh;
	}

	#info {
		top: 33vh;
	}

	h1 {
		font-size: 16px;
		margin: 0;
	}

	#info > ul > li {
		line-height: 30px;
		font-size: 14px;
	}

	#info > ul > li > i.icon {
		width: 20px;
	}

	#content {
		left: 43vw;
		width: 55vw;
		font-size: 14px;
	}

	#content h2 {
		font-size: 20px;
	}

	#content h4 {
		font-size: 15px;
	}

	#content p {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 530px){
	#logo {
		min-width: 50vw;
		top: 0;
		left: 10vw;
	}

	#info > ul > li {
		line-height: 30px;
	}

	#info > ul > li > i.icon {
		width: 20px;
	}
}