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

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

body {
	font-family: "Geologica", sans-serif;
	font-weight: 300;
	color: #191919;
	background: #f9f5ef;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.5;
}

a {
	color: #215462;
}

a:is(:hover, :focus) {
	color: #215462;
	text-decoration: underline;
}

b,
strong {
	font-weight: 600;
}

/* ------------------------------------------ contact ------------------------------------------- */

.contact {
	background-color: #931741;
	color: #fff;
	font-size: 0.875rem;
	padding-top: 7px;
	padding-bottom: 7px;
}
.contact a {
	color: #fff;
	text-decoration: underline;
}
.contact a:is(:hover, :focus) {
	text-decoration: none;
}

@media (max-width: 991px) {
	nav .contact {
		padding: 15px;
	}
}

.contact p {
	margin: 0;
	display: inline-block;
}

.contact p + p {
	margin-left: clamp(15px, 2vw, 25px);
}

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

#topbar {
	padding: 9px 0 20px 0;
}
#topbar > .row {
	row-gap: 30px;
}

@media (min-width: 992px) {
	#topbar > .row > *:last-child {
		margin-top: 0px;
	}
}

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

/* #region ----------------------------------- search ------------------------------------------- */

form[id^="search"] {
	background: #ebe4db;
	display: inline-flex;
	border-radius: 30px;
	margin: 15px 15px 0 15px;
}

@media (min-width: 992px) {
	form[id^="search"] {
		min-width: 184px;
		margin: 0 0px 0 14px;
		max-width: 230px;
	}
}

form [id^="search_input"] {
	color: #191919;
	font-size: 0.875rem;
	font-style: normal !important;
	background: transparent;
	border: 0;
	width: 100%;
	border-radius: 30px;
	padding: 6px 14px;
	font-weight: 300;
	opacity: 1;
}

form [id^="search_submit"] {
	border: 5px solid #6e1231;
	background: #6e1231 url("../img/icon-lupe.png") center / 20px auto no-repeat;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	margin: -5px -5px -5px 0;
	font-size: 0;
	aspect-ratio: 1/1;
	min-width: 48px;
	flex-shrink: 0;
	transition: transform 150ms linear;
}

@media (min-width: 992px) {
	form [id^="search_submit"] {
		border-color: #ffffff;
	}
}

form [id^="search_submit"]:is(:hover, :focus) {
	transform: scale(1.2);
}

form [id^="search_input"]::placeholder {
	color: #191919 !important;
	opacity: 1 !important;
	font-style: normal !important;
	font-weight: 300 !important;
}

/* #endregion -------------------------------- search ------------------------------------------- */

/* ------------------------------------------- styler ------------------------------------------- */
#contrast_style {
	margin-right: 30px;
}
#style {
	margin-right: 35px;
}

#contrast_style h2 {
	font-size: 0.875rem;
	color: #191919;
	font-weight: 300;
	margin: 0 0 5px 0;
	text-transform: uppercase;
}
#contrast_style button {
	border: none;
	color: #fff;
	display: inline-block;
	border-radius: 50%;
	font-weight: 400;
	text-align: center;
	background: #6e1231;
	line-height: 0;
	font-size: 1rem;
	min-width: 36px;
	min-height: 36px;
	transition: background-color 150ms linear;
	padding: 0;
}

#contrast_style button:is(:hover, :focus) {
	background-color: #67c3ca;
}
#contrast_style button + button {
	margin-left: 6px;
}

#contrast_style img {
	vertical-align: middle;
}

