﻿body {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* Header */
body #header {
	position: relative;
	width: 100%;
	transition: 0.5s;
	z-index: 1;
	background-color: #fff;
}
body #header .header-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Logo */
body #header .header-wrapper .logo {
	align-self: center;
	margin: 50px;
}
body #header .header-wrapper .logo a {
	display: block;
	text-decoration: none;
}
body #header .header-wrapper .logo img {
	height: 50px;
}

/* Navigation */
body #header .header-wrapper #header-menu-toggle {
	display: none;
}
body #header .header-wrapper #header-menu-toggle:checked ~ .header-menu {
	display: flex;
}
body #header .header-wrapper #header-menu-toggle:checked ~ label i {
	background-image: url('../svg/menu-close.svg');
}
body #header .header-wrapper label i {
	display: block;
	width: 30px;
	height: 30px;
	background-image: url('../svg/menu.svg');
	background-size: 30px 30px;
	background-repeat: no-repeat;
}
body #header .header-wrapper .header-menu {
	display: none;
	flex-direction: column;
}
body #header .header-wrapper .header-menu .header-menu-item {
	display: block;
	text-align: center;
	padding: 20px;
	color: #000;
	font-size: 1em;
	font-weight: 400;
	text-decoration: none;
}
body #header .header-wrapper .header-menu .header-menu-item:hover,
body #header .header-wrapper .header-menu .header-menu-item:focus {
	color: #e8423b;
}
body #header .header-wrapper .header-menu .header-menu-item .header-menu-icon {
	display: inline-block;
}

/* Content */
body .content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.main-content {
	display: flex;
	flex-direction: column;
	padding-left: 25px;
	padding-right: 25px;
}

/* Footer */
.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1em;
}
.footer .footer-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	border-top: 1px dotted #aaa;
	margin-top: 25px;
	padding-top: 25px;
}
.footer .footer-menu .footer-menu-item {
	padding-top: 18px;
	color: #000;
	text-decoration: none;
}
.footer .footer-menu .footer-menu-item:hover,
.footer .footer-menu .footer-menu-item:focus {
	color: #e8423b;
}
.copyright {
	font-size: 0.8em;
	margin-top: 3em;
}

/* Typografie */
* {
	font-family: 'Nunito', Arial, sans-serif;
	font-weight: 400;
	color: #000;
}
p {
	font-size: 12pt;
	line-height: 18pt;
}
h1 {
	font-size: 1.8em;
	font-weight: 400;
}
h2 {
	font-size: 1.4em;
	font-weight: 400;
}
h3 {
	font-size: 1em;
	font-weight: 700;
}
h4,
h5,
h6 {
	font-size: 1em;
	font-weight: 400;
	color: #aaa;
}
a,
a:active,
a:visited {
	color: #e8423b;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #e8423b;
	text-decoration: none;
}
ul {
	line-height: 18pt;
	padding-left: 20px;
	list-style-type: circle;
}

/* Bilder */
img.full-width {
	width: 100%;
}
.teaser {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 240px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 0;
	margin-bottom: 1em;
}

.teaser-home {
	background-image: url('../img/teaser/teaser-960x480-imprint-001.png');
}

.teaser-foto {
	background-image: url('../img/teaser/teaser-960x480-foto-001.png');
}

.teaser-graphics {
	background-image: url('../img/teaser/teaser-960x480-grafik-001.png');
}

.teaser-marketing {
	background-image: url('../img/teaser/teaser-960x480-marketing-001.png');
}

.teaser-about {
	background-image: url('../img/teaser/teaser-960x480-about-001.png');
}

.teaser-privacy {
	background-image: url('../img/teaser/teaser-960x480-privacy-001.png');
}

.teaser-imprint {
	background-image: url('../img/teaser/teaser-960x480-imprint-001.png');
}

.teaser p {
	padding: 25px;
	margin: 0;
}

/* Videos */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Buttons */
button {
	display: block;
	cursor: pointer;
	width: 100%;
	padding: 20px;
	background-color: #fff;
	border: 2px solid #e8423b;
	border-radius: 10px;
	color: #e8423b;
	font-family: 'Nunito', Arial, sans-serif;
	font-weight: 400;
	font-size: 1em;
}
button:hover,
button:focus {
	background-color: #e8423b;
	color: #ffffff;
}

/* Home */
.page-home .main-content a {
	display: block;
}
.page-home .main-content a,
.page-home .main-content a:active,
.page-home .main-content a:visited {
	font-size: 1.4em;
	color: #000;
	text-align: center;
	margin-top: 18px;
}
.page-home .main-content a:hover,
.page-home .main-content a:focus {
	color: #e8423b;
}

@media (max-width:960px) {
	body #header .header-wrapper label {
		margin-bottom: 30px;
		cursor: pointer;
	}
	.wrapper {
		max-width: 480px;
	}
	.side-menu {
		display: none;
	}
	.teaser {
		max-width: 480px;
	}
}

@media (min-width:960px) {
	body #header,
	body .content,
	body .footer {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	body #header {
		position: relative;
	}
	body #header .header-wrapper label i {
		display: none;
	}
	.header-menu {
		display: none !important;
	}
	.wrapper {
		width: 960px;
	}
	.content .wrapper {
		flex-direction: row;
	}
	.col {
		display: flex;
		flex-direction: column;
		min-width: 240px;
	}
	.teaser {
		width: 480px;
	}
	.side-menu {
		text-align: right;
	}
	.side-menu a.active {
		color: #e8423b !important;
	}
	.side-menu a {
		padding-bottom: 18px;
		padding-right: 25px;
	}
	.side-menu a,
	.side-menu a:active,
	.side-menu a:visited {
		color: #000;
		text-decoration: none;
	}
	.side-menu a:hover,
	.side-menu a:focus {
		color: #e8423b;
		text-decoration: none;
	}
	.main-content {
		width: 100%;
		max-width: 480px;
	}
}