:root 
{
	--theme: #77072d;
	--lighttheme: #c9024f;
	--darktheme: #47011c;
	--light: #9b9b9b;
	--lightgrey: #f2f0f1;
	--dark: #211e1f;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.1em;
	color: var(--dark);
	font-family: 'Bricolage Grotesque';
	font-weight: 400;
	line-height: 1.65;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--theme);
 	color: #fff;
}

::-moz-selection 
{
  	background-color: var(--theme);
 	color: #fff;
}

h1, h2, h3
{
	font-weight: 700;
	line-height: 1.3;
	font-size: 3em;
}

h1
{
	color: var(--theme);
}

h2, h3
{
	line-height: 1.4;
}

h2
{
	font-size: 2.5em;
}

h3
{
	font-size: 1.9em;
	line-height: 1.45;
	font-weight: 400;
}

h1 + p
{
	margin-top: 0.8em;
}

h2 + p, h2 + ul, p + p, ul + p
{
	margin-top: 0.7em;
}

h3 + p, h3 + ul
{
	margin-top: 0.2em;
}

h2 + h3, p + h3, ul + h3
{
	margin-top: 30px;
}

#opener p, .text p, .text ul, .linkBox, .accordeonOpener
{
	font-size: 1.2em;
}

.text p, .text ul
{
	padding-right: 100px;
}

.wrap
{
	max-width: 1100px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.07);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	position: relative;
	padding: 45px 0px;
}

#navigation ul li a
{
	color: var(--light);
	text-decoration: none;
	transition: all 0.2s;
	position: relative;
}

#navigation ul li a:after
{
	content: "";
	position: absolute;
	opacity: 0;
	width: 0%;
	height: 2px;
	background-color: var(--theme);
	left: 0;
	top: 110%;
	transition: all 0.2s;
}

#navigation ul li a:hover:after, #navigation ul li.active a:after
{
	opacity: 1;
	width: 100%;
}

#navigation ul li a:hover
{
	color: var(--theme);
}

#navigation ul li.active a
{
	font-weight: 700;
	color: var(--theme);
}

#logo
{
	position: absolute;
	height: 100%;
	padding: 25px 0px;
}

#opener
{
	position: relative;
	background-color: var(--lightgrey);
}

#openerContent
{
	padding: 120px 0px;
}

#openerContentInner
{
	width: 50%;
	padding-right: 40px;
}

#openerImg
{
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
}

#openerImgImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	/*filter: grayscale(1) contrast(1.4);*/
}

/*#openerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--theme);
	opacity: 0.35;
}*/

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: #fff!important;
	padding: 0.6em 1.2em;
	border-bottom: none!important;
	transition: all 0.2s;
	background-color: var(--theme);
	text-decoration: none;
	border-radius: 0.45em 0.45em 0.45em 0;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover, #accepted:hover
{
	background-color: var(--lighttheme);
}

.buttonArea
{
	margin-top: 30px;
}

.text
{
	margin: 100px 0px;
}

.withButton
{
	margin-top: -70px;
}

.grey
{
	background-color: var(--lightgrey);
	padding: 100px 0px;
}

.linkBoxes
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.linkBox
{
	padding: 50px 60px;
	position: relative;
	background-color: var(--theme);
	color: #fff;
	text-decoration: none;
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	transition: all 0.2s;
	border-radius: 0.45em 0.45em 0.45em 0;
	font-weight: 500;
}

.linkBox:hover
{
	background-color: var(--lighttheme);
}

.more
{
	width: 100%;
	height: 20px;
	background-image: url(right.svg);
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
	margin-top: 40px;
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.2em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	left: 0;
	top: 0.62em;
	background-color: var(--theme);
	border-radius: 0.1em 0.1em 0.1em 0;
}

.divider
{
	width: 50%;
	height: 5px;
	background-color: var(--theme);
}

.colored
{
	padding: 100px 0px;
	background-color: var(--theme);
	color: #fff;
}

.colored h2, .colored h3
{
	color: #fff;
}

.text.colored ul li:before
{
	background-color: #fff;
}

.colored h3
{
	font-weight: 400;
}

strong
{
	font-weight: 700;
}

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--theme);
	border-bottom: 1px solid var(--theme);
	text-decoration: none;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, form a:hover, #cookieNotice a:hover
{
	border-bottom: 1px solid var(--lighttheme);
	color: var(--lighttheme);
}

.colored + #footer, .colored + #skyline
{
	margin-top: -120px;
}

#footer
{
	padding: 45px 0px;
	background-color: var(--darktheme);
	color: #fff;
}

