@import url("https://fonts.verwaltungsportal.de/import/?family=Karla:400,500,600,700,400i,500i,600i,700i%7CPangolin:400");

body {
	font-family: "Karla", sans-serif;
	font-weight: 400;
	color: #212121;
	background-color: #ffffff;
	font-size: 1rem;
	/* 1rem = 16px */
	line-height: 1.5;
	background-attachment: fixed;
	background-size: cover;
}

@media (min-width: 768px) {
	html {
		position: relative;
	}

	body::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 0.5;
		background: url("../img/background-overlay.svg") center top / 100% auto repeat-y;
		z-index: 1;
	}
}

@media (min-width: 992px) {
	body {
		font-size: 1.125rem;
	}
}

a {
	color: #c01b1b;
}

a:hover,
a:focus {
	color: #c01b1b;
	text-decoration: underline;
}

b,
strong {
	font-weight: 700;
}

@media (min-width: 1200px) {
	.row,
	.compact,
	._op-container .container {
		max-width: 1440px;
		width: 100% !important;
	}
}

/* ----------------------------------------------- topbar ----------------------------------------------- */

#topbar {
	color: #212121;
}

#topbar > div.row:nth-child(1) {
	margin-bottom: 25px;
}

@media (max-width: 991px) {
	#topbar > div.row:nth-child(1) {
		margin-top: 10px;
	}
}

#topbar >.row>* {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   align-content: center;
   justify-content: start;
}

@media (max-width: 991px) {
   #topbar>.row>*{
      flex-direction: column;
      align-items: start;
      align-content: left;
      padding-left: 15px !important;
      
   }
}

/* -------------------------------------------- phone + mail -------------------------------------------- */

address {
	font-style: normal;
}

#mail,
#phone {
	color: #212121;
	display: inline-block;
	font-weight: 400;
	margin-top: 15px;
	line-height: 1;
	position: relative;
	min-height: 18px;
	font-size: 1rem;
   flex-grow: 1;
}

@media (min-width: 992px) {
	#mail,
	#phone {
		margin-top: 0;
		padding-top: 2px;
	}

	#mail {
		margin-left: 30px;
	}
}

#mail {
	width: 80%;
	padding-left: 28px;
	background: url("../img/icon-mail.png") center left no-repeat;
}

#phone {
	width: 15%;
	padding-left: 25px;
	background: url("../img/icon-telefon.png") center left no-repeat;
}

#mail a,
#phone a {
	color: #212121;
	text-decoration: none;
}

#mail a:hover,
#phone a:hover {
	color: #c01b1b;
}

#kontakt {
	font-style: normal;
	font-size: 1.125rem;
}

/* ----------------------------------------------- styler ----------------------------------------------- */

@media (min-width: 992px) {
	#style button {
		color: inherit;
		font-weight: 500;
		background: transparent;
		border: none;
		padding: 0;
		line-height: 1;
		font-size: 1.125rem;
	}

	#style button:hover,
	#style button:focus {
		color: #c01b1b;
	}

	#style button + button {
		margin-left: 2px;
		border-left: 1px solid #212121;
		padding-left: 8px;
		margin-left: 6px;
	}
}

/* ----------------------------------------------- logo ----------------------------------------------- */

.logo {
	display: inline-block;
}

.logo img {
	display: block;
}

