:root 
{
	--red: rgb(230,0,5); /* Buttons, Überschriften, Icons, Hintergrundfarben */
	--lightred: rgb(228,100,80); /* Icons */
	--darkred: rgb(165,30,15); /* Mouseover und Hover-Effekte */
	--blue: rgb(34,117,208); /* Links im Fließtext */
	--darkblue: rgb(0,45,85); /* Menü-Icons, Pfeilen, Menü-Elemente, Buttons, Hover-Effekte */
	--midblue: rgb(0,140,205);/* Hover-Effekte */
	--lightblue: rgb(235,245,255); /* Hintergrundfarbe Formulare, Hover-Effekt im Burger-Menü */
	--dark: rgb(51,51,51); /* Fließtext */
	--grey: rgb(180,180,180); /* Linien als Trennelement */
	--lightgrey: rgb(239,238,234); /* Hintergrundfarbe zur Strukturierung von Inhalten */
}

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

body 
{
	font-size: 1.15em;
	color: var(--dark);
	font-family: 'Open Sans';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--lightblue);
 	color: var(--dark); 
}

::-moz-selection 
{
  	background-color: var(--lightblue);
 	color: var(--dark);
}

h1, h2, h3, h4
{
	font-weight: 700;
	line-height: 1.35;
	color: var(--red);
	font-size: 3.3em;
}

h1
{
	line-height: 1.3;
}

h2
{
	font-size: 2.2em;
}

h3
{
	font-size: 1.6em;
	color: var(--dark);
}

h4
{
	font-size: 1.3em;
	color: var(--dark);
	line-height: 1.4;
}

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

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

#opener h1
{
	color: #fff;
	text-shadow: 0px 0px 0.25em rgba(0,0,0,0.9);
}

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	border-bottom: 1px solid var(--grey);
}

#navigation ul
{
	text-align: right;
	font-weight: 500;
	padding-right: 65px;
}

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

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

#navigation ul li.active a
{
	color: var(--midblue);
}

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

#navigation ul li ul
{
	display: none;
	position: absolute;
	text-align: left;
	font-size: 0.8em;
	font-weight: 300;
	background-color: #fff;
	padding: 15px 20px 11px;
	border: 1px solid var(--grey);
	left: -20px;
	top: 100%;
	min-width: calc(100% + 40px);
}

#navigation ul li ul:before
{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	left: 20px;
	top: -5px;
	background-color: #fff;
	border-left: 1px solid var(--grey);
	border-top: 1px solid var(--grey);
	transform: rotate(45deg);
}

#navigation ul li ul li
{
	display: block;
	padding: 0;
	margin-left: 0;
	margin-bottom: 3px;
	white-space: nowrap;
}

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

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

#search
{
	position: absolute;
	width: 1.3em;
	height: 1.3em;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(search.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

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

#opener
{
	height: 75vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	max-height: 700px;
}

#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.05) 40%, rgba(0,0,0,0.6) 95%);
}

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

.text
{
	margin: 100px 0px;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	font-weight: 300;
	color: #fff!important;
	border-bottom: none!important;
	padding: 0.7em 1.4em 0.75em;
	background-color: var(--darkblue);
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.2s;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

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

strong
{
	font-weight: 700;
}

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

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

.grey + .withTermine #termine
{
	margin-top: -160px;
}

.date
{
	padding-left: 45px;
	position: relative;
}

.date:before
{
	content: "";
	position: absolute;
	width: 1.2em;
	height: 100%;
	left: 0;
	top: 0.07em;
	background-image: url(date.svg);
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
}

.termin p
{
	padding-left: 45px;
}

.termin
{
	padding: 30px 40px;
	background-color: #fff;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
	position: relative;
	z-index: 500;
}

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

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

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

.grey + .withTermine
{
	background-color: var(--lightgrey);
	padding-bottom: 100px;
	margin-top: -100px;
}

.colored + .colored, .grey + .grey
{
	padding-top: 0;
	margin-top: -100px;
}

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

.colored .termin p
{
	color: var(--dark);
}

#news
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 25px);
	margin-left: -25px;
	margin-bottom: -25px;
	margin-top: -60px;
}

.newsItem
{
	width: calc(50% - 25px);
	margin-left: 25px;
	margin-bottom: 25px;
	border-radius: 0.3em;
	overflow: hidden;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
}

.newsImg
{
	padding-bottom: 50%;
	background-size: cover;
	background-position: center;
}

.newsContent
{
	padding: 30px 40px;
}

.newsDate
{
	font-size: 0.8em;
	margin-bottom: 0.5em;
	color: var(--dark);
	font-weight: 500;
}

.newsItem h4
{
	color: var(--red);
}

.more
{
	margin-left: 1.5em;
	position: relative;
}

.more:before
{
	content: "";
	position: absolute;
	width: 2em;
	height: 1em;
	background-image: url(more.svg);
	background-size: auto 70%;
	background-position: left center;
	background-repeat: no-repeat;
	left: -1.5em;
	top: 0.28em;
}

