/* Resets */
html, body, div, span, header, main, section, p {
	border: 0 none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
header, main, section {
	display: block;
}
*, *:before, *:after {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
@font-face {
	font-family: "Swiss721";
	font-weight: 300;
	font-style: normal;
	src: url("fonts/swiss-721-lt.woff") format("woff");
}
@font-face {
	font-family: "Swiss721";
	font-weight: 700;
	font-style: normal;
	src: url("fonts/swiss-721-bd.woff") format("woff");
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/open-sans-300.woff2') format('woff2'),
		url('fonts/open-sans-300.woff') format('woff')
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/open-sans-500.woff2') format('woff2'),
		url('fonts/open-sans-500.woff') format('woff')
}

/* Styles */

html, body {
	background: #F2F2F2;
	height: 100%;
}
html {
	overflow: auto;
}
body {
	background: #FFFFFF;
	color: #000000;
	font: 300 2vh/1.3 "Swiss721", sans-serif;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 56.250vh;
	-webkit-text-size-adjust: none;
	
	/*transform: scale(0.3164) translate(-108%, 108%);*/				/* zum Testen auf Hochformat Bildschirmen */
}
main {
	display: flex;
	flex-direction: column;
	height: 100%;
}
strong {
	font-weight: 500;
}
ul {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.image-wrapper {
	background: #4C4C4C;
	background-position: center;
	background-size: cover;
	padding: 15vh 0;
}
.animate {
	transition: all 500ms ease-in-out;
}
.animate:not(.show) {
	opacity: 0;
	transform: translateX(-2vh);
}
.animate.hide {
	opacity: 0;
	transform: translateX(2vh);
}