#copy
{
	position: absolute;
	font-weight: 500;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footer a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

#footer a:hover
{
	border-bottom: 1px solid #fff;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.25);
	z-index: 500000;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

#cookieBox
{
	padding: 32px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 420px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	border-radius: 0.8em 0.8em 0.8em 0em;
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.3em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 47.5%;
	transform: translateY(-50%);
}

#accepted
{
	margin-top: 0.6em;
	cursor: pointer;
}

.accordeonContent
{
	padding: 50px 60px;
	background-color: var(--lightgrey);
	border-radius: 0.45em 0.45em 0.45em 0;
	margin-top: 25px;
	display: none;
}

.accordeonOpener
{
	font-weight: 500;
	position: relative;
	color: var(--theme);
	text-decoration: none;
	transition: all 0.2s;
	padding-left: 60px;
}

.accordeonOpener.active + .accordeonContent
{
	display: block;
}

.accordeonOpener:hover
{
	color: var(--lighttheme);
}

.accordeonOpener:hover:before
{
	background-color: var(--lighttheme);
}

.accordeon + .accordeon
{
	margin-top: 50px;
}

.accordeonOpener:before
{
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	border-radius: 1000px;
	background-color: var(--theme);
	left: 0;
	top: -0.42em;
	transition: all 0.2s;
	background-image: url(add.svg);
	background-size: 35%;
	background-position: center;
	background-repeat: no-repeat;
}

.accordeonOpener.active
{
	color: var(--lighttheme);
}

.accordeonOpener.active:before
{
	background-color: var(--lighttheme);
	transform: rotate(-45deg);
}

.colored + .withDivider, .grey + .withDivider
{
	display: none;
}

#form
{
	padding-top: 170px;
	margin-top: -335px;
}

form
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
}

form div
{
	width: 50%;
	padding-left: 40px;
}

form label
{
	font-family: 'Bricolage Grotesque';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.1em;
}

input[type = "text"], input[type = "email"], textarea, button, select
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0.45em 0.45em 0.45em 0em;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Bricolage Grotesque';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 400;
   	background-color: transparent;
}

input, textarea, select
{
	color: var(--dark);
	margin-bottom: 1.4em;
	transition: border-color 0.2s;
}

input[type = "text"], input[type = "email"], textarea, select
{
	border: 1px solid #fff;
	padding: 0.5em 1.2em;
	background-color: #fff;
}

input:focus, textarea:focus, select:focus
{
	border-color: var(--lighttheme);
	outline: 1px solid var(--lighttheme);
}

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 1.1em;
}

select
{
	cursor: pointer;
	background-image: url(down.svg);
	background-size: auto 0.5em;
	background-repeat: no-repeat;
	background-position: center right 1.2em;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 700;
	color: var(--theme);
	display: block;
}

.alert.alert-danger
{
	margin-bottom: 1.5em;
}

.alert.alert-danger ul li
{
	color: var(--theme);
}

.alert.alert-danger ul li:before
{
	background-color: var(--theme);
}

.checkbox
{
	position: relative;
	padding-left: 1.5em;
	margin-left: 40px;
}

.checkbox label
{
	font-family: 'Bricolage Grotesque';
	color: var(--dark);
	font-weight: 400;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.54em;
	cursor: pointer;
}

#yform-formular-nachricht, #yform-formular-accept, #yform-formular-betreff, .alert
{
	width: 100%;
}

button
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: #fff!important;
	padding: 0.6em 1.2em;
	border-bottom: none!important;
	transition: all 0.2s;
	background-color: var(--theme);
	text-decoration: none;
	border-radius: 0.45em 0.45em 0.45em 0;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.16em;
}

button:hover
{
	background-color: var(--lighttheme);
}

.grey + .grey
{
	padding-top: 0;
	margin-top: -100px;
}

#skyline
{
	width: 100%;
	background-color: var(--theme);
	height: 150px;
	background-image: url(skyline.svg);
	background-size: contain;
	background-position: center bottom;
	margin-top: -20px;
	background-repeat: repeat-x;
}

.gallery
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.galleryItem
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	cursor: zoom-in;
}

.galleryImg
{
	width: 100%;
	padding-bottom: 120%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0.45em 0.45em 0.45em 0;
}

.imgFlex
{
	margin-left: -40px;
	display: flex;
}

.imgFlexItem
{
	margin-left: 40px;
}

.imgFlex.right
{
	flex-direction: row-reverse;
}

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 35%;
}

.imgFlex .imgFlexItem:nth-child(2)
{
	width: 65%;
}

.inline
{
	width: 100%;
	margin-bottom: -10px!important;
}

.imgFlex p, .imgFlex ul
{
	padding-right: 0!important;
}