@media (max-width: 991px) {
	.logo {
		margin-bottom: 15px;
	}

	.logo img {
		max-width: 190px;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.logo {
		margin-top: 10px;
		width: auto;
	}
}

/* --------------------------------------- navigation --------------------------------------- */

.navbar-nav {
	background-color: #ffcc8a;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	#burgerButtonInner2,
	#burgerButton:after,
	#burgerButtonInner {
		background-color: #c01b1b;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 10px;
		-webkit-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-moz-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-ms-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-o-transition:
			transform 200ms linear,
			opacity 200ms linear;
		transition:
			transform 200ms linear,
			opacity 200ms linear;
	}

	#burgerButton[aria-expanded="true"] #burgerButtonInner {
		-webkit-transform: rotate(-45deg) translate(-6px, 6px);
		transform: rotate(-45deg) translate(-6px, 6px);
	}

	#burgerButton[aria-expanded="true"] #burgerButtonInner2 {
		opacity: 0;
	}

	#burgerButton[aria-expanded="true"]:after {
		-webkit-transform: rotate(45deg) translate(-4px, -6px);
		transform: rotate(45deg) translate(-4px, -6px);
	}

	#burgerButtonInner {
		top: 16px;
	}

	#burgerButtonInner2 {
		top: 24px;
	}

	#burgerButton:after {
		top: 32px;
		content: "";
		display: block;
	}

	.navbar-nav {
		margin: 20px 0;
	}

	.navbar-collapse {
		top: 0;
		background: #ffffff;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		-webkit-transition:
			left 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			left 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			left 300ms linear,
			opacity 300ms linear;
		-o-transition:
			left 300ms linear,
			opacity 300ms linear;
		transition:
			left 300ms linear,
			opacity 300ms linear;
	}

	.navbar-collapse[aria-expanded="true"],
	.navbar-collapse.in {
		left: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.navbar-header {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
	}

	.navbar-toggle::before {
		content: "";
		opacity: 0;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 0;
		z-index: -1;
		display: block;
		background-color: rgba(0, 0, 0, 0.5);
		-webkit-transition:
			width 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			width 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			width 300ms linear,
			opacity 300ms linear;
		-o-transition:
			width 300ms linear,
			opacity 300ms linear;
		transition:
			width 300ms linear,
			opacity 300ms linear;
	}

	.navbar-toggle[aria-expanded="true"]::before {
		opacity: 1;
		width: 90px;
	}
}

@media (min-width: 575px) and (max-width: 991px) {
	.navbar-collapse {
		width: 60%;
	}

	.navbar-collapse.collapse.in:after,
	.navbar-toggle[aria-expanded="true"]::before {
		width: 40%;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally .navbar-nav {
		margin: 40px auto 10px auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		flex-wrap: wrap;
	}

	nav.horizontally .navbar-nav > li {
		flex-grow: 1;
	}

	nav.horizontally .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
	}

	nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav > li,
	nav.horizontally .navbar-nav > li > .dropdown-menu > li {
		position: relative;
	}

	.navbar-default .navbar-nav li[class*="toplevel"] > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul {
		display: block !important;
		pointer-events: none;
		opacity: 0;
		-webkit-transition: opacity 300ms linear;
		-moz-transition: opacity 300ms linear;
		-ms-transition: opacity 300ms linear;
		-o-transition: opacity 300ms linear;
		transition: opacity 300ms linear;
	}

	.navbar-default .open > .dropdown-menu,
	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
	}

	.navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
		pointer-events: auto !important;
		opacity: 1 !important;
	}

	.navbar-default .nav .open > .dropdown-menu {
		pointer-events: none !important;
		opacity: 0 !important;
	}
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav > li > a {
	color: #212121;
	font-weight: 400;
	text-align: left;
	padding: 10px 15px;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	font-family: "Pangolin", sans-serif;
   hyphens: auto;
}

@media (max-width: 991px) {
	nav.horizontally .navbar-nav > li > a.dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		padding: 17px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		height: 100%;
		text-align: center;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		display: block;
	}
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li:hover > a,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
	color: #212121;
	background-color: #f5af81;
}

.navbar-nav > li:focus-within > a {
	color: #212121;
	background-color: #f5af81;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	padding: 12px 0;
	background-color: #ffffff;
	border: 1px solid #b4d965;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu {
		margin-top: 0;
		left: 50%;
		-moz-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		margin-left: 10px;
		margin-top: -13px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		height: 0;
		left: 0;
		right: 0;
		top: -0;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	color: #212121;
	font-weight: 400;
	text-align: left;
	padding: 4px 30px;
	background-color: transparent;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
   hyphens: auto;
}

@media (max-width: 991px) {
	nav.horizontally .navbar-nav > li > .dropdown-menu > li > a.dropdown-toggle2 {
		padding-right: 35px;
	}
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a::before,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 12px;
	display: block;
	width: 7px;
	height: 7px;
	background-color: #c01b1b;
	opacity: 0;
	-webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li:hover > a,
.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
	color: #c01b1b;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
	color: #c01b1b;
}

