:root 
{
	--blau: #0d3197;
	--hellblau: #6e83c1;
	--rot: #d0151a;
	--grau: #71798f; 
	--hellgrau: #a5adc4;
}

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

body 
{
	font-size: 1.1em;
	color: var(--grau);
	font-family: 'Signika Negative', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	line-height: 1.6;
}

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

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

h1, h2, h3
{
	font-weight: 600;
	color: var(--blau);
	font-size: 2.4em;
	line-height: 1.25;
}

h2
{
	font-size: 1.5em;
}

h3
{
	font-size: 1.3em;
}

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

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

#contact h2
{
	color: #fff;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.13));
	z-index: 100;
}

#header .wrap
{
	height: 124px;
}

#headerTriangle
{
	position: absolute;
	width: 100%;
	left: 0;
	top: 99%;
	z-index: 10;
}

#pattern
{
	width: 100%;
	max-width: 1500px;
	position: absolute;
	top: 100%;
	left: 0;
}

#header .wrap, #opener .wrap
{
	max-width: 1150px;
}

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

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 30px;
	padding: 48px 0px;
	position: relative;
}

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

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

#navigation ul li.active a
{
	color: var(--blau);
	font-weight: 600;
}

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

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

#navigation ul li ul
{
	display: none;
	position: absolute;
	top: 73%;
	left: -25px;
	background-color: var(--hellblau);
	z-index: 100;
	padding: 15px 25px;
	font-size: 0.9em;
	text-align: left;
}

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

#navigation ul li ul li
{
	margin-left: 0;
	padding: 0;
}

#navigation ul li ul li a, #navigation ul li:hover ul li a, #navigation ul li.active ul li a
{
	color: #fff;
}

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

#opener
{
	width: 100%;
	height: 66vh;
	position: relative;
	background-size: cover;
	background-position: center;
}

#openerPattern, #openerTriangle
{
	position: absolute;
	width: 100%;
	bottom: 0px;
	right: 0;
}

#openerTriangle
{
	max-width: 100%;
	bottom: -1px;
}

.inline
{
	width: 100%;
	margin-bottom: -8px;
}

.youtube.full
{
	margin-bottom: -8px;
}

.text
{
	margin: 60px 0px;
}

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

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

p + p
{
	margin-top: 1em;
}

.text.withButton p a, .button
{
	display: inline-block;
	color: #fff;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	background-color: var(--blau);
	transition: all 0.2s;
	padding: 0.8em 1.5em;
}

.text.withButton p a:hover, .button:hover
{
	background-color: var(--hellblau);
	color: #fff;
}

.youtube
{
	width: 100%;
}

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

#contact
{
	padding: 60px 0px 55px;
	background-color: var(--blau);
}

#footer
{
	background-color: #fff;
	color: var(--blau);
	padding: 25px 0px 30px;
}

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

#footerList
{
	text-align: right;
}

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

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

#footerList li a:hover
{
	color: var(--blau);
	border-bottom: 1px solid var(--blau);
}

#footerTriangle, #contactTriangle
{
	display: flex;
}

#footerTriangle img, #contactTriangle img
{
	width: 100%;
}

strong
{
	font-weight: 600;
}

.textFlex
{
	display: flex;
	align-items: center;
}

.textFlex.full
{
	align-items: flex-start;
}

.textFlex .textFlexItem:nth-child(1)
{
	width: 250px;
}

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

.textFlex.full .textFlexItem:nth-child(2)
{
	width: calc(100% - 250px);
	padding-left: 40px;
}

.textFlexBox
{
	margin-left: -40px;
	padding: 23px 25px;
	background-color: #fff;
	position: relative;
	z-index: 10;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.15);
}

.textFlex.full
{
	box-shadow: none;
}

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

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

#contact
{
	color: #fff;
}

#contact .button
{
	margin-top: 30px;
	background-color: var(--hellblau);
}

#contact .button:hover 
{
	background-color: #fff;
	color: var(--blau);
}

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

.full 
{
	box-shadow: 0px 0px 80px rgba(0,0,0,0.15);
}

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

.blogPost
{
	margin-bottom: 40px;
	padding: 28px 30px;
	display: inline-block;
	width: 100%;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.15);
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	z-index: 10;
}

.more
{
	position: relative;
	margin: 26px -30px -30px;
	width: calc(100% + 60px);
	display: block;
	background-color: var(--blau);
	color: #fff;
	text-decoration: none;
	line-height: 1.2;
	transition: all 0.2s;
	font-weight: 400;
	padding: 0.8em 1.5em;
	text-align: center;
}

.more:hover 
{
	background-color: var(--hellblau);
}

