@import url("https://fonts.verwaltungsportal.de/css/?family=Merriweather:300,400,500,600,700,300i,400i,500i,600i,700i");
@import url("https://fonts.verwaltungsportal.de/css/?family=Open+Sans:300,400,500,600,700,300i,400i,500i,600i,700i");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #f5f5ee;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	scrollbar-color: #8d004c #ffffff;
	scrollbar-width: thin;
}

body {
	font-family: "Monarcha Book", "Merriweather", serif;
	font-weight: 400;
	color: #8d004c;
	background: #e6e6d7;
	font-size: clamp(1rem, 2vw, 1.375rem);
	line-height: 1.5;
}

a {
	color: #8d004c;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #8d004c;
}

b,
strong {
	font-weight: 400;
	font-family: "Monarcha", "Merriweather", serif;
}

#overflow {
	overflow: clip;
	position: relative;
}

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

#logo {
	display: inline-block;
	margin: 14px 0;
}

@media (min-width: 992px) {
	#logo {
		margin: 19px 0 9px 0;
	}
}

#logo img {
	display: block;
	max-width: 120px;
}

@media (max-width: 991px) {
	#logo img {
		max-width: 210px;
		width: 100%;
	}
}

@media (min-width: 992px) {
	#menu {
		border-bottom: 2px solid #fff;
		background-color: #8d004c;
	}
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	#menu {
		border-bottom: 2px solid #fff;
		background-color: #8d004c;
	}
	#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: #8d004c;
		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;
		width: 100%;
	}

	.navbar-collapse {
		top: 0;
		background: #8d004c;
		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 {
		position: sticky;
		top: 0;
		scroll-padding-top: auto;
		z-index: 51;
	}
	nav.horizontally .navbar-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		flex-wrap: wrap;
	}

	.navbar-default .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;
	}

	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > u {
		z-index: 1003;
	}
}

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

.navbar-default .navbar-nav > li > a {
	color: #fff;
	font-weight: 400;
	text-align: left;
	padding: 12px 35px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	-webkit-transition: all 0.3s 0s ease;
	-moz-transition: all 0.3s 0s ease;
	-o-transition: all 0.3s 0s ease;
	transition: all 0.3s 0s ease;
	font-family: "Monarcha", "Merriweather", serif;
	hyphens: auto;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li {
		border-bottom: 1px solid rgba(255, 255, 225, 0.5);
	}
}

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

	.navbar-default .navbar-nav > li > a::after {
		content: "";
		display: block;
		position: absolute;
		bottom: 35px;
		left: 0;
		right: 0;
		height: 2px;
		width: 0;
		background: #fff;
		transition: 300ms linear;
		margin: 0 auto;
	}
}

@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: #fff;
	background-color: transparent;
}

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

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
	width: 100%;
}

.navbar-nav > li:focus-within > a::after {
	width: 100%;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	-webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.2);
}

.navbar-default .navbar-nav > li > .dropdown-menu {
	background: #e6e6d7;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	margin: 0;
	background: #e6e6d7;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding: 10px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu {
		margin-top: 14px;
		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::before {
		content: "";
		position: absolute;
		top: -12px;
		left: 50%;
		margin-left: -20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 20px 12px 20px;
		border-color: transparent transparent #e6e6d7 transparent;
	}

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

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

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

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

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	font-weight: 400;
	text-align: left;
	padding: 10px 35px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	hyphens: auto;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
		text-align: center;
		padding-left: 25px;
		padding-right: 25px;
	}
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
	color: #8d004c;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	color: #8d004c;
}

/* ------------------------------------------ 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 {
	background: #e3d2d8;
	color: #8d004c;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a {
	background: #e3d2d8;
	color: #8d004c;
}

.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 {
	background: #e3d2d8;
	color: #8d004c;
}

.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
	background: #e3d2d8;
	color: #8d004c;
}

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

@media (min-width: 1201px) {
	header > .row {
		max-width: 100%;
		width: 100%;
	}
}

header {
	overflow: hidden;
	border-bottom: 2px solid #8d004c;
}

#slider {
	max-height: 300px;
	overflow: hidden;
	position: relative;
}

@media (min-width: 992px) {
	#slider {
		max-height: 500px;
	}

	#headerpic a.nivo-prevNav {
		left: 65px;
	}

	#headerpic a.nivo-nextNav {
		right: 65px;
	}

	header > .row > .col-xs-12 {
		padding-left: 0;
		padding-right: 0;
	}

	header {
		position: relative;
	}

	header > .row {
		background: #f3f4ec;
	}

	.nivo-main-image {
		min-height: 600px;
	}

	.theme-nivo .nivo-controlNav {
		top: 0;
		bottom: auto !important;
	}
}

@media (max-width: 991px) {
	header {
		background-color: #f3f4ec;
	}
}

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

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

.slider-mask {
	display: none;
}

@media (max-width: 991px) {
	#headerpic {
		margin-top: 20px;
		padding-bottom: 20px;
	}
}

/* ----------------------------------------------- Banner Arrows ----------------------------------------------- */

