:root 
{
	--theme: #4a8f7d;
	--darktheme: #28594c;
	--lighttheme: #a6ddda;
	--light: #f0f2f2;
	--grey: #ababab;
	--dark: #181c1c;
}

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

body 
{
	font-size: 1.3em;
	color: var(--dark);
	font-family: 'Funnel Sans';
	font-weight: 300;
	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-size: 5.4em;
	line-height: 1.1;
	font-weight: 700;
}

h2, h3
{
	font-size: 3.2em;
	color: var(--theme);
	line-height: 1.2;
}

h3
{
	font-size: 1.65em;
	color: var(--dark);
	line-height: 1.25;
}

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

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

h2 + h3
{
	margin-top: 0.5em;
}

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

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

#header.active
{
	z-index: 1000000000;
}

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

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

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all 0.2s;
	box-shadow: 0px 0px 60px rgba(0,0,0,0);
}

#header.scrolled
{
	background-color: #fff;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 40px 0px;
	transition: all 0.2s;
}

#navigation ul li a.navLink
{
	position: relative;
}

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

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

#header.scrolled #navigation ul li
{
	padding: 25px 0px;
}

#navigation ul li a.navLink
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
}

#header.scrolled #navigation ul li a.navLink
{
	color: var(--dark);
}

#contactLink
{
	display: inline-block;
	line-height: 1.45;
	text-align: center;
	color: #fff!important;
	background-color: var(--theme);
	padding: 0.59em 1.2em 0.6em 1.2em;
	text-decoration: none;
	transition: all 0.2s;
}

#contactLink:hover
{
	background-color: var(--darktheme);
}

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

#opener
{
	width: 100%;
	height: 80vh;
	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.4) 10%, rgba(255,255,255,0.6) 80%);
}

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

.text
{
	margin: 100px 0px;
}

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

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

#openerContent + .colored, #openerContent + .jumper + .colored
{
	position: relative;
	padding-top: 0;
	margin-top: 50px;
}

#openerContent + .colored:before, #openerContent + .jumper + .colored:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	bottom: 100%;
	z-index: -100;
	background-color: var(--light);
}

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

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

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

.buttonArea
{
	margin-top: 30px;
}

.small
{
	font-size: 0.85em!important;
}

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

.box
{
	width: calc(50% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	padding: 30px 40px;
	background-color: var(--light);
}

.number
{
	font-weight: 700;
	font-size: 5.5em;
	color: var(--theme);
	position: absolute;
	opacity: 0.25;
	z-index: 0;
	top: -0.68em;
	left: 0;
}

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

.step h3
{
	padding-left: 45px;
}

.step
{
	position: relative;
}

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

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

.colored + .withButton
{
	padding-bottom: 100px;
	background-color: var(--light);
	margin-top: -160px;
}

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

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

.imgFlexItem
{
	margin-left: 40px;
}

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

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

.textBox
{
	margin-top: 100px;
	padding-left: 40px;
	border-left: 4px solid var(--theme);
}

.accordeonOpener
{
	display: inline-block;
	line-height: 1.45;
	text-align: left;
	color: #fff!important;
	background-color: var(--theme);
	padding: 0.58em 1.2em 0.61em 1.2em;
	text-decoration: none;
	transition: all 0.2s;
	text-decoration: none;
	position: relative;
	padding-left: calc(55px + 1.2em);
}

.accordeonOpener:before
{
	content: "";
	position: absolute;
	width: 55px;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(plus.svg);
	background-size: 18% auto;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--darktheme);
	transition: all 0.2s;
}

.accordeonOpener:hover, .accordeonOpener.active
{
	background-color: var(--darktheme);
}

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

.accordeonOpener.active:before
{
	background-image: url(minus.svg);
	background-color: var(--theme);
}

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

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

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

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

.colored + .withImg, .colored + .withButton + .withImg
{
	position: relative;
	margin-top: -100px;
}

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

#footer
{
	padding: 35px 0px;
	background-color: var(--theme);
	color: #fff;
	font-size: 0.85em;
}

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

#footerList
{
	text-align: right;
}

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

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

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

