:root 
{
	--blue: #342EE8;
	--orange: #FF6F61;
	--white: #F5F6FA;
	--light: #f0f1f5;
	--dark: #1A1B3A;
}

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

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

::selection 
{
	background-color: var(--blue);
 	color: var(--white);
}

::-moz-selection 
{
  	background-color: var(--blue);
 	color: var(--white);
}

h1, h2, h3
{
	line-height: 1.25;
	font-weight: 700;
	font-size: 3.2em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

h2
{
	font-size: 2.8em;
	line-height: 1.35;
}

h1 strong, h2 strong
{
	font-weight: 700;
	text-transform: none;
}

h3
{
	font-size: 1.8em;
	text-transform: none;
	font-weight: 500;
	letter-spacing: 0;
}

.text p, .text ul, .accordeonOpener, .dividerImg p, .dividerImg ul, #form
{
	font-size: 1.25em;
	position: relative;
}

.text p, .text ul, .imgContainer, .boxes, .imgFlex, .accordeon, .dividerImg p, .dividerImg ul, #footerFlex, #copy span, #formContainer
{
	padding: 0px 120px;
}

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

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

#intro h1
{
	display: inline;
	background-color: var(--blue);
	color: var(--orange);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0em 0.3em;
}

#intro
{
	padding: 110px 0px;
	background-color: var(--white);
}

#intro + .grey
{
	margin-top: -60px!important;
	padding-top: 0!important;
}

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

.colored + .dividerImg, .white + .dividerImg
{
	margin-top: -100px;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: var(--blue);
}

.hiddenImg
{
	position: relative;
	width: 1px;
	opacity: 0;
	z-index: -1;
}

#openerImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	padding: 40px 0px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

#navigation ul li:before
{
	content: "/";
	margin: 0px 40px;
	color: var(--light);
}

#navigation ul li:first-child:before
{
	display: none;
}

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

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

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

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

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

#opener
{
	padding-bottom: 45%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 100px;
	z-index: 50;
	color: #fff;
}

#openerBox
{
	max-width: 750px;
	background-color: var(--blue);
	color: var(--orange);
	padding: 50px 60px;
}

#openerBoxArea
{
	margin-top: -150px;
	position: relative;
}

#openerBoxArea:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -10;
	background-color: var(--white);
}

.text
{
	margin: 100px 0px;
}

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

#openerBoxArea + .grey
{
	margin-top: 0;
}

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

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

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

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

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

.buttonArea
{
	margin-top: 30px;
}

strong
{
	font-weight: 500;
}

.colored
{
	padding: 80px 0px;
	background-color: var(--blue);
	color: var(--white)
}

.colored h2, .colored h3
{
	color: var(--white);
}

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

.colored + .withImg
{
	position: relative;
}

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

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

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

.box
{
	width: calc(50% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	padding: 50px 60px;
	background-color: var(--blue);
	font-weight: 500;
	color: var(--white);
}

.text .box p, .imgFlex p, .imgFlex ul, .accordeon p
{
	padding-left: 0!important;
	padding-right: 0!important;
}

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

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

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

.imgFlexItem
{
	width: 50%;
	margin-left: 40px;
}

.accordeonOpener
{
	display: block;
	line-height: 1.5;
	text-align: left;
	color: var(--white);
	font-weight: 500;
	border-bottom: none!important;
	text-decoration: none;
	background-color: var(--orange);
	padding: 0.7em 1.25em;
	transition: all 0.2s;
	position: relative;
	padding-left: 2.5em;
}

.accordeonOpener:before
{
	content: "+";
	position: absolute;
	left: 1.25em;
	top: 50%;
	transform: translateY(-50%);
}

.accordeonOpener.active:before
{
	content: "-";
	position: absolute;
	left: 1.25em;
	top: calc(50% - 0.1em);
}

.accordeonContent
{
	display: none;
	padding: 50px 60px;
	background-color: var(--white);
}

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

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

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

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

.dividerImg
{
	padding: 150px 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}

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

.dividerImg .wrap
{
	position: relative;
	z-index: 50;
}

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.4);
}

#footer ul
{
	list-style: none;
}

#footer
{
	padding: 100px 0px;
	background-color: var(--blue);
	color: var(--white);
}

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

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

#footerFlex
{
	display: flex;
	justify-content: space-between;
}

#footerLogo
{
	max-width: 120px;
	margin-bottom: 20px;
}

.footerIcon
{
	display: block;
	width: 2.2em;
	height: 2.2em;
	border-radius: 1000px;
	background-color: var(--white);
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 15px;
	transition: all 0.2s;
	border: 1px solid var(--white);
}