#headerpic .slider-wrapper .nivo-control.active::after {
	width: 20px;
}

#headerpic .slider-wrapper .nivo-directionNav a {
	background: #fff;
	font-size: 0px;
	height: 50px;
	left: 0;
	opacity: 1;
	position: absolute;
	text-indent: unset;
	top: unset;
	width: 50px;
	bottom: 50px;
	font-family: "Open Sans", sans-serif;
}

#headerpic .slider-wrapper .nivo-directionNav a::after {
	content: "\2039";
	font-size: 50px;
	font-weight: 400;
	height: 21px;
	line-height: 12px;
	position: absolute;
	right: 50%;
	top: 50%;
	transform: translate(50%, -50%);
	transition: all, 250ms;
	width: 15px;
	color: #8d004c;
}

#headerpic .nivo-prevNav::after {
	color: #8d004c !important;
}

#headerpic .slider-wrapper .nivo-directionNav a.nivo-nextNav::after {
	content: "\203A";
}

#headerpic .slider-wrapper .nivo-directionNav a.nivo-nextNav {
	background: #f3f4ec;
	left: 0;
	bottom: 0;
}

#headerpic .slider-wrapper .nivo-directionNav a:hover::after {
	color: #5c0131;
}

#headerpic a.nivo-nextNav,
#headerpic a.nivo-prevNav {
	right: 0;
	bottom: 0;
	top: unset;
	background-image: unset;
	padding: 25px;
	opacity: 1;
}

#headerpic a.nivo-prevNav {
	left: unset;
	right: 65px;
}

#bannerTab :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(1.875rem, 4vw, 3rem);
}

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

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

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

.index #content > .row {
	position: relative;
}

@media (min-width: 1200px) {
	.index #content > .row::after {
		content: "";
		display: block;
		position: absolute;
		top: 27px;
		right: -360px;
		height: 424px;
		width: 331px;
		background: url("../img/deko.png") right top no-repeat;
	}
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #8d004c;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Monarcha", "Merriweather", serif;
}

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2rem, 5vw, 3rem);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(1.875rem, 4.5vw, 2.4rem);
}

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

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: 1.7rem;
}

h5,
.h5,
.legacy_h5 {
	font-size: 1.6rem;
}

h6,
.h6,
.legacy_h6 {
	font-size: 1.4375rem;
}

/* ------------------------------------------ 6tab ----------------------------------------- */

#tab6 > .row {
	margin-bottom: 60px;
	border-bottom: solid 2px #8d004c;
}

@media (max-width: 991px) {
	#tab6 > .row {
		padding-block: 0 30px;
	}
}

@media (min-width: 992px) {
	#tab6 > .row {
		margin-bottom: 70px;
	}
	#tab6 {
		padding-top: 60px;
	}
}

#tab6 a {
	color: #8d004c;
}

#tab6 .bildImg-left,
#tab6 .bildImg-right {
	background-size: cover;
	background-position: center;
	min-height: 450px;
	position: relative;
}

@media (min-width: 1200px) {
	#tab6 .bildImg-left,
	#tab6 .bildImg-right {
		min-width: 845px;
	}
	#tab6 .bildImg-right {
		margin-left: -45px;
	}
}

#tab6 .tab {
	margin-left: 0px;
	padding: 30px 60px;
	z-index: 0;
	position: relative;
	font-size: 1.25rem;
	color: #8d004c;
}

@media (min-width: 992px) {
	#tab6 .tab {
		margin: 47px 0;
	}

	.tabRight {
		margin-left: 0px !important;
	}

	.tabLeft {
		margin-right: 0px !important;
	}
}