.navbar-nav > li > .dropdown-menu > li:hover > a::before,
.navbar-nav > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus::before {
	opacity: 1;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a::before {
	opacity: 1;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider,
.slider-wrapper {
	max-height: 300px;
	overflow: hidden;
}

@media (min-width: 768px) {
	#headerpic .nivo-directionNav a {
		top: auto;
		bottom: 12px;
	}

	#headerpic .nivo-controlNav {
		pointer-events: none;
	}

	#headerpic .nivo-controlNav a {
		pointer-events: auto;
	}
}

@media (min-width: 992px) {
	#headerpic .nivo-directionNav a {
		top: 18px;
	}

	#slider,
	.slider-wrapper {
		max-height: 430px;
	}
	.nivo-controlNav {
		top: 6px;
	}
}

#headerpic {
	margin: 0 auto;
	position: relative;
	width: 100%;
}

.slider-wrapper,
#slider {
	height: 100%;
}

.slider-mask {
	display: none;
}

/* ------------------------------------------------ content ----------------------------------------------- */

main {
	margin: 30px 0;
}

#content {
	text-align: left;
	padding-bottom: 30px;
}

#contentCol {
	background-color: #f9f8f8;
}

@media (min-width: 768px) {
	#content.md-gutter {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 992px) {
	#contentCol {
		padding: 20px 25px 0 20px;
	}
}

@media (min-width: 1200px) {
	#contentCol {
		padding: 30px 45px 0 45px;
	}

	body:not(.noListStyle) main ul:not([class*="menue"]):not([class*="slick-dots"]):not(.rsbtn_toollist) li:not(.gallery-list-item):not(.album-list-item):not(.entry)::before {
		top: 24px;
	}
}

.compact {
	padding: 15px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 5;
}

@media (min-width: 768px) {
	.compact {
		padding: 20px 15px 15px 15px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	.compact {
		padding: 20px 30px 30px 30px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
}

/* ---------------------------------------------- aside tab --------------------------------------------- */

#asideTab {
	position: relative;
	z-index: 1;
}

@media (min-width: 1200px) {
	#asideTab {
		padding-right: 0;
		padding-left: 30px;
	}
}

@media (max-width: 991px) {
	#asideTab {
		padding-top: 30px;
	}
}

#asideTab .tab {
	position: relative;
	padding: 26px;
	font-size: 1.125rem;
	border: 6px solid #f5f5f5;
	margin: 40px 0;
	line-height: 2.1;
	background: #ffffff url("../img/linienpapier.jpg") top left repeat;
}

@media (min-width: 992px) {
	#asideTab .tab {
		margin: 130px 0 40px 0;
	}
}

#asideTab .tabHeadline {
	font-size: 1.625rem;
	font-weight: 400;
	color: #212121;
	margin-bottom: 25px;
}

#asideTab .tab b,
#asideTab .tab strong {
	font-weight: 600;
	font-size: 1.3125rem;
}

#asideTab a {
	color: inherit;
	font-weight: inherit;
}

#asideTab a:hover,
#asideTab a:focus {
	color: #c01b1b;
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
	color: #212121;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Pangolin", sans-serif;
}

h1,
.h1,
.legacy_h1 {
	font-size: clamp(1.5625rem, 4vw, 2.8125rem);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(1.5rem, 4vw, 2.6rem);
}

h3,
.h3,
.legacy_h3 {
	font-size: clamp(1.4375rem, 4vw, 2.4rem);
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
	font-size: clamp(1.375rem, 4vw, 2.2rem);
}

h5,
.h5,
.legacy_h5 {
	font-size: clamp(1.3125rem, 4vw, 2.1rem);
}

h6,
.h6,
.legacy_h6 {
	font-size: clamp(1.25rem, 4vw, 1.9rem);
}

#newslinks,
#newsmandate {
	border: 1px solid #212121;
}

/* --------------------------------------------- news events ------------------------------------------- */

#news {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 768px) {
	#news {
		font-size: 1.125rem;
	}
}

@media (min-width: 992px) {
	#news {
		padding-top: 55px;
		padding-bottom: 60px;
	}
}

#news {
	padding-left: 25px;
	padding-right: 25px;
}

@media (min-width: 768px) {
	#news .tab_link_entries {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#news .tab_link_entry {
		width: calc(50% - 15px);
	}

	#news .tab_link_entry:nth-of-type(2n + 1) {
		margin-right: 30px;
	}
}

