:root 
{
	--theme: #fcc054;
	--lighttheme: #fbe2ae;
	--light: #f5f5f5;
	--dark: #1c2d3a;
}

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

body 
{
	font-size: 1.15em;
	color: var(--dark);
	font-family: 'Figtree';
	font-weight: 300;
	line-height: 1.65;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	color: var(--theme);
	font-weight: 700;
	line-height: 1.25;
}

h1
{
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 5.2em;
	line-height: 1.1;
}

h2
{
	font-size: 3.2em;
	color: var(--dark);
}

h3
{
	color: var(--dark);
	font-size: 1.6em;
}

.text.big p, .text.big ul, .text.big + .text.withButton p
{
	font-size: 1.3em;
}

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

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

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

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

#header .wrap
{
	max-width: 1250px;
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 32px 0px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

#navigation ul li.active a
{
	font-weight: 700;
}

#navigation ul li a:before
{
	content: "";
	position: absolute;
	width: 0%;
	opacity: 0;
	height: 0.4em;
	left: 0;
	bottom: 0;
	background-color: var(--lighttheme);
	transition: all 0.2s;
	z-index: -1;
}

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

#navigation ul li ul
{
	position: absolute;
	text-align: left;
	font-size: 0.85em;
	background-color: var(--theme);
	padding: 14px 20px 13px;
	top: 78%;
	display: none;
}

#navigation ul li ul li
{
	text-transform: none;
	letter-spacing: 0;
	margin-left: 0;
	padding: 0;
}

#navigation ul li ul li + li
{
	margin-top: 4px;
}

#navigation ul li ul li a
{
	opacity: 0.7;
}

#navigation ul li ul li a:hover
{
	opacity: 1;
}

#navigation ul li.active ul li a
{
	font-weight: 300;
}

#navigation ul li.active ul li.active a
{
	font-weight: 700;
	opacity: 1;
}

#navigation ul li ul li a:before
{
	display: none;
}

#navigation ul li:last-child a.mainLink
{
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	color: var(--dark)!important;
	border-bottom: none!important;
	padding: 0.65em 1.2em 0.58em;
	background-color: var(--theme);
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
}

#navigation ul li:last-child a.mainLink:hover
{
	color: var(--theme)!important;
	background-color: var(--dark);
}

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

#opener
{
	width: 100%;
	padding-bottom: 36%;
	background-size: cover;
	background-position: center;
	position: relative;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background: linear-gradient(180deg,rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 90%);
}

#openerContent
{
	margin-top: -210px;
	position: relative;
	z-index: 100;
}

strong
{
	font-weight: 700;
}

.text
{
	margin: 100px 0px;
}

#openerContent + .text
{
	margin-top: 50px;
}

#intro
{
	margin-bottom: -50px;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	color: var(--dark)!important;
	border-bottom: none!important;
	padding: 0.65em 1.2em;
	background-color: var(--theme);
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

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

.colored + .colored
{
	padding-top: 0;
	margin-top: -150px;
}

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

.linkBox
{
	width: calc(50% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
	background-color: #fff;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.08);
	position: relative;
}

.linkBox:hover
{
	transform: scale(1.03);
	box-shadow: 0px 0px 80px rgba(0,0,0,0.15);
}

.linkBoxImg
{
	padding-bottom: 50%;
	background-size: cover;
	background-position: center;
}

.linkBoxContent
{
	padding: 30px 40px;
	padding-right: 100px;
}

.more
{
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 1000px;
	background-color: var(--theme);
	background-image: url(right.svg);
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
	right: 40px;
	bottom: 40px;
}

.benefits, .steps
{
	margin-top: -50px;
}

.benefit + .benefit
{
	margin-top: 40px;
}

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

.benefit, .accordeonOpener
{
	position: relative;
	padding-left: 65px;
}

.tick
{
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 1000px;
	background-color: var(--theme);
	left: 0;
	top: -2px;
	background-image: url(tick.svg);
	background-size: 35%;
	background-position: center;
	background-repeat: no-repeat;
}

.step
{
	position: relative;
	z-index: 100;
	padding-left: 65px;
}

.number
{
	font-weight: 700;
	font-size: 4em;
	color: var(--lighttheme);
	position: absolute;
	left: 0;
	top: -0.6em;
}

.step h3
{
	position: relative;
	z-index: 100;
}

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

.imgFlex
{
	display: flex;
}

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

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

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

.textBox
{
	padding: 35px 40px;
	position: relative;
	margin-top: 40px;
}

.textBox .buttonArea
{
	margin-bottom: 5px;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -100;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.12);
}

.right .textBox:before
{
	left: 0;
	right: auto;
}

#footer
{
	padding: 40px 0px 39px;
	background-color: var(--theme);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85em;
}

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

#footerList
{
	text-align: right;
}

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

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

#footer a:hover
{
	border-bottom: 1px solid var(--dark);
}

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

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

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

#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;
}

#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.25em;
}

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

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

