@import url("https://fonts.verwaltungsportal.de/import/?family=Red+Hat+Text:400,400i,600,600i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Exo+2:600,600i");

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

body {
	font-family: "Red Hat Text", sans-serif;
	font-weight: 400;
	color: #3c4241;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

body::before {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	background: #f8bd6e linear-gradient(to right, #f28d07 50%, rgba(255, 255, 255, 0) 50%) top left / 40% 100%;
}

a {
	color: #931219;
}

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

b,
strong {
	font-weight: 600;
}

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

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		position: static !important;
		padding: 15px 0;
	}

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

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #0056a0;
		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: #ffffff;
		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: #ffffff;
		padding: 30px 0;
		transition: padding 0.2s 0s linear;
	}

	.is-sticky nav.horizontally {
		padding: 10px 0;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	}

	#myNavbar {
		margin-top: 30px;
		display: flex;
		align-items: center;
		gap: 30px;
	}

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

	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: #3c4241;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Exo 2", sans-serif;
	text-align: left;
	padding: 10px 15px 14px 15px;
	position: relative;
	font-size: 1.0625rem;
	line-height: 1.2;
	text-decoration: none;
   hyphens: auto;
}

@media (max-width: 991px) {
	nav.horizontally li[class*="toplevel"] {
		border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	}

	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"] {
		padding: 11px 0;
	}
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	width: 0;
	height: 4px;
	display: block;
	position: absolute;
	left: 0;
	transform: translateX(-50%);
	bottom: 0;
	background-color: #0056a0;
	opacity: 0;
	transition:
		opacity 300ms linear,
		width 300ms linear;
}

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

/* 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: #931219;
}

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;
	width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #ffffff;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

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

	nav.horizontally [class*="secondlevel"] > ul {
		padding-left: 10px;
	}
}

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

	nav.horizontally [class*="toplevel"] > ul {
		margin-top: 10px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 3px;
	}

	nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul::before {
		content: "";
		position: absolute;
		display: block;
	}

	nav.horizontally [class*="toplevel"] > ul::before {
		height: 10px;
		left: 0;
		right: 0;
		top: -10px;
	}

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #3c4241;
	font-weight: 400;
	text-align: left;
	padding: 9px 25px 9px 35px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	position: relative;
   hyphens: auto;
}

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "";
	display: block;
	position: absolute;
	left: 20px;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #0056a0;
	transition: background 300ms linear;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):not(:nth-child(2)) {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* 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) {
	color: #931219;
}

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

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

/* ----------------------------------------- button design -------------------------------------- */

.buttonStyle a {
	display: inline-block;
	text-decoration: none;
	position: relative;
	text-align: center;
	font-weight: 400;
	color: #2e3332;
	font-size: 1rem;
	width: max-content;
	padding: 8px 24px;
	border-radius: 3px;
	background: #f28d07;
	transition: background 300ms linear;
}

@media (min-width: 768px) {
	.buttonStyle a + a {
		margin-left: 12px;
	}
}

.buttonStyle a:is(:hover, :focus) {
	color: #2e3332;
	background: #f8bd6e;
}

/* #region ------------------------------------ banner ------------------------------------------ */

header {
	position: relative;
	z-index: 1;
}

header::after {
	content: "";
	position: absolute;
	pointer-events: none;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 90px;
	background: #fef2e2;
	z-index: -1;
}

header > .row {
	row-gap: 30px;
}

#slider {
	height: clamp(150px, 26vw, 400px);
	position: relative;
	border-radius: 3px 3px 0 0;
}

.slider-wrapper,
.nivo-main-image,
#slider > a > div {
	height: 100% !important;
}

@media (min-width: 768px) {
	#slider,
	#headerpic {
		max-height: 650px;
	}
}

@media (min-width: 992px) {
	#slider {
		min-height: clamp(300px, 42vw, 400px);
	}

	body.index #slider {
		min-height: 500px;
	}
}

#headerpic {
	padding: 0;
	overflow: hidden;
	position: relative;
	border-radius: 3px 3px 0 0;
	background: #931219;
}

.slider-mask {
	display: none;
}

#headerpic .nivo-directionNav a,
#headerpic .slick-dots * {
	color: #ffffff !important;
}

/* banner overlay */

#bannerOverlay {
	color: #ffffff;
	padding: 30px;
   background: #931219;
   border-bottom-right-radius: 3px;
   border-bottom-left-radius: 3px;
}

@media (max-width: 767px) {

	body:not(.index) header > .row > *:first-child {
		display: none;
	}
}

@media (min-width: 1200px) {
	#bannerOverlay {
		bottom: 0;
	}
}

