/* Custom - Intro */

.main {
	display: flex;
	flex-direction: column;
}

/* Top */

.top-wrapper {
	align-items: flex-end;
	display: flex;
	justify-content: center;
	padding: 2.2em 0 1.4em;
	position: relative;
	z-index: 1;
}
.top-wrapper:after {
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	bottom: 0;
	content: "";
	height: 60%;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}
.top-wrapper > .title {
	font-size: 3.2em;
	font-weight: bold;
	line-height: 0.74;
	margin: 0 0.3em 0 0;
	text-transform: uppercase;
	text-shadow: 0 0 0.1em rgba(0,0,0,0.2);
}
.top-wrapper > .logo {
	background: #FBF315;
	display: block;
	padding: 0.3em;
	width: 4em;
}
.top-wrapper > .bg {
	height: 110%;
	left: 0;
	object-fit: cover;
	object-position: top;
	position: absolute;
	top: -10%;
	width: 100%;
	z-index: -1;
}

/* Titel-Leiste */

.titlebar-wrapper {
	background: #D6D6D6;
	font-size: 2.16em;
	line-height: 1.1;
	padding: 0.175em 0.6em 0.175em 1.25em;
	position: relative;
	z-index: 1;
}
.titlebar-wrapper:after {
	background: #FBF315;
	bottom: 0.38em;
	content: "";
	left: 0;
	position: absolute;
	top: 0.38em;
	width: 0.8em;
}
.titlebar-wrapper:before {
	background: #D6D6D6;
	bottom: -0.48em;
	content: "";
	height: 0.95em;
	left: 1.5em;
	position: absolute;
	transform: rotate(45deg);
	width: 0.95em;
	z-index: -1;
}

/* Bild */

.image-wrapper {
	flex: 1;
	padding: 0;
}
.images-wrapper {
	flex: 1;
	/* padding: 15vh 0; */
	position: relative;
}
.images-wrapper > .image {
	background-position: center !important;
	background-size: cover !important;
	background: #4C4C4C;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: opacity 400ms ease-in-out;
	width: 100%;
}
.images-wrapper > .image:not(.show) {
	opacity: 0;
}

/* Keyfacts */

.keyfacts-wrapper {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	margin: 0 1.8em 0 0;
	position: relative;
	z-index: 1;
}
.keyfacts-wrapper:before {
	content: "";
	height: 2.4em;
	position: absolute;
	right: 2em;
	top: -1.1em;
	transform: rotate(45deg);
	width: 2.4em;
	z-index: -1;
}
.keyfacts-wrapper > li {
	align-items: flex-end;
	background: #CCCCCC;
	display: flex;
	font-size: 0.7em;
	padding: 0.3em 1em;
	width: 27em;
}
.keyfacts-wrapper > li:nth-child(2n) {
	background: #E6E6E6;
}
.keyfacts-wrapper > li > p {
	width: 60%;
}
.keyfacts-wrapper > li:first-child > p {
	font-weight: 700;
}
.keyfacts-wrapper > li > p:first-child {
	width: 40%;
}

/* Bottom */

.bottom-wrapper {
	align-items: center;
	display: flex;
	padding: 1.5em 1.8em;
}
.bottom-wrapper > img {
	display: block;
	height: 3.3em;
	margin: 0 0.75em 0 0;
	object-fit: cover;
	width: 3.3em;
}
.bottom-wrapper > .text {
	font-size: 0.7em;
}
.bottom-wrapper > .qr-code {
	margin: 0 0 0 auto;
}
.bottom-wrapper > .qr-code > canvas {
	display: block;
	width: 3.3em;
}