#whatsapp
{
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 1000px;
	background-color: #25d366;
	background-image: url(whatsapp.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
	right: 40px;
	bottom: 40px;
	z-index: 500;
}

#whatsapp:hover
{
	background-color: #075e54;
}

.withImg + .colored
{
	position: relative;
	margin-top: -110px;
}

.withImg.withGallery + .colored
{
	margin-top: -120px;
}

.withImg + .colored:before
{
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 100%;
	height: 100px;
	background-color: var(--light);
	z-index: -10;
}

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

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

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

.galleryImg
{
	padding-bottom: 65%;
	background-size: cover;
	background-position: center;
}

.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.61em;
	background-color: var(--theme);
}

.accordeonOpener
{
	display: inline-block;
	line-height: 1.5;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
}

.accordeonOpener:before
{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 40px;
	height: 40px;
	border-radius: 1000px;
	background-color: var(--theme);
	background-image: url(close.svg);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.accordeonOpener.active:before
{
	transform: translateY(-50%) rotate(0deg);
}

.accordeonContent
{
	padding: 30px 40px;
	background-color: var(--light);
	margin-top: 20px;
	display: none;
}

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

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

.accordeons
{
	margin-top: -50px;
}

#headerHeight
{
	position: absolute;
	height: 150px;
	z-index: -1;
}

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

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

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

form label
{
	font-family: 'Figtree';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

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

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

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

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 700;
	color: red;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

.alert.alert-danger ul li
{
	color: red;
}

.alert.alert-danger ul li:before
{
	background-color: red;
}

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

.checkbox label
{
	font-family: 'Figtree';
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
	letter-spacing: 0;
}

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

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

form button
{
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	color: var(--dark)!important;
	border-bottom: none!important;
	padding: 0.65em 1.2em;
	background-color: var(--theme);
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
	margin-left: 40px;
	margin-top: 1.2em;
	width: auto;
	cursor: pointer;
}

form button:hover
{
	color: var(--theme)!important;
	background-color: var(--dark);
}

#formBox
{
	padding: 33px 40px 40px 40px;
	background-color: #fff;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.12);
}

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

@media all and (max-width: 600px){
	h1
	{
		hyphens: auto;
		-webkit-hyphens: auto;
	}
}

@media all and (max-width: 750px){
	#opener
	{
		padding-bottom: 55%!important;
	}

	h1
	{
		font-size: 2.5em!important;
	}

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

	h3
	{
		font-size: 1.3em!important;
	}

	.text.big p, .text.big ul, .text.big + .text.withButton p
	{
		font-size: 1em!important;
	}

	#openerContent
	{
		margin-top: -100px!important;
	}

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

	.tick
	{
		top: -3px!important;
	}

	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%!important;
	}

	.textBox
	{
		margin-top: 0!important;
	}

	.textBox:before
	{
		width: 100%;
	}

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

	#footerList
	{
		text-align: left;
	}

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

	#whatsapp
	{
		right: 20px;
		bottom: 20px;
	}
}

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

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

	#navigation ul li:last-child a.mainLink
	{
		margin-top: 4px;
	}

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

	#navigation ul li ul 
	{
		display: block;
		position: relative;
		left: 0;
		text-align: right;
		padding: 0;
		background-color: transparent;
		padding: 6px 0px 1px;
	}

	#navigation ul li ul li
	{
		margin-bottom: 5px;
	}

	#navigation ul li ul li + li
	{
		margin-top: 0;
	}

	#navigation ul li ul li a:after
	{
		content: "-";
		margin-left: 10px;
	}

	#navOpener
	{
		position: absolute;
		width: 26px;
		height: 20px;
		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;
	}

	#header .wrap
	{
		height: 85px;
	}

	#logo
	{
		padding: 22px 0px;
	}

	#opener
	{
		padding-bottom: 45%;
	}

	h1
	{
		font-size: 4em;
	}

	h2
	{
		font-size: 2.2em;
		color: var(--dark);
	}

	h3
	{
		font-size: 1.4em;
	}

	.text.big p, .text.big ul, .text.big + .text.withButton p
	{
		font-size: 1.2em;
	}

	#openerContent
	{
		margin-top: -160px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.colored 
	{
		padding: 60px 0px;
	}

	.colored + .colored
	{
		margin-top: -80px;
	}

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

	.benefits
	{
		margin-top: -20px;
	}

	#footer
	{
		padding: 25px 0px 24px;
	}

	#openerContent + .text
	{
		margin-top: 30px;
	}

	#intro
	{
		margin-bottom: -30px;
	}

	.tick
	{
		width: 35px;
		height: 35px;
		top: -2px;
	}

	.benefit, .step, .accordeonOpener
	{
		padding-left: 55px;
	}

	.more
	{
		width: 35px;
		height: 35px;
	}

	.linkBoxContent
	{
		padding-right: 90px;
	}

	.number
	{
		font-size: 3.5em;
	}

	.step + .step
	{
		margin-top: 40px;
	}

	#whatsapp
	{
		width: 45px;
		height: 45px;
	}

	.withImg + .colored
	{
		margin-top: -70px;
	}

	.withImg.withGallery + .colored
	{
		margin-top: -80px;
	}

	.withImg + .colored:before
	{
		height: 60px;
	}

	.accordeons
	{
		margin-top: -20px;
	}

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

	#headerHeight
	{
		height: 120px;
	}

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

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

	#navigation ul li:hover ul
	{
		display: block;
	}
}