@media (min-width: 992px) {
	#style h2 {
		font-size: 0.875rem;
		color: #191919;
		font-weight: 300;
		margin: 0 0 5px 0;
		text-transform: uppercase;
	}

	#style button {
		border: none;
		color: #fff;
		display: inline-block;
		border-radius: 50%;
		font-weight: 400;
		text-align: center;
		background: #6e1231;
		line-height: 1;
		font-size: 1rem;
		min-width: 36px;
		min-height: 36px;
		transition: background 150ms linear;
	}

	#style button + button {
		margin-left: 6px;
	}

	#style button:is(:hover, :focus) {
		background: #67c3ca;
		color: #191919;
	}
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* 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;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

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

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

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

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

	#burgerButtonInner {
		top: 16px;
	}

	#burgerButton::before {
		top: 24px;
		content: "";
	}

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

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

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #931741;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		overflow-y: auto;
		transition:
			left 300ms linear,
			opacity 300ms linear,
			box-shadow 600ms linear;
		box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
	}

	.navbar-collapse:is([aria-expanded="true"], .in) {
		left: 0;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
	}

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

	.dropdown-toggle-button-wrapper {
		top: 7px;
	}

	.dropdown-toggle-button-wrapper2 {
		top: 4px;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background-color: #931741;
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

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

	nav.horizontally .navbar-nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
	}

	nav.horizontally .navbar-nav [class*="secondlevel"] > ul {
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav li {
		position: relative;
	}

	nav.horizontally .navbar-nav li:is(.open:focus-within, :hover) > ul,
	nav.horizontally .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
	}

	nav.horizontally .navbar-nav li:is(:hover, :focus-within) > ul {
		z-index: 1003;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #ffffff;
	font-weight: 600;
	text-align: left;
	padding: 10px 15px 15px 15px;
	text-transform: uppercase;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="toplevel"].dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally li[class*="toplevel"] + li {
		margin-left: 20px;
	}

	nav.horizontally a[class*="toplevel"] {
		text-align: center;
		padding: 17px 0;
	}
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	width: 20px;
	height: 9px;
	display: block;
	position: absolute;
	left: 30px;
	bottom: 0;
	border-top-left-radius: 90px;
	border-top-right-radius: 90px;
	background-color: #ffffff;
	opacity: 0;
	transition: opacity 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::before {
		left: calc(50% - 15px);
	}
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open > a,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"] > a,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus) {
	color: #ffffff;
	background-color: transparent;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a::before,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open > a::before,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus)::before {
	opacity: 1;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #f4f4f4;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] > ul {
		padding: 10px 0;
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	nav.horizontally [class*="toplevel"] > ul {
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px;
		left: 50%;
		transform: translate(-50%, 0);
	}

	nav.horizontally [class*="secondlevel"] > ul {
		margin-top: -18px;
		border-radius: 4px;
		margin-left: 10px;
	}

	nav.horizontally [class*="secondlevel"] > ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #191919;
	font-weight: 300;
	text-align: center;
	padding: 8px 25px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		text-align: left;
	}

	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
	background: #67c3ca;
	color: #191919;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

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

#slider {
	max-height: clamp(300px, 42vw, 400px);
	position: relative;
}

@media (min-width: 992px) {
	body.index #slider {
		max-height: clamp(400px, 62vw, 650px);
	}

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

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

#headerpic {
	padding: 0;
	overflow: hidden;
	position: relative;
}

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

.slider-mask {
	display: block;
	background:
		url("../img/banneroverlay.png") center bottom / 100% auto no-repeat,
		linear-gradient(to top, rgba(25, 25, 25, 0.9), rgba(25, 25, 25, 0));
}
/* #region -------------------------------- scroll bottom --------------------------------------- */

#scrollBottom {
	font-size: 0;
	border-radius: 50%;
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: #f9f5ef;
	animation: bounceAni 2s infinite 2s;
	transition: all 0.2s ease-in;
	position: absolute;
	left: calc(50% - 20px);
	bottom: 20px;
	z-index: 50;
}

@media (min-width: 768px) {
	#scrollBottom {
		bottom: 45px;
	}
}

#scrollBottom:is(:hover, :focus) {
	animation-play-state: paused;
}

#scrollBottom::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 1px;
	margin-top: 13px;
	display: inline-block;
	border-left: 2px solid #215462;
	border-bottom: 2px solid #215462;
	transform: rotate(-45deg);
	transition: border 300ms linear;
}

@keyframes bounceAni {
	0%,
	100%,
	20%,
	50%,
	80% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

#scrollBottom:is(:hover, :focus)::after {
	border-color: #931741;
}

/* #endregion ----------------------------- scroll bottom --------------------------------------- */

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

#content {
	text-align: left;
	padding-bottom: clamp(30px, 4vw, 60px);
	padding-top: clamp(30px, 4vw, 60px);
}

/* ----------------------------------------------- @13nw news -------------------------------------------- */

#nw13 {
	padding-top: clamp(30px, 4vw, 60px);
	padding-bottom: clamp(30px, 5vw, 85px);
	background: #ebe4db;
}

#nw13 .tabHeadline {
	text-transform: uppercase;
	font-size: clamp(1.75rem, 2vw, 1.9375rem);
	color: #215462;
	font-weight: 600;
	margin-bottom: 0;
}