.blogPost .youtube
{
	margin-top: 0.8em;
}

.blogPost p + .youtube
{
	margin-top: 1.5em;
}

.author
{
	font-size: 0.8em;
	margin: 1em 0px;
}

#blogPosition
{
	padding-top: 160px;
	margin-top: calc((160px + 50px) * -1);
}

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

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

.disabled
{
	display: none;
}

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

.easyPaginateNav a.current
{
	color: var(--blau);
}

.first, .prev, .next, .last
{
	position: relative;
	top: -1px;
}

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

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

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

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

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

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

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

#accepted, #accepted_auswahl
{
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	color: var(--blau);
	transition: all 0.2s;
}

#accepted:hover
{
	color: var(--hellblau);
}

#accepted
{
	font-size: 1em;
}

#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: 49%;
	transform: translateY(-50%);
}

#form
{
	max-width: 650px;
	position: relative;
}

form label
{
	color: var(--blau);
	font-family: 'Signika Negative', sans-serif;
	font-weight: 600;
	display: block;
	margin-bottom: 0.2em;
}

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: 'Signika Negative', sans-serif;
   	line-height: 1.5;
   	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.6em;
}

input, textarea
{
	margin-bottom: 1em;
	transition: border-color 0.2s;
}

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

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

.alert.alert-danger ul:before
{
	font-family: 'Signika Negative', sans-serif;
	content: "The following errors have occurred. Please check your entry.";
	font-weight: 600;
	color: var(--rot);
	display: block;
	margin-bottom: 0.5em;
}

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

.alert.alert-danger ul li
{
	color: var(--rot);
	line-height: 1.6;
}

.alert.alert-danger ul li:before
{
	background-color: var(--rot)!important;
}

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

.checkbox label
{
	font-family: 'Signika Negative', 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.6em;
	cursor: pointer;
}

button
{
	display: inline-block;
	color: #fff;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	background-color: var(--blau);
	transition: all 0.2s;
	padding: 0.8em 1.5em;
	width: auto;
	cursor: pointer;
	margin-top: 1em;
}

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

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

	.textFlexBox
	{
		margin-left: 0px;
		padding: 23px 25px;
	}

	.textFlex .textFlexItem:nth-child(1)
	{
		width: 100%!important;
	}

	.textFlex .textFlexItem:nth-child(2)
	{
		width: 100%!important;
		padding-left: 0!important;
	}

	.textFlex.full .textFlexItem:nth-child(2)
	{
		margin-top: 20px;
	}
}

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

@media all and (max-width: 600px){
	#opener
	{
		height: 42vh!important;
		min-height: 200px;
		background-position: left center;
	}
}

@media all and (max-width: 680px){
	h1, h2, h3
	{
		font-size: 1.4em;
	}

	h2
	{
		font-size: 1.2em;
	}

	h3
	{
		font-size: 1.15em;
	}

	.text
	{
		margin: 40px 0px;
	}

	.easyPaginateNav
	{
		margin-top: 20px;
	}

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

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

	#contact .button
	{
		margin-top: 20px;
	}

	#copy
	{
		position: relative;
		display: block;
		text-align: center;
	}

	#footerList
	{
		text-align: center;
	}

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

	#footer
	{
		padding: 25px 0px;
	}

	#contact
	{	
		padding: 40px 0px;
	}

	#blogPosition
	{
		padding-top: 110px;
		margin-top: calc((110px + 35px) * -1);
	}

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

	textarea
	{
		height: 10em;
	}
}

@media all and (min-width: 521px) and (max-width: 800px){
	.textFlex .textFlexItem:nth-child(1)
	{
		width: 200px;
	}

	.textFlex .textFlexItem:nth-child(2)
	{
		width: calc(100% - 200px);
	}
}

@media all and (max-width: 1080px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		top: 80px;
		left: 0;
		background-color: #fff;
		z-index: 50;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}

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

	#navigation ul
	{
		padding-bottom: 9px;
	}

	#navigation ul li ul
	{
		position: relative;
		display: block;
		padding: 10px 0px 6px;
		left: 0;
		background-color: #fff;
		border-top: 1px solid var(--hellblau);
		border-bottom: 1px solid var(--hellblau);
		margin: 8px 0px 15px;
	}

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

	#navigation ul li ul li:hover a, #navigation ul li ul li.active a
	{
		color: var(--blau)!important;
	}

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

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

	.line
	{
		width: 100%;
		position: absolute;
		height: 2.5px;
		background-color: var(--blau);
		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)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#header .wrap
	{
		height: 80px;
	}

	#logo
	{
		padding: 22px 0px;
	}

	#opener
	{
		height: 56vh;
	}
}

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