#footer
{
	padding: 40px 0px 39px;
	border-top: 1px solid var(--grey);
	font-size: 0.8em;
}

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

#footerList
{
	text-align: right;
}

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

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

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

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

#cookieBox
{
	padding: 33px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 400px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	font-size: 0.8em;
	border-radius: 0.3em;
}

#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.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.4em;
}

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

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

#blogPosition
{
	padding-top: 120px;
	margin-top: -220px;
}

.easyPaginateNav
{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}

.disabled
{
	display: none!important;
}

.easyPaginateNav a
{
	color: var(--dark);
	text-decoration: none;
	display: flex;
	width: 45px;
	height: 45px;
	cursor: pointer;
	transition: all 0.2s;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	margin-right: 10px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.08);
	border-radius: 100px;
	padding-bottom: 2px;
}

.easyPaginateNav a.next
{
	background-image: none;
}

.easyPaginateNav a:hover
{
	background-color: var(--midblue);
	color: #fff;
}

.easyPaginateNav a.current
{
	font-weight: 500;
	color: #fff;
	background-color: var(--darkblue);
}

.first, .prev, .next, .last
{
	padding-bottom: 5px!important;
}

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

#newsImg
{
	margin: -60px 0px;
}

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

.monthTitle
{
	margin-bottom: 30px;
	position: relative;
}

.monthTitle:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--grey);
	left: 0;
	top: 51%;
	transform: translateY(-50%);
}

.monthTitle h3
{
	background-color: #fff;
	display: inline-block;
	padding-right: 20px;
	position: relative;
	z-index: 100;
}

#compressed, #detailed
{
	display: none;
}

#startPage #compressed
{
	display: block;
}

#subPage #detailed
{
	display: block;
}

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

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

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

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

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

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

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

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

form label
{
	font-family: 'Open Sans';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.15em;
}

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

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

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

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

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

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

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

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

.alert.alert-danger ul li
{
	color: var(--red);
}

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

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

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

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

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

button
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	font-weight: 300;
	color: #fff!important;
	border-bottom: none!important;
	padding: 0.7em 1.4em 0.75em;
	background-color: var(--darkblue);
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-top: 1.1em;
	margin-left: 40px;
}

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

#form button
{
	margin-left: 0px;
	margin-top: 0;
}

#formular button
{
	margin-left: 40px;
	margin-top: 1.12em;
}

#formBox
{
	padding: 35px 40px 40px 40px;
	background-color: var(--lightblue);
	border-radius: 0.3em;
}

#intro
{
	margin-bottom: -60px;
}

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

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	left: 0;
	top: 0.65em;
	background-color: var(--dark);
	border-radius: 1em;
}

#subPage #blogPosition
{
	margin-top: -115px;
}

.termin
{
	display: block;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
	background-color: #fff;
}

.termin:hover
{
	transform: scale(1.025);
}

#categories
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 25px);
	margin-left: -25px;
	margin-bottom: -25px;
}

.category
{
	width: calc(50% - 25px);
	margin-left: 25px;
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 40px;
	border-radius: 0.3em;
	background-color: var(--darkblue);
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 1.2em;
	transition: all 0.2s;
}

.category:hover
{
	background-color: var(--midblue);
}

.fancybox 
{
	color: var(--dark);
	text-decoration: none;
	position: relative;
}

.imgCopy
{
	position: absolute;
	bottom: 6px;
	left: 10px;
	font-size: 0.65em;
	background-color: rgba(255,255,255,0.9);
	display: inline-block;
	padding: 0px 4px;
}

.ansprechpartner
{
	display: flex;
	align-items: center;
	border-radius: 0.3em;
	overflow: hidden;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
}

.ansprechpartnerImg
{
	width: 180px;
}

.ansprechpartnerDescription
{
	width: calc(100% - 180px);
	padding: 35px 40px;
}

.withAnsprechpartner + .withAnsprechpartner
{
	margin-top: -75px;
}

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

.person
{
	width: calc(25% - 25px);
	margin-left: 25px;
	margin-bottom: 25px;
	border-radius: 0.3em;
	overflow: hidden;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
}

.personName
{
	padding: 24px 25px 25px;
	text-align: center;
	line-height: 1.35;
}

.personImg
{
	padding-bottom: 150%;
	background-size: cover;
	background-position: center;
}

.withSearch
{
	padding-top: 55px;
}

.veranstaltung
{
	display: flex;
}

.veranstaltung .veranstaltungItem:nth-child(1)
{
	width: 35%;
	padding-top: 50px;
}

.veranstaltung .veranstaltungItem:nth-child(2)
{
	width: 65%;
}

.veranstaltungBox
{
	position: relative;
	padding: 50px 60px;
}

.veranstaltungBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.07);
	border-radius: 0.3em;
}

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

#intro + .withVeranstaltung
{
	padding-top: 20px;
}

.veranstaltungContent
{
	margin-top: 1em;
}

.withVeranstaltung + .withVeranstaltung
{
	margin-top: -30px;
}