#bannerOverlay a {
	color: #ffffff;
	text-decoration: underline;
	text-shadow: none;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6, .bannerHeadline) {
	color: #ffffff;
	font-size: clamp(1.75rem, 3vw, 2rem);
	margin: 0 0 5px 0;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------- header tab --------------------------------------- */

#headerTab {
	color: #ffffff;
	height: 100%;
	font-size: 1rem;
	min-height: 100%;
	border-radius: 3px;
	background: #931219;
}

.headerContent {
	padding: 35px 30px 30px 30px;
}

.headerContent :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.75rem;
	margin-bottom: 22px;
	color: #ffffff;
}

.headerContent :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	color: #ffffff;
	display: block;
	font-style: normal;
	font-size: 68%;
}

.headerContent a {
	color: #ffffff;
	text-decoration: underline;
}

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

.search {
	padding: 30px;
}

.headerContent + .headerContent2 {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

form[id^="search"] {
	display: flex;
	flex-wrap: wrap;
}

form[id^="search"] label {
	display: block;
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 18px;
	line-height: 1;
	width: 100%;
}

form [id^="search_input"] {
	color: #383838;
	font-size: 0.875rem;
	font-style: normal;
	padding: 8px 10px 8px 14px;
	border: 0;
	width: calc(100% - 38px);
	background: #ffffff !important;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

form [id^="search_submit"] {
	width: 38px;
	flex-shrink: 0;
	border: none;
	background: #ffffff url("../img/icon-lupe.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	transition: background 150ms linear;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

form [id^="search_submit"]:is(:hover, :focus) {
	background-color: #fef2e2;
}

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

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

/* #region ------------------------------------- ev2 ------------------------------------------- */

#ev2 {
	background: #fef2e2;
	position: relative;
}

#ev2 > .row {
	row-gap: 30px;
	padding: clamp(30px, 5vw, 50px) 0 clamp(30px, 4vw, 40px) 0;
}

@media (min-width: 1200px) {
	#ev2 > .row::after {
		content: "";
		position: absolute;
		pointer-events: none;
		left: -290px;
		bottom: 0;
		width: 202px;
		height: 301px;
		background: url("../img/deko-buch.png") center no-repeat;
	}
}

#ev2 .tabHeadline {
	color: #931219;
	font-size: 1.875rem;
	margin-bottom: 0;
}

#ev2 .tab_link {
	display: grid;
	gap: 30px;
}

#ev2 .tab_link_entries {
	counter-reset: section;
	display: grid;
	gap: 30px;
}

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

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

#ev2 .tab_link_entry {
	overflow: hidden;
	position: relative;
	padding: 45px 20px;
	background: #ffffff;
}

#ev2 .tab_link_entry::before {
	counter-increment: section;
	content: "0" counter(section);
	position: absolute;
	pointer-events: none;
	right: 31px;
	bottom: -37px;
	font-size: 180px;
	font-weight: 600;
	font-family: "Exo 2", sans-serif;
	color: #931219;
	line-height: 1;
	opacity: 0.05;
}

#ev2 .tab_link_title {
	margin-bottom: 6px;
}

#ev2 .tab_link_title a {
	display: block;
	color: #3c4241;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

#ev2 .tab_link_date {
	font-size: 1rem;
}

#ev2 .tab_link_mehr {
	color: transparent;
	font-size: 0;
	margin-top: 35px;
}

#ev2 .tab_link_mehr a {
	display: inline-block;
	text-decoration: none;
	position: relative;
	font-weight: 400;
	color: #2e3332;
	font-size: 1rem;
	padding: 8px 20px;
	border-radius: 3px;
	background: #f28d07;
	transition: background 300ms linear;
}

#ev2 .tab_link_mehr a:hover,
#ev2 .tab_link_mehr a:focus {
	color: #2e3332;
	background: #f8bd6e;
}

/* #endregion ---------------------------------- ev2 ------------------------------------------- */

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

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

/* ------------------------------------------------ infosTabs ----------------------------------------------- */

#infosTabs {
	padding-top: 30px;
	padding-bottom: clamp(30px, 5vw, 75px);
	position: relative;
}

#infosTabs > .row {
	row-gap: 30px;
}

@media (min-width: 1200px) {
	#infosTabs > .row::after {
		content: "";
		position: absolute;
		pointer-events: none;
		right: -115px;
		bottom: 0;
		width: 102px;
		height: 186px;
		background: url("../img/deko-stift.png") center no-repeat;
	}
}

/* ----------------------------------------------- @3nw news -------------------------------------------- */

#nw3 {
	font-size: 1rem;
	display: grid;
	row-gap: 15px;
}