.footerIcon:hover
{
	border: 1px solid var(--orange);
}

#instagram
{
	background-image: url(instagram.svg);
}

#facebook
{
	background-image: url(facebook.svg);
}

#linkedin
{
	background-image: url(linkedin.svg);
}

#email
{
	background-image: url(email.svg);
}

#footerIcons
{
	display: flex;
	justify-content: flex-end;
}

#copy
{
	padding: 20px 0px 21px;
	background-color: var(--blue);
	color: var(--white);
	border-top: 1px solid var(--white)
}

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

#cookieBox
{
	padding: 31px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 450px;
	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.6em;
	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;
}

.boxIcon
{
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}

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

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

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

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

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

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

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

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

#form ul
{
	padding: 0!important;
	font-size: 1em!important;
}

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

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

.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: 'Outfit';
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

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

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

button
{
	display: inline-block;
	line-height: 1.5;
	text-align: center;
	color: var(--white)!important;
	font-weight: 500;
	border-bottom: none!important;
	text-decoration: none;
	background-color: var(--orange);
	padding: 0.7em 1.25em;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.25em;
}

button:hover
{
	background-color: var(--blue);
	color: var(--orange)!important;
}

#formBox
{
	padding: 50px 60px 60px 60px;
	background-color: var(--white);
}

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

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

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

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

@media all and (max-width: 650px){
	.box
	{
		width: calc(100% - 20px);
	}

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

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

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

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

	#openerBoxArea
	{
		margin-top: -60px!important;
	}

	.dividerImg
	{
		padding: 60px 0px!important;
	}

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

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

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

	.text p, .text ul, .accordeonOpener, .dividerImg p, .dividerImg ul, #form
	{
		font-size: 1.1em!important;
	}

	.boxIcon
	{
		height: 40px!important;
	}

	.text p, .text ul, .imgContainer, .boxes, .imgFlex, .accordeon, .dividerImg p, .dividerImg ul, #footerFlex, #copy span, #formContainer
	{
		padding: 0px 0px!important;
	}

	.checkbox input
	{
		top: 0.63em;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.text ul li:before
	{
		top: 0.61em;
	}

	#formBox
	{
		padding: 15px 20px 20px 20px!important;
	}
}

@media all and (max-width: 850px){
	#footerFlex
	{
		display: block;
	}

	#footerIcons
	{
		justify-content: flex-start;
	}

	.footerIcon
	{
		margin-left: 0!important;
		margin-right: 10px;
		margin-top: 10px;
	}

	.footerFlexItem + .footerFlexItem
	{
		margin-top: 15px;
	}
}

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

	#navigation ul
	{
		text-align: left;
		padding: 3px 40px 12px;
	}

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

	#navigation ul li a:after
	{
		top: 108%;
	}

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

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2.5px;
		background-color: var(--white);
		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: 80px;
	}

	#logo
	{
		padding: 20px 0px;
	}

	#opener
	{
		padding-bottom: 55%;
	}

	#openerBoxArea
	{
		margin-top: -120px;
	}

	.text
	{
		margin: 60px 0px;
	}

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

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

	.boxes, .accordeons
	{
		margin-top: -30px;
	}

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

	.text p, .text ul, .imgContainer, .boxes, .imgFlex, .accordeon, .dividerImg p, .dividerImg ul, #footerFlex, #copy span, #formContainer
	{
		padding: 0px 60px;
	}

	#openerBox, .box, .accordeonContent
	{
		padding: 30px 40px;
	}

	#footer
	{
		padding: 60px 0px;
	}

	#copy
	{
		padding: 16px 0px 17px;
	}

	#footerLogo
	{
		max-width: 90px;
		margin-bottom: 10px;
	}

	.footerIcon
	{
		width: 2em;
		height: 2em;
		margin-left: 10px;
	}

	.dividerImg
	{
		padding: 120px 0px;
	}

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

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.6em;
	}

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

	#openerBox
	{
		max-width: 650px;
	}

	.boxIcon
	{
		height: 45px;
	}

	.divider
	{
		height: 6px;
	}

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

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

	#form
	{
		padding-top: 120px;
		margin-top: -150px;
	}

	#formBox
	{
		padding: 30px 40px 40px 40px;
	}

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

	#intro + .grey
	{
		margin-top: -30px!important;
		padding-top: 0!important;
	}

	#intro
	{
		padding: 65px 0px;
	}

	.colored + .dividerImg, .white + .dividerImg
	{
		margin-top: -60px;
	}
}

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