:root 
{
	--dunkelblau: #00719e;
	--hellblau: #129CC3;
	--hellgrau: #c2c2c2;
	--midgrau: #8b9699;
	--grau: #707070;
}

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

body 
{
	font-size: 100%;
	color: var(--midgrau);
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	line-height: 1.5;
}

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

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

h1, h2, h3
{
	font-family: 'Maven Pro', sans-serif;
	font-weight: 500;
	font-size: 3em;
	color: var(--hellblau);
	line-height: 1.2;
	letter-spacing: 0.05em;
}

h2, h3
{
	font-size: 1.85em;
	color: var(--midgrau);
}

h3
{
	font-size: 1.4em;
	color: var(--hellblau);
}

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

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

.text p, .text ul
{
	line-height: 1.8;
}

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	top: -132px;
	left: 0;
	z-index: 1000;
	width: 100%;
}

#logoArea
{
	border-bottom: 1.5px solid #fff;
}

#logo
{
	width: 220px;
	padding: 30px 40px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: -5px;
}

#navArea
{
	border-bottom: 1.5px solid #fff;
	transition: all 0.2s;
}

#header.scrolled #navArea
{
	background-color: var(--hellblau);
	border-bottom: 1px solid var(--hellblau);
}

#navigation ul
{
	text-align: center;
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.11em;
	letter-spacing: 0.08em;
	font-weight: 400;
}

#navigation ul li
{
	display: inline-block;
	padding: 28px 0px;
	margin: 0px 20px;
}

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

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

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

.wrap
{
	max-width: 980px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
	z-index: 200;
}

.wrap.withBlogposition
{
	z-index: -10;
}

#opener
{
	width: 100%;
	height: 100vh;
	margin-top: -215.5px;
	position: relative;
	overflow: hidden;
}

#opener.half
{
	height: 60vh;
}

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

#openerImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation-name: zoomIn;
	animation-duration: 45s;
	animation-fill-mode: forwards;
}

#openerContent
{
	width: 100%;
	height: calc(100% - 215px);
	position: absolute;
	left: 0;
	top: 215px;
	z-index: 20;
}

#openerTitle
{
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	letter-spacing: 0.08em;
	font-family: 'Maven Pro', sans-serif;
	/*animation-name: fadeIn;
	animation-duration: 2.2s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	opacity: 0;*/
}

@keyframes fadeIn{
	from
	{
		opacity: 0;
		top: 55%;
	}

	to
	{
		opacity: 1;
		top: 50%;
	}
}

#small
{
	font-size: 1.5em;
	display: block;
	margin-bottom: 20px;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

#small strong
{
	font-weight: 500;
}

#big
{
	background-color: rgba(18, 156, 195, 0.9);
	/*border: 1.5px solid #fff;*/
	color: #fff;
	display: inline-block;
	padding: 0.1em 0.5em;
	font-size: 3.3em;
	font-weight: 500;
	border-radius: 0px 14px 14px 14px;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}

@keyframes zoomIn{
	from
	{
		transform: scale(1);
	}

	to
	{
		transform: scale(1.3);
	}
}

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

.text
{
	margin: 60px 0px;
}

.intro
{
	margin-bottom: -20px;
}

.introIcon
{
	max-width: 60px;
	display: block;
	margin: -20px auto;
}

.inline
{
	max-width: 100%;
	margin-bottom: -6px!important;
	border-radius: 0px 14px 14px 14px;
}

.fancybox img
{
	position: relative;
	transition: all 0.2s;
}

.fancybox:hover img
{
	transform: scale(1.01);
}

.text.withButton p a, .blogButton
{
	color: #fff;
	background-color: var(--hellblau);
	display: inline-block;
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	padding: 0.8em 1.8em;
	border-radius: 0px 14px 14px 14px;
	transition: all 0.2s;
	text-align: center;
}

.text.withButton p a:hover
{
	opacity: 0.7;
}

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

#contact
{
	position: relative;
	padding: 60px 0px;
	background-size: cover;
	background-position: center;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#contact h2, #contact h3
{
	color: #fff;
}

#contact:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.2;
}

.contactLink
{
	position: relative;
	display: inline-block;
	color: #fff;
	line-height: 1.3;
	font-family: 'Maven Pro', sans-serif;
	font-weight: 300;
	font-size: 1.3em;
	text-decoration: none;
	margin-top: 2em;
	padding-left: 3em;
}

.contactLink:before
{
	content: "";
	position: absolute;
	width: 2.3em;
	height: 2.3em;
	background-color: var(--hellblau);
	top: 50%;
	left: 0;
	border-radius: 0px 14px 14px 14px;
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	transition: all 0.2s;
}

.contactLink:hover:before
{
	transform: translateY(-50%) scale(1.1);
}

#contactform:before
{
	background-image: url(form.svg);
}

#phone:before
{
	background-image: url(phone.png);
}

#mail:before
{
	background-image: url(mail.png);
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	background-color: #fff;
	bottom: 0;
	left: 0;
	z-index: 10000;
	padding: 20px 0px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}

#cookieSpace
{
	position: absolute;
	height: 40px;
	z-index: -100;
}

#cookieNotice strong
{
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
	font-weight: 500;
	color: var(--hellblau);
}

#accepted, #accepted_auswahl
{
	cursor: pointer;
	display: inline-block;
	font-weight: 500;
	color: var(--hellblau);
	transition: all 0.3s;
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
}

#accepted:hover, #accepted_auswahl:hover
{
	opacity: 0.7;
}

#accepted
{
	font-size: 1.15em;
}

#acceptWrap
{
	text-align: right;
}

#accepted_auswahl
{
	color: #a6a6a6;
	font-weight: 300;
	margin-bottom: 3px;
}

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

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.5em;
	padding-left: 1.2em;
	cursor: pointer;
}

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