#nw3 .tabHeadline {
	color: #931219;
	font-size: 1.875rem;
	margin-bottom: 0;
}

#nw3 .tab {
	font-size: 1rem;
	margin-bottom: 15px;
}

#nw3 .tab_link_entry {
	font-size: 1rem;
	position: relative;
	margin-left: 185px;
	min-height: 105px;
	padding: 20px;
	display: grid;
	background: #ffffff;
	border-bottom: none !important;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

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

@media (min-width: 992px) {
	#nw3 .tab_link_entries {
		gap: 25px;
		grid-template-columns: repeat(2, 1fr);
	}
}

#nw3 .tab_link_title {
	order: 1;
}

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

#nw3 .tab_date {
	order: 3;
}

#nw3 .tab_link_mandat a {
	color: #3c4241;
}

#nw3 .tab_link_title a {
	display: block;
	color: #931219;
	font-weight: 600;
	margin-bottom: 2px;
}

#nw3 .tab_link_entry::after {
	content: "";
	background:
		center / cover no-repeat,
		#f5f5f5;
}

#nw3 .tab_preview_picture {
	background: #ffffff;
}

#nw3 .tab_link_entry::after,
#nw3 .tab_preview_picture {
	display: block;
	width: 170px;
	height: 100%;
	position: absolute;
	left: -185px;
	top: 0;
	overflow: hidden;
}

@media (max-width: 767px) {
	#nw3 .tab_link_entry {
		margin-left: 0px;
		padding-top: 185px !important;
	}

	#nw3 .tab_link_entry::after,
	#nw3 .tab_preview_picture {
		display: block;
		width: 100%;
		height: 170px;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0px;
		right: 0px;
		overflow: hidden;
	}
}

#nw3 .tab_preview_picture img {
	position: absolute;
	z-index: 2;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

#nw3 .tab_spacer,
#nw3 .tab_link_entry > div:nth-last-child(2) {
	display: none;
}

/* ----------------------------------------- @3nw tab_link_mehr ---------------------------------------- */

#nw3 .tab_link_mehr {
	text-align: center;
	color: transparent;
	margin-top: 10px;
	font-size: 0;
}

#nw3 .tab_link_mehr a {
	display: inline-block;
	text-decoration: none;
	position: relative;
	font-weight: 400;
	color: #2e3332;
	font-size: 1rem;
	padding: 8px 20px;
	border-radius: 3px;
	background: #f28d07;
	transition: background 300ms linear;
}

#nw3 .tab_link_mehr a:hover,
#nw3 .tab_link_mehr a:focus {
	color: #2e3332;
	background: #f8bd6e;
}

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

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

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

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

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

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

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

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

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

footer {
	font-size: 1rem;
	background: #fef2e2;
}

footer,
footer * {
	color: #3c4241;
}

#footer {
	position: relative;
	background: center / cover no-repeat;
	padding: 55px 0 45px 0;
	box-shadow: inset 0 0 0 100vw rgba(254, 242, 226, 0.9);
}

#footer::before {
	content: "";
	position: absolute;
	pointer-events: none;
	right: 0;
	left: 0;
	top: 10px;
	bottom: 10px;
	border-top: 2px solid #0056a0;
	border-bottom: 2px solid #0056a0;
}

#footer::after {
	content: "";
	display: block;
	background: url("../img/koala-footer.webp") center no-repeat;
	width: 232px;
	height: 237px;
	position: absolute;
	left: calc(50% - 116px);
	bottom: 0;
}

@media (min-width: 992px) {
	#footer::after {
		left: calc(50% - 20px);
	}
}

#footer > .row {
	row-gap: 30px;
}

#footer .template-page :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 5px;
	color: #931219;
	font-size: 1.375rem;
}

#footer .footer-tab a {
	color: #931219;
	text-decoration: underline;
}

@media (min-width: 1200px) {
	#footer .footer-tab {
		position: relative;
	}

	#footer .footer-tab::after {
		content: "";
		position: absolute;
		pointer-events: none;
		right: -205px;
		bottom: -45px;
		width: 174px;
		height: 233px;
		background: url("../img/deko-radierer.png") center no-repeat;
	}
}

#innerfooter {
	padding-top: 17px;
	padding-bottom: 17px;
	font-size: 1rem;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: block;
}

#innerfooter a {
	color: #3c4241;
	text-decoration: none;
	font-weight: 400;
}

@media (max-width: 575px) {
	#innerfooter a {
		padding: 6px;
		display: inline-block;
	}
}

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

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

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

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

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

#vernetzt {
	gap: 16px;
	text-align: right;
	font-size: 0.875rem;
	color: #3c4241;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}