#nw13 > .row {
	row-gap: clamp(30px, 3vw, 45px);
}

#nw13 .tab_link_entries {
	display: grid;
	gap: 30px;
}

@media (min-width: 576px) {
	#nw13 .tab_link_entries {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	#nw13 .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

#nw13 .tab_link_entry {
	width: 100%;
	padding: 20px;
	display: grid;
	background: #ffffff;
	border-radius: 10px;
	color: #191919;
	font-size: 1.125rem;
	font-weight: 300;
	border: solid 3px transparent;
}

#nw13 .tab_link_entry:is(:hover, :focus) {
	border: solid 3px #67c3ca;
}

#nw13 .tab_link_title {
	order: 1;
	margin-bottom: 8px;
}

#nw13 .vorschau {
	order: 2;
	opacity: 1;
}

#nw13 .tab_date {
	order: 3;
	font-size: 1rem;
}

#nw13 .tab_link_title a {
	font-weight: 600;
	color: #215462;
	font-size: 1.25rem;
	text-transform: uppercase;
}

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

#nw13 .tab_link_entry .tab_link_mehr,
#nw13 .tab_spacer,
#nw13 .tab_preview_picture {
	display: none;
}

#nw13 .tab_link_mehr a {
	display: inline-block;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	background: #6e1231;
	padding: 9px 60px 9px 24px;
	border-radius: 30px;
	position: relative;
	text-decoration: none !important;
}

#nw13 .tab_link_mehr a::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	width: 34px;
	background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23fff'/%3E%3C/svg%3E") center / 24px auto no-repeat;
	border-radius: 50%;
	transition: background 300ms linear;
}

#nw13 .tab_link_mehr a:is(:hover, :focus) {
	color: #191919;
	background-color: #67c3ca;
}

#nw13 .tab_link_mehr a:is(:hover, :focus)::after {
	background-color: rgba(0, 0, 0, 0.9);
}

#nw13 .tab_link_mehr a + a {
	margin-left: 10px;
}
/* ----------------------------------------------- @13ev events -------------------------------------------- */

#ev13 {
	padding-top: clamp(30px, 4vw, 55px);
	padding-bottom: clamp(30px, 5vw, 85px);
	background: #f9f5ef;
	/* Replace url with (../img/YOUR-IMAGE.png) */
}

#ev13 .tabHeadline {
	text-transform: uppercase;
	font-size: clamp(1.75rem, 2vw, 1.9375rem);
	color: #215462;
	font-weight: 600;
	margin: 0;
}

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

#ev13 > .row {
	row-gap: clamp(30px, 3vw, 45px);
}

#ev13 .tab_link_entries {
	display: grid;
	gap: 30px;
}

@media (min-width: 576px) {
	#ev13 .tab_link_entries {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	#ev13 .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

#ev13 .tab_link_entry {
	width: 100%;
	padding: 35px 20px 40px 20px;
	display: grid;
	color: #191919;
	background: #fff;
	border: solid 3px transparent;
	font-weight: 300;
	font-size: 1.125rem;
	border-radius: 10px;
}

#ev13 .tab_link_entry:is(:hover, :focus) {
	border: solid 3px #67c3ca;
}

#ev13 .tab_link_title {
	order: 1;
}
#ev13 .tab_link_title a {
	color: #215462;
	font-size: 1.25rem;
	text-transform: uppercase;
	font-weight: 600;
}

#ev13 .tab_link_mandat {
	order: 2;
}
#ev13 .tab_link_mandat a {
	font-size: 1.125rem;
	font-weight: 300;
	color: #191919;
}

#ev13 .tab_link_date {
	order: 3;
}
#ev13 .tab_link_date {
	font-size: 1rem;
	font-weight: 300;
	color: #191919;
}

#ev13 .tab_link_mehr a {
	display: inline-block;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	background: #6e1231;
	padding: 9px 60px 9px 23px;
	border-radius: 30px;
	position: relative;
	text-decoration: none !important;
}

#ev13 .tab_link_mehr a::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	width: 34px;
	background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23fff'/%3E%3C/svg%3E") center / 24px auto no-repeat;
	border-radius: 50%;
	transition: background 300ms linear;
}

#ev13 .tab_link_mehr a:is(:hover, :focus) {
	color: #191919;
	background-color: #67c3ca;
}