/* ----------------------------------------- news events button ---------------------------------------- */

#news .tab_link_mehr {
	color: transparent;
	font-size: 0;
}

#news .tab_link_mehr a {
	background: #df6d6d;
	font-weight: 500;
	color: #212121;
	padding: 8px 55px 8px 20px;
	position: relative;
	text-decoration: none;
	display: inline-block;
}

#news .tab_link_mehr a::before {
	content: "alle Neuigkeiten";
	font-size: 1rem;
}

#news .tab_link_mehr a::after {
	content: "\00BB";
	display: block;
	position: absolute;
	right: 0;
	top: 9px;
	bottom: 9px;
	width: 35px;
	text-align: center;
	font-size: 26px;
	line-height: 18px;
	border-left: 2px solid rgba(0, 0, 0, 0.1);
}

#news .tab_link_mehr a:hover,
#news .tab_link_mehr a:focus {
	background: #c01b1b;
	color: #ffffff;
}

/* ----------------------------------------------- news ----------------------------------------------- */

#news {
	background-color: #ffecdf;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

#news::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(255, 204, 138);
	background: linear-gradient(135deg, rgba(255, 204, 138, 1) 36%, rgba(255, 236, 223, 0.85) 36%);
}

#news > .row {
	position: relative;
	z-index: 2;
}

#news h2 {
	color: #212121;
	font-weight: 400;
	font-size: 2.25rem;
	margin-bottom: 30px;
}

#events h2 {
	font-size: 1.625rem;
}

@media (min-width: 992px) {
	#news h2 {
		margin-bottom: 55px;
		font-size: 3rem;
	}
	#events h2 {
		font-size: 2.25rem;
	}
}

#news .tab_link_entry {
	padding: 80px 20px 20px 20px;
	background: #ffffff;
	position: relative;
	margin-bottom: 30px;
	min-height: 106px;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 576px) {
	#news .tab_link_entry {
		padding: 20px 30px 20px 135px;
	}
}

#news .tab_link_title a {
	color: inherit;
	font-weight: 700;
	line-height: 1.3;
	display: inline-block;
   hyphens: auto;
}

#news .tab_link_date {
	font-size: 16px;
	color: #212121;
	font-weight: 500;
	background: #df6d6d url("../img/kalender-icon.png") top 8px center no-repeat;
	text-align: center;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 40px 15px 10px 15px;
}

@media (min-width: 576px) {
	#news .tab_link_date {
		right: auto;
		bottom: 0;
		width: 105px;
		padding: 65px 0 20px 0;
		background-position: top 25px center;
	}
}

/* ---------------------------------------------  4ev ------------------------------------------- */

#ev4 {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
	background-position: center;
	color: #212121;
	font-size: 1rem;
}

@media (min-width: 992px) {
	#ev4 {
		padding-top: 80px;
	}
}

#ev4 .specialHeadline a {
	color: #c01b1b;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 400;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	font-style: italic;
}

#ev4 .specialHeadline a::after {
	content: "\00BB";
	margin-left: 4px;
}

#ev4 .specialHeadline h1,
#ev4 .specialHeadline h2,
#ev4 .specialHeadline h3,
#ev4 .specialHeadline h4,
#ev4 .specialHeadline h5,
#ev4 .specialHeadline h6 {
	font-size: clamp(1.375rem, 3vw, 3rem);
	color: #212121;
}

@media (min-width: 1920px) {
	/*Fix for 4K Monitor */
	#ev4 .specialHeadline {
		margin-bottom: -30px;
	}
}

#events {
	margin-top: auto;
	margin-bottom: 40px;
}

@media (min-width: 1200px) {
	#events {
		margin-top: 90px;
		margin-bottom: 40px;
	}
}

#events .tab_link_entry .tab_spacer {
	height: 0px;
}

@media (min-width: 768px) {
	#events .tab_link_entry:nth-child(2) {
		margin-top: 0;
	}

	#events .tab_link_entries {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#events .tab_link_entry {
		width: calc(50% - 15px);
	}

	#events .tab_link_entry:nth-child(2n + 1) {
		margin-right: 15px;
	}

	#events .tab_link_entry:nth-child(2n + 2) {
		margin-left: 15px;
	}
}