.youtube
{
	width: 100%;
	/*max-width: 600px;*/
	display: block;
	margin: auto;
	border: none;
}

#footer
{
	padding: 60px 0px;
	font-family: 'Maven Pro', sans-serif;
	color: var(--hellblau);
}

#footerFlex
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: -40px;
}

#footerLogo
{
	width: 120px;
}

.footerFlexItem
{
	margin-left: 40px;
}

#copy
{
	font-weight: 500;
}

#footerList li
{
	display: inline-block;
	margin-right: 20px;
	margin-top: 3px;
}

#footerList li a
{
	color: var(--hellblau);
	text-decoration: none;
	transition: all 0.2s;
}

#footerList li a:hover
{
	opacity: 0.7;
}

.text p a, #cookieNotice a, form a, .text ul li a
{
	color: var(--hellblau);
	transition: all 0.2s;
}

.text p a:hover, #cookieNotice a:hover, form a:hover, .text ul li a:hover
{
	opacity: 0.7;
}

strong
{
	font-weight: 600;
}

.divider
{
	width: 100%;
	height: 1px;
	background-color: var(--hellgrau);
	position: relative;
}

.divider:after
{
	content: "";
	position: absolute;
	width: 60px;
	height: 60px;
	background-image: url(icon.svg);
	background-size: 65%;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
}

#blogPosition
{
	padding-top: 130px;
	margin-top: -130px;
}

#blog
{
	column-count: 2;
  	column-gap: 40px;
  	-moz-column-count: 2;
  	-moz-column-gap: 40px;
  	-webkit-column-count: 2;
  	-webkit-column-gap: 40px;
}

.blogPost
{
	width: 100%;
	position: relative;
	box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
	padding: 25px 30px;
	display: inline-block;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	z-index: 10;
	margin-bottom: 40px;
	border-radius: 0px 14px 14px 14px;
	padding-bottom: 78px;
}

.author
{
	margin: 15px 0em 13px;
	font-size: 0.85em;
}

.author strong
{
	font-weight: 500;
}

.blogText + iframe, .author + iframe
{
	display: block;
	margin-top: 22px;
	margin-bottom: 5px;
}

.blogButton
{
	position: absolute;
	display: block;
	width: 100%;
	left: 0;
	bottom: 0;
	border-radius: 0px 0px 14px 14px;
	text-align: center;
	z-index: 10;
}

.blogButton:hover
{
	opacity: 0.7;
}

.easyPaginateNav
{
	margin-top: 20px;
	text-align: center;
}

.disabled
{
	display: none;
}

.easyPaginateNav a
{
	color: var(--midgrau);
	text-decoration: none;
	margin: 0em 0.5em;
}

.easyPaginateNav a.current
{
	font-weight: 600;
	color: var(--hellblau);
}

.dividerImg
{
	width: 100%;
	height: 68vh;
	min-height: 220px;
	background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1), transparent, transparent);
}

.imgFlex
{
	display: flex;
	margin-left: -40px;
	/*align-items: center;*/
}

.imgFlex img
{
	width: 100%;
	margin-top: 0.5em!important;
}

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

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 250px;
}

.imgFlex .imgFlexItem:nth-child(2)
{
	width: calc(100% - 250px);
}

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

.blogText + .audio
{
	margin-top: 1.2em;
}

#form
{
	padding-top: 260px;
	margin-top: -260px;
	max-width: 650px;
	position: relative;
	z-index: -10;
}

form label
{
	color: var(--hellblau);
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
	font-weight: 500;
	display: block;
	margin-bottom: 0.4em;
}

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: 'Lato', sans-serif;
   	line-height: 1.4;
   	color: var(--grau);
   	font-weight: 300;
}

input, textarea
{
	color: var(--grau);
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--hellgrau);
	padding: 0.7em;
	transition: box-shadow 0.3s;
}