#ev13 .tab_link_mehr a:is(:hover, :focus)::after {
	background-color: rgba(0, 0, 0, 0.9);
}
#ev13 .tab_link_mehr a + a {
	margin-left: 10px;
}

#ev13 .tab_link .tab_link_mehr,
#ev13 .tab_spacer,
#ev13 .tab_preview_picture {
	display: none;
}
/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #215462;
	font-weight: 600;
	line-height: 1.2;
	font-family: "Geologica", sans-serif;
}

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

h2,
.h2,
.legacy_h2 {
	font-size: clamp(2rem, 3.5vw, 2.1875rem);
}

h3,
.h3,
.legacy_h3 {
	font-size: 1.875rem;
}

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

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

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

/* #region ----------------------------------- footer ------------------------------------------- */

#footer {
	background-color: #ebe4db;
	padding: 36px 0 32px 0;
	color: #191919;
	hyphens: auto;
	font-size: 1rem;
}

@media (max-width: 767px) {
	#footer > .row > .col-xs-12 + * {
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		margin-top: 15px;
		padding-top: 15px;
	}
}

@media (max-width: 991px) {
	#footer > .row > .col-xs-12:last-child {
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		margin-top: 15px;
		padding-top: 15px;
	}
}

#footer a:not(#vernetzt) {
	color: #215462;
	text-decoration: underline;
}

#footer a:is(:hover, :focus) {
	text-decoration: none;
}

#footer .footerSlogan {
	font-size: clamp(1.375rem, 4vw, 1.875rem);
	font-weight: 400;
}

#footer :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.5625rem;
	text-transform: uppercase;
	margin-bottom: 12px;
}
#innerfooter {
	background-color: #931741;
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 1rem;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: block;
}

#innerfooter a {
	color: #fff;
	text-decoration: none;
	font-weight: 300;
}

#innerfooter a:is(:hover, :focus) {
	text-decoration: underline;
}

@media (min-width: 576px) {
	#innerfooter li + li::before {
		content: "•";
		margin: 0 clamp(15px, 2vw, 25px);
		color: #fff;
	}

	#innerfooter li {
		display: inline-block;
	}
}

/* #endregion -------------------------------- footer ------------------------------------------- */

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

#vernetzt {
	gap: 13px;
	text-align: right;
	font-size: 0.875rem;
	color: #191919;
	line-height: 1.3;
	font-weight: 300;
	text-decoration: none;
}
#vernetzt :is(b, strong) {
	color: #215462;
}

#vernetzt span span {
	display: block;
}

#footerRight {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	align-content: space-between;
}

#besucher {
   width: 270px;
   max-width: 100%;
   border: solid 2px #215462;
   padding: 10px 20px;
   display: flex;
   justify-content: space-between;
   gap: 10px 30px;
   flex-wrap: wrap;
   color: #215462;
   font-weight: 300;
}

#besucher :is(b, strong) {
   font-weight: 400;
}

/* ------------------------------------------ Kontrast ------------------------------------------ */
.contrast_dark #search1 {
	background-color: #fff;
}
.contrast_dark #logo {
	background-color: #fff !important;
	padding: 10px;
}
.contrast_dark .footerSlogan img {
	background-color: #fff !important;
	padding: 10px;
}
.contrast_dark .is-sticky nav.horizontally {
	border-bottom: solid 1px #fff;
}
.contrast_dark #style button {
	border: solid 1px #fff !important;
}
.contrast_dark #scrollBottom {
	background-color: #fff !important;
}
.contrast_dark #ev13 .tab_link_mehr a {
	border: solid 1px #fff !important;
}
.contrast_dark #nw13 .tab_link_mehr a {
	border: solid 1px #fff !important;
}

.contrast_dark #burgerButton::before,
.contrast_dark #burgerButton::after,
.contrast_dark #burgerButtonInner {
	background-color: #fff !important;
}
.contrast_light #burgerButton::before,
.contrast_light #burgerButton::after,
.contrast_light #burgerButtonInner {
	background-color: #000 !important;
}
.contrast_dark .dropdown-toggle-button {
	background-color: #000 !important;
}

.contrast_light #ev13 .tab_link_mehr a {
	border: solid 1px #000 !important;
}
.contrast_light #nw13 .tab_link_mehr a {
	border: solid 1px #000 !important;
}

.contrast_light #search1 {
	background-color: #fff;
	border: solid 1px #000 !important;
}
.contrast_light #style button {
	border: solid 1px #000 !important;
}