.partners
{
	display: flex;
	margin-left: -40px;
	margin-bottom: -40px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: -50px;
}

.partnerLogo
{
	height: 110px;
}

.partner
{
	margin-left: 40px;
	margin-bottom: 40px;
}

.negSpace
{
	margin-top: -60px;
}

@media all and (max-width: 450px){
	#cookieBox
	{
		padding: 18px 25px 25px 25px;
	}

	.galleryItem
	{
		width: calc(100% - 20px);
	}
}

@media all and (max-width: 750px){
	#openerImg
	{
		position: relative;
		display: block;
		padding-bottom: 45%;
		height: auto;
		width: 100%;
	}

	#openerContent
	{
		width: 100%;
		padding: 50px 0px 60px 0px!important;
	}

	#openerContentInner
	{
		width: 100%;
		padding-right: 0;
	}

	.linkBox
	{
		width: calc(100% - 20px);
	}

	.more
	{
		margin-top: 15px!important;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	#skyline
	{
		height: 100px!important;
	}

	.colored + #skyline
	{
		margin-top: -100px!important;
	}

	.imgFlex
	{
		margin-left: 0;
		display: block;
	}

	.imgFlex .inline
	{
		max-width: 220px!important;
	}

	.imgFlexItem
	{
		width: 100%!important;
		margin-left: 0;
	}

	.textBox
	{
		margin-top: 35px;
	}
}

@media all and (max-width: 800px){
	h1
	{
		font-size: 1.9em!important;
		line-height: 1.4!important;
	}

	h2
	{
		font-size: 1.5em!important;
	}

	h3
	{
		font-size: 1.25em!important;
		line-height: 1.5!important;
	}

	#opener p, .text p, .text ul, .linkBox, .accordeonOpener
	{
		font-size: 1em!important;
	}

	.buttonArea
	{
		margin-top: 25px!important;
	}

	.withButton
	{
		margin-top: -35px!important;
	}

	#copy
	{
		position: relative;
		display: block;
		margin-bottom: 5px;
	}

	#footerList
	{
		text-align: left;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
		margin-top: 2px;
	}

	.partnerLogo
	{
		height: 80px!important;
	}
}

@media all and (max-width: 1050px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 80px;
		background-color: #fff;
		border-bottom: 1px solid var(--lightgrey);
		max-height: calc(100% - 80px);
		overflow: auto;
	}

	#navigation ul
	{
		padding: 0px 40px 8px;
	}

	#navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 0;
		margin-bottom: 8px;
	}

	#logo
	{
		padding: 18px 0px;
	}

	#header .wrap
	{
		height: 90px;
	}

	#navOpener
	{
		position: absolute;
		width: 27px;
		height: 21px;
		cursor: pointer;
		top: 50%;
		transform: translateY(-50%);
		right: 40px;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 2.5px;
		background-color: var(--dark);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
		width: 50%;
		right: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#navOpener.active .line:nth-child(3)
	{
		width: 0;
	}

	h1
	{
		font-size: 2.5em;
		line-height: 1.35;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.6em;
	}

	#opener p, .text p, .text ul, .linkBox, .accordeonOpener
	{
		font-size: 1.1em;
	}

	.text p, .text ul
	{
		padding-right: 0px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.withButton
	{
		margin-top: -30px;
	}

	.grey, .colored
	{
		padding: 60px 0px;
	}

	.colored + #footer, .colored + #skyline
	{
		margin-top: -75px;
	}

	#openerContent
	{
		padding: 90px 0px;
	}

	.linkBox
	{
		padding: 30px 40px;
	}

	.more
	{
		height: 15px;
		margin-top: 20px;
	}

	.divider
	{
		height: 4px;
	}

	#footer
	{
		padding: 30px 0px;
	}

	.accordeonContent
	{
		padding: 30px 40px;
		margin-top: 20px;
	}

	.accordeonOpener
	{
		padding-left: 55px;
	}

	.accordeon + .accordeon
	{
		margin-top: 35px;
	}

	.accordeonOpener:before
	{
		width: 1.8em;
		height: 1.8em;
		top: -0.31em;
	}

	h2 + h3, p + h3, ul + h3
	{
		margin-top: 20px;
	}

	.grey + .grey
	{
		padding-top: 0px;
		margin-top: -60px;
	}

	#form
	{
		padding-top: 125px;
		margin-top: -215px;
	}

	#skyline
	{
		height: 120px;
	}

	.partnerLogo
	{
		height: 90px;
	}

	.partners
	{
		margin-top: -30px;
	}

	.negSpace
	{
		margin-top: -25px;
	}
}

@media all and (min-width: 1051px){
	#navigation
	{
		display: block!important;
	}
}