:root 
{
	--theme: #174cce;
	--lighttheme: #2a6df4;
	--darktheme: #07399e;
	--grey: #cfd8e5;
	--dark: #1c293f;
}

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

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

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

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

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

h2, h3
{
	font-size: 2em;
	color: var(--theme);
}

h3
{
	font-size: 1.6em;
}

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

h1 + p
{
	margin-top: 0.5em;
	font-size: 1.3em;
}

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

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

#header .wrap
{
	height: 130px;
	max-width: 1300px;
}

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

#header.scrolled
{
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
}

#bgCol
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -10;
	background-color: var(--theme);
	opacity: 0.08;
}

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

#contact
{
	display: inline-block;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	padding: 0.65em 1.2em;
	padding-left: 2.9em;
	background-color: var(--theme);
	border-radius: 0em 0em 0em 0.5em;
	text-decoration: none;
	transition: all 0.2s;
	background-image: url(phone.svg);
	background-size: 1em;
	background-repeat: no-repeat;
	background-position: left 1.2em center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
}

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

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

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

#opener
{
	background-size: cover;
	background-position: center;
	position: relative;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	background-color: rgba(0,0,0,0.3);
}

#openerContent
{
	padding: 150px 0px;
	color: #fff;
	position: relative;
	z-index: 200;
}

.text-center
{
	text-align: center;
}

.text
{
	margin: 80px 0px;
}

.divider
{
	width: 100%;
	height: 15px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.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: 50px 60px;
	position: relative;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	top: 0;
	right: 0;
	background-color: #fff;
	z-index: -1;
	border-radius: 0em 0em 0em 0.5em;
}

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

.inline
{
	border-radius: 0em 0em 0em 0.5em;
	width: 100%;
	margin-bottom: -10px!important;
}

.imgFlex .inline
{
	margin-top: 55px;
}

.twentytwenty-container
{
	border-radius: 0em 0em 0em 0.5em;
}

.twentytwenty-container img
{
	width: 100%;
}

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

.buttonArea 
{
	margin-top: 30px;
}

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

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--theme);
	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
{
	color: var(--darktheme);
	border-bottom: 1px solid var(--darktheme);
}

.white
{
	padding: 80px 0px;
	background-color: #fff;
}

.white + .white
{
	padding-top: 0;
	margin-top: -80px;
}

strong
{
	font-weight: 700;
}

#form
{
	padding-top: 200px;
	margin-top: -280px;
}

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

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

form div.full
{
	width: 100%;
	padding-bottom: 0.8em;
	padding-top: 1.5em;
}

form div.full.first
{
	padding-top: 0;
}

form label
{
	font-family: 'Mulish';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.1em;
	text-transform: uppercase;
}

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

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

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

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

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

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

.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.4em;
	margin-left: 40px;
}

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

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

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

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

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

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

#footerList
{
	text-align: right;
}

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

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

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

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

#kontakt
{
	padding-top: 40px;
	margin-top: -120px;
}

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

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

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

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

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

.text.withButton p a
{
	margin-left: 1em;
	margin-bottom: 1em;
}

.text.withButton p
{
	margin-left: -1em;
	margin-bottom: -1em;
}

.contactButton
{
	background-size: 1em;
	background-repeat: no-repeat;
	background-position: left 1.2em center;
	padding-left: 2.9em!important;
}

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

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

.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;
	border-radius: 0.1em;
	background-clip: var(--theme);
	left: 0;
	top: 0.65em;
}

.twoCols
{
	margin-top: 1.5em;
}

.twoCols ul
{
	column-count: 3;
	column-gap: 40px;
}

.twoCols ul li
{
	display: block;
	break-inside: avoid;
	margin-bottom: 1em;
	padding-left: 2.4em;
}

.twoCols ul li:before
{
	content: "";
	position: absolute;
	width: 1.6em;
	height: 1.6em;
	background-color: var(--theme);
	left: 0;
	top: 0.06em;
	border-radius: 100px;
	background-image: url(tick.svg);
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
}

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

@media all and (max-width: 550px){
	.twoCols ul
	{
		column-count: 1!important;
	}
}

@media all and (max-width: 750px){
	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%!important;
	}

	.imgFlex .inline
	{
		margin-top: 0!important;
		border-radius: 0!important;
	}

	.textBox:before
	{
		width: 100%;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

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

	h2
	{
		font-size: 1.4em!important;
		hyphens: auto;
		-webkit-hyphens: auto;
	}

	h3
	{
		font-size: 1.15em;
	}

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

	h1 + p
	{
		font-size: 1em!important;
	}

	#copy
	{
		position: relative;
		display: block;
		margin-bottom: 3px;
		text-align: center;
	}

	#footerList
	{
		text-align: center;
	}

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

	#openerContent
	{
		padding: 40px 0px 45px!important;
	}

	#logo
	{
		padding: 18px 0px!important;
	}

	#contact
	{
		color: transparent;
		font-size: 0em;
		display: block;
		width: 50px;
		height: 45px;
		border-radius: 0px 0px 0px 0.4rem;
		background-size: 40%;
		background-position: center;
	}

	.divider
	{
		height: 9px!important;
	}

	.twoCols ul
	{
		column-count: 2;
	}
}

@media all and (max-width: 1000px){
	.text
	{
		margin: 40px 0px;
	}

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

	.buttonArea
	{
		margin-top: 20px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	.white
	{
		padding: 40px 0px;
	}

	.textBox
	{
		padding: 30px 40px;
	}

	.imgFlex .inline
	{
		margin-top: 38px;
	}

	.divider
	{
		height: 12px;
	}

	#header .wrap
	{
		height: 90px;
	}

	#logo
	{
		padding: 17px 0px;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.6em;
	}

	h3
	{
		font-size: 1.3em;
	}

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

	h1 + p
	{
		font-size: 1.2em;
	}

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

	#openerContent
	{
		padding: 80px 0px;
	}

	.twoCols
	{
		padding-bottom: 50px;
		margin-top: 1.2em;
	}

	.twoCols ul li
	{
		margin-bottom: 0.8em;
	}
}