.jumper
{
	position: relative;
	top: -200px;
}

#angebot, #ablauf, #faq
{
	top: -100px;
}

.sticky
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 200px;
}

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

.benefit
{
	position: relative;
	padding-left: 70px;
}

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

.benefits
{
	margin: -50px 0px;
}

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

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

.colored + #footer
{
	margin-top: -100px;
}

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

.linkBox
{
	width: calc(50% - 40px);
	display: block;
	padding: 30px 40px;
	position: relative;
	color: #fff;
	text-decoration: none;
	background-color: var(--theme);
	transition: all 0.2s;
	margin-left: 40px;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 100px;
}

.more
{
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 1000px;
	border: 1.5px solid #fff;
	background-image: url(right.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	right: 40px;
	bottom: 40px;
}

.linkBox h3
{
	color: #fff;
}

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

@media all and (max-width: 650px){
	#copy
	{
		position: relative;
		display: block;
		margin-bottom: 4px;
	}

	#footerList
	{
		text-align: left;
	}

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

	#opener
	{
		height: 50vh!important;
		min-height: 300px;
	}
}

@media all and (max-width: 750px){
	h1
	{
		font-size: 2.3em!important;
	}

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

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

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

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

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

	.number
	{
		font-size: 3em!important;
		top: -0.62em!important;
	}

	.step h3
	{
		padding-left: 25px!important;
	}

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

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

	.textBox
	{
		margin-top: 40px;
	}

	.imgFlex .inline
	{
		max-width: 250px;
	}

	.benefit
	{
		padding-left: 55px!important;
	}

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

@media all and (max-width: 1220px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		background-color: #fff;
		box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
		max-height: 100%;
		overflow: auto;
	}

	#logo, #navOpener
	{
		z-index: 1200;
	}

	#navigation ul li a.navLink
	{
		color: var(--dark);
	}

	#navigation ul li, #header.scrolled #navigation ul li
	{
		display: block;
		padding: 0;
		margin-left: 0;
		margin-bottom: 3px;
	}

	#navigation ul li a.navLink:after
	{
		top: 105%;
	}

	#navigation ul
	{
		padding: 76px 40px 22px;
	}

	#header .wrap
	{
		height: 85px;
	}

	#contactLink
	{
		margin-top: 12px;
	}

	#logo, #header.scrolled #logo
	{
		padding: 20px 0px;
	}

	#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: #fff;
		transition: all 0.2s;
	}

	#header.scrolled .line, #navOpener.active .line
	{
		background-color: var(--theme);
	}

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

	#opener
	{
		height: 65vh;
	}

	h1
	{
		font-size: 4.2em;
	}

	h2
	{
		font-size: 2.6em;
	}

	h3
	{
		font-size: 1.5em;
	}

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

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

	.text
	{
		margin: 60px 0px;
	}

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

	.colored
	{
		padding: 60px 0px;
	}

	.colored + .withImg, .colored + .withButton + .withImg
	{
		margin-top: -60px;
	}

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

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

	.colored + .withButton
	{
		padding-bottom: 60px;
		margin-top: -100px;
	}

	.textBox
	{
		margin-top: 60px;
	}

	.boxes
	{
		margin: -20px 0px -60px -40px;
	}

	.number
	{
		font-size: 4em;
		top: -0.64em;
	}

	.step h3
	{
		padding-left: 30px;
	}

	#headerHeight
	{
		height: 110px;
	}

	#openerContent + .colored, #openerContent + .jumper + .colored
	{
		margin-top: 35px;
	}

	.jumper
	{
		top: -130px;
	}

	#angebot, #ablauf, #faq
	{
		top: -80px;
	}

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

	#footer
	{
		padding: 25px 0px;
	}

	.sticky
	{
		top: 145px;
	}

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

	.benefit
	{
		position: relative;
		padding-left: 60px;
	}

	.tick
	{
		width: 40px;
		height: 40px;
		top: -1px;
	}

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

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

	.colored + #footer
	{
		margin-top: -60px;
	}

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

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

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

	.linkBox
	{
		padding-bottom: 95px;
	}
}

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