.gallery
{
	width: calc(100% + 10px);
	margin-left: -10px;
	margin-bottom: -10px;
	display: flex;
	flex-wrap: wrap;
}

.galleryItem
{
	width: calc(25% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	cursor: zoom-in;
}

.galleryImg
{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
}

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

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

	.ansprechpartnerImg
	{
		width: 100%;
	}

	.ansprechpartnerDescription
	{
		width: 100%;
	}
}

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

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

	.textBox
	{
		margin-top: 30px;
	}

	.category
	{
		width: calc(100% - 25px);
		padding: 35px 40px;
	}

	.person
	{
		width: calc(50% - 25px)!important;
	}

	.galleryItem
	{
		width: calc(50% - 10px);
	}
}

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

	h1 br
	{
		display: none;
	}

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

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

	h4
	{
		font-size: 1.05em!important;
	}

	#copy
	{
		position: relative;
		display: block;
	}

	#footerList
	{
		text-align: left;
	}

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

	.date, .termin p
	{
		padding-left: 40px;
	}

	.newsItem
	{
		width: calc(100% - 25px);
	}

	#opener
	{
		height: 50vh!important;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.veranstaltung
	{
		display: block;
	}

	.veranstaltungItem
	{
		width: 100%!important;
	}

	.veranstaltungBox:before
	{
		width: 100%;
		border-radius-top-left: 0px;
		border-radius-top-right: 0px; 
	}

	.veranstaltung .veranstaltungItem:nth-child(1)
	{
		padding-top: 0px!important;
	}
}

@media all and (max-width: 1100px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		height: calc(100vh - 85px);
		left: 0;
		top: 85px;
		background-color: var(--lightgrey);
		z-index: 1000;
		overflow: auto;
	}

	#navigation ul
	{
		padding: 0;
		padding: 20px 40px;
		text-align: left;
	}

	#navigation ul li
	{
		margin-left: 0;
		display: block;
		border-bottom: 1px solid var(--grey);
		padding: 10px 0px 12px;
	}

	#navigation ul li ul
	{
		position: relative;
		background-color: transparent;
		padding: 0;
		min-width: auto;
		left: 0;
		border: none;
		display: none;
		font-size: 0.9em;
	}

	.subNavOpener.active + ul
	{
		display: block!important;
	}

	#navigation ul li ul li
	{
		border-bottom: none;
		margin-top: 6px;
	}

	#navigation ul li ul li:before
	{
		content: "-";
		margin-right: 12px;
	}

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

	#navigation ul li:last-child
	{
		border-bottom: none;
	}

	.subNavOpener
	{
		position: absolute;
		width: 53px;
		height: 53px;
		right: 0;
		top: 0;
		background-image: url(down.svg);
		background-size: 25%;
		background-position: center right;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.subNavOpener.active
	{
		transform: rotate(180deg);
		background-position: center left;
	}

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

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

	#logo
	{
		padding: 25px 0px;
	}

	#search
	{
		right: 95px;
	}

	h1
	{
		font-size: 2.4em;
	}

	h2
	{
		font-size: 1.7em;
	}

	h3
	{
		font-size: 1.45em;
	}

	h4
	{
		font-size: 1.2em;
	}

	.text
	{
		margin: 60px 0px;
	}

	.grey
	{
		padding: 60px 0px;
	}

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

	.grey + .withTermine #termine
	{
		margin-top: -90px;
	}

	#news
	{
		margin-top: -30px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	.grey + .grey
	{
		margin-top: 60px;
	}

	#opener
	{
		height: 60vh;
		min-height: 350px;
	}

	#openerContent
	{
		bottom: 60px;
	}

	#blogPosition
	{
		padding-top: 90px;
		margin-top: -150px;
	}

	.easyPaginateNav a
	{
		width: 42px;
		height: 42px;
	}

	.easyPaginateNav
	{
		font-size: 0.85em;
	}

	#newsImg
	{
		margin: -30px 0px;
	}

	.grey + .withTermine
	{
		background-color: var(--lightgrey);
		padding-bottom: 60px;
		margin-top: -60px;
	}

	.month + .month
	{
		margin-top: 30px;
	}

	.monthTitle
	{
		margin-bottom: 20px;
	}

	.withSearch
	{
		padding-top: 20px;
	}

	#intro
	{
		margin-bottom: -35px;
	}

	#subPage #blogPosition
	{
		margin-top: -85px;
	}

	.category
	{
		font-size: 1em;
	}

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

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

	.personName
	{
		padding: 18px 20px 20px;
	}

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

	.person
	{
		width: calc(33.3% - 25px);
	}

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

	.veranstaltungBox
	{
		padding: 35px 40px;
	}

	.veranstaltungBox .buttonArea
	{
		margin-bottom: 5px;
	}

	.veranstaltung .veranstaltungItem:nth-child(1)
	{
		padding-top: 30px;
	}

	#intro + .withVeranstaltung
	{
		padding-top: 10px;
	}
}

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

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