#tab6 .tabHeadline {
	color: #8d004c;
	font-size: 1.875rem;
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	#tab6 .row {
		max-width: 1920px;
		width: 100%;
	}
}

/* ---------------------------------------------- 6nw neuigkeiten ---------------------------------------------- */

#neuigkeitenBG {
	font-size: 1rem;
	position: relative;
}

#neuigkeiten > .row {
	position: relative;
}

#neuigkeiten > .row::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -50px;
	left: -360px;
	height: 661px;
	width: 291px;
	background: url("../img/spargel-grafik.png") left bottom no-repeat;
}

#neuigkeitenBG > div {
	padding-bottom: 50px;
}

@media (min-width: 992px) {
	#neuigkeitenBG > div {
		padding-bottom: 50px;
	}
}

#neuigkeiten .tabHeadline {
	margin-bottom: 0;
	color: #8d004c;
	font-size: 2.1875rem;
	font-weight: 600;
	margin-bottom: 5px;
}

@media (min-width: 992px) {
	#neuigkeiten .tabHeadline {
		font-size: 3.125rem;
	}
}

#neuigkeiten .tabContent {
	font-size: 1.25rem;
	color: #8d004c;
}

.tabMeet {
	background-color: #8d004c;
	padding: 22px;
	color: #fff;
	position: relative;
	height: 100%;
}

.tabMeet .tabHeadline2 {
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	text-transform: uppercase;
}

#neuigkeiten > .row > div {
	margin-bottom: 50px;
}

#neuigkeiten .theme-nivo .nivo-caption {
	font-family: "Monarcha", "Merriweather", serif;
	font-weight: 400;
	font-size: 1.25rem;
	opacity: 1;
}
.tabMeet2 img {
	margin: 0 auto;
	display: block;
	text-align: center;
	left: 0;
	right: 0;
	position: relative;
}

.tabMeet .banner2 {
	margin-top: 40px;
}

.nivo-caption {
	position: relative !important;
	background-color: rgba(0, 0, 0, 0) !important;
}
/* ----------------------------------------------- footer ----------------------------------------------- */

#footer {
	background-color: #8d004c;
	color: #fff;
	line-height: 1.4;
	font-weight: 400;
	font-size: 1.125rem;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

#footer .footerTab a {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 991px) {
	#footer .row > .col-xs-12:not(:first-child)::before {
		background: rgba(255, 255, 255, 0.2);
		content: " ";
		height: 1px;
		width: 100%;
		display: block;
		margin: 25px 0;
	}

	#footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
	#footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
		display: none;
	}
}

.footerLogo {
	position: relative;
}

.footerTab {
	padding-top: 25px;
	padding-bottom: 25px;
	line-height: 1.2;
}

@media (min-width: 992px) {
	.footerLogo::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		height: 100%;
		width: 2px;
		background: #fff;
	}
}

#innerfooter {
	background-color: #8d004c;
	padding-top: 17px;
	padding-bottom: 17px;
	font-size: 1rem;
	bottom: 0;
	width: 100%;
	z-index: 55;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: block;
	position: relative;
}

#innerfooter a {
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	font-weight: 400;
	position: relative;
}

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

@media (min-width: 500px) {
	#innerfooter li + li {
		margin-left: 30px;
	}

	#innerfooter li {
		display: inline-block;
	}

	#innerfooter li + li::before {
		content: "•";
		position: absolute;
		left: -17px;
		color: #ffffff;
		top: 0;
	}
}

@media (min-width: 992px) {
	#innerfooter li + li {
		margin-left: 50px;
	}
}

@media (min-width: 992px) {
	#innerfooter li + li::before {
		left: -27px;
	}
}

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

#vernetzt {
	font-size: 0.75rem;
	color: #fff;
	line-height: 1.3;
	margin: 0 auto;
	font-weight: 400;
	text-decoration: none;
}

@media (min-width: 992px) {
	#vernetzt {
		margin: 0;
	}
}
@media (max-width: 991px) {
	#vernetzt {
		margin-bottom: 30px;
	}
	#vernetzt img {
		margin-inline: auto;
	}
}
#vernetzt b {
	color: #fff;
	font-weight: 400;
}

#vernetzt span {
	color: #fff;
}

#vernetzt span span {
	display: block;
}

#vernetzt img {
	margin-left: auto;
	margin-bottom: 10px;
}