input, textarea
{
	margin-bottom: 1.2em;
	transition: border-color 0.3s;
}

input:focus, textarea:focus
{
	border-color: var(--hellblau);
}

textarea
{
	height: 12em;
	resize: none;
}

.alert.alert-danger ul:before
{
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingabe.";
	font-weight: 500;
	color: red;
	display: block;
	margin-bottom: 1.2em;
}

.alert.alert-danger ul
{
	margin: 0em 0em 2em;
	line-height: 1.6;
}

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

.alert.alert-danger ul li:before
{
	content: "";
	width: 0.5em;
	height: 0.5em;
	background-color: red!important;
	position: absolute;
	left: 0px;
	top: 0.5em;
}

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

.checkbox label
{
	font-family: 'Lato', sans-serif;
	color: var(--grau);
	line-height: 1.6;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
}

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

button
{
	color: #fff;
	background-color: var(--hellblau);
	display: inline-block;
	font-family: 'Maven Pro', sans-serif;
	font-size: 1.05em;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	padding: 0.8em 1.8em;
	border-radius: 0px 14px 14px 14px;
	transition: all 0.2s;
	text-align: center;
	width: auto;
	cursor: pointer;
	margin-top: 1em;
}

button:hover
{
	opacity: 0.7;
}

button
{
	margin-top: 1em;
}

@media all and (max-width: 500px){
	h1, #big
	{
		font-size: 1.6em!important;
	}

	#small
	{
		font-size: 1.15em!important;
	}

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

	#footer
	{
		padding: 30px 0px!important;
	}
}

@media all and (max-width: 580px){
	#blog
	{
		column-count: 1;
	  	-moz-column-count: 1;
	  	-webkit-column-count: 1;
	}
}

@media all and (max-width: 620px){
	.imgFlex
	{
		display: block;
		margin-left: 0;
	}

	.imgFlex .imgFlexItem:nth-child(1), .imgFlex .imgFlexItem:nth-child(2)
	{
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}

	.imgFlex img
	{
		margin-top: 0em!important;
	}

	textarea
	{
		height: 10em;
		resize: none;
	}
}

@media all and (max-width: 700px){
	#header
	{
		position: fixed;
		top: 0;
		left: 0;
		transition: all 0.2s;
	}

	#header.scrolled
	{
		background-color: var(--hellblau);
	}

	#opener
	{
		margin-top: 0;
		min-height: 350px;
	}

	#opener.half
	{
		min-height: 220px;
		height: 46vh;
	}

	#logoArea
	{
		height: 80px;
		transition: all 0.2s;
	}

	#header.scrolled #logoArea
	{
		border-bottom: 1.5px solid var(--hellblau);
	}

	#logo
	{
		position: absolute;
		left: 40px;
		height: 100%;
		width: auto;
		padding: 18px 0px;
		transform: translateX(0);
	}

	#openerContent
	{
		height: calc(100% - 80px);
		top: 80px;
	}

	#navigation
	{
		display: none;
		position: fixed;
		background-color: #fff;
		width: 100%;
		top: 80px;
		left: 0;
		max-height: calc(100% - 80px);
		overflow: auto;
	}

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

	#navigation ul
	{
		padding: 9px 0px 11px;
	}

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

	#navOpener
	{
		position: fixed;
		width: 28px;
		height: 22px;
		right: 40px;
		top: 41px;
		transform: translateY(-50%);
		cursor: pointer;
	}

	.line
	{
		width: 100%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

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

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

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

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

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

	#navArea
	{
		border-bottom: none!important;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.5em;
		color: var(--midgrau);
	}

	h3
	{
		font-size: 1.15em;
	}

	#small
	{
		font-size: 1.2em;
		margin-bottom: 15px;
	}

	#big
	{
		font-size: 2.2em;
	}

	.introIcon
	{
		max-width: 50px;
		margin: -10px auto;
	}

	.text
	{
		margin: 40px 0px;
	}

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

	#contact, #footer
	{
		padding: 40px 0px;
	}

	.contactLink
	{
		font-size: 1.1em;
		margin-top: 1.5em;
	}

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

	#footerFlex
	{
		display: block;
		text-align: center;
	}

	#footerList
	{
		margin-top: 10px;
	}

	#footerList li
	{
		display: block;
		margin-right: 0;
		margin-top: 5px;
	}

	.divider:after
	{
		width: 48px;
		height: 48px;
	}

	.dividerImg
	{
		height: 40vh;
		min-height: 200px;
	}

	.easyPaginateNav
	{
		margin-top: 0px;
	}

	#form
	{
		padding-top: 110px;
		margin-top: -110px;
	}
}

@media all and (min-width: 701px) and (max-width: 900px){
	.dividerImg
	{
		height: 52vh;
	}
}

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