@media (min-width: 992px) {
	#events .tab_link_entry {
		width: calc(33.33% - 5px);
	}

	#events .tab_link_entry:nth-child(3n + 1) {
		padding-right: 30px;
	}

	#events .tab_link_entry:nth-child(3n + 2) {
		padding-right: 30px;
		padding-left: 30px;
		border-left: 1px solid rgba(25, 25, 25, 0.4);
	}

	#events .tab_link_entry:nth-child(3n + 3) {
		padding-left: 30px;
		border-left: 1px solid rgba(25, 25, 25, 0.4);
	}

	#events .tab_link_entry:nth-child(3) {
		margin-top: 0;
	}
}

#events .tab_link_title a {
	color: #404040;
	font-weight: 600;
	margin-bottom: 6px;
	display: inline-block;
	font-size: 1.125rem;
}

#events .tab_link_mandat a {
	color: inherit;
}

#clr-events-hide > p,
#events .tab_link_mehr {
	display: none;
}

@media (max-width: 991px) {
	#ev4 .specialHeadline {
		margin-bottom: 25px;
	}
}

@media (max-width: 575px) {
	#events .tab_link_entry + .tab_link_entry {
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid rgba(36, 36, 36, 0.2);
	}
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
	background-color: #ffcc8a;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 30px 15px;
	position: relative;
}

footer::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(255, 204, 138);
	background: linear-gradient(135deg, rgba(255, 204, 138, 1) 36%, rgba(255, 236, 223, 0.85) 36%);
}

footer > .row {
	position: relative;
	z-index: 2;
}

#innerfooter ul {
	padding: 0;
}

@media (max-width: 575px) {
	#innerfooter {
		border-top: 1px solid rgba(35, 35, 35, 0.5);
		margin-top: 15px;
		padding-top: 15px;
	}
}

@media (min-width: 768px) {
	footer {
		padding: 55px 30px;
	}
}

#innerfooter a {
	color: #212121;
	display: inline-block;
	font-weight: 500;
	font-size: 1.125rem;
	position: relative;
	padding-right: 15px;
}

#innerfooter a:hover,
#innerfooter a:focus {
	text-decoration: none;
}

#innerfooter a::before {
	position: absolute;
	display: block;
	content: "";
	border-radius: 50%;
	width: 6px;
	height: 6px;
	top: calc(50% - 3px);
	right: 0;
	opacity: 0;
	background-color: #c01b1b;
	-webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
}

#innerfooter a:hover::before,
#innerfooter a:focus::before {
	opacity: 1;
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
	text-align: center;
	font-size: 0.875rem;
	max-width: 280px;
	color: #212121;
	line-height: 1.3;
	margin: 0 auto;
	font-weight: 500;
	text-decoration: none;
}

@media (min-width: 576px) {
	#vernetzt {
		margin: 0;
		text-align: left;
	}
}

#vernetzt span {
	color: #212121;
	display: block;
}

#vernetzt img {
	margin: 0 auto 12px auto;
	display: block;
}

@media (min-width: 576px) {
	#vernetzt img {
		margin: 0 0 12px 0;
	}
}

/* #region ------------------------------------ deco figures ------------------------------------ */

@media (min-width: 576px) {
	#events {
		position: relative;
	}

	#headerpic::before {
		content: "";
		display: block;
		position: absolute;
		pointer-events: none;
		background-position: center;
		background-repeat: no-repeat;
	}

	#headerpic::before {
		animation: float1 6s ease-in-out infinite;
	}

	#headerpic::before {
		background-image: url("../img/clownfisch.png");
		width: 156px;
		height: 118px;
		left: -100px;
		bottom: -50px;
		z-index: 20;
	}

	@keyframes float1 {
		0% {
			transform: translateY(0px) translateX(0px);
		}

		50% {
			transform: translateY(-20px) translateX(10px);
		}

		100% {
			transform: translateY(0px) translateX(0px);
		}
	}

	@keyframes float2 {
		0% {
			transform: translateY(0px) translateX(0px);
		}

		50% {
			transform: translateY(20px) translateX(-10px);
		}

		100% {
			transform: translateY(0px) translateX(0px);
		}
	}
}
