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

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

body {
	font-family: "Jost", sans-serif;
	color: #222222;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #003049;
}

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

.linkUnderline a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: text-decoration 300ms;
}

.linkUnderline a:is(:hover, :focus) {
	text-decoration-color: transparent;
}

b,
strong {
	font-weight: 600;
}

:focus-visible {
	outline: 3px solid #003049 !important;
}

/* #region --------------------- topbar + contrast + styler + kontaktBtn ------------------------ */

#topbar {
	font-size: 1.125rem;
	background: #e61e1e;
	overflow: hidden;
	color: #fff;
}

#topbar a {
	color: inherit;
}

#topbar>.row>div>*:not(h2, address) {
	margin-right: clamp(15px, 2vw, 30px);
}

.kontaktBtn {
	background: #c1121f;
	color: #ffffff;
	line-height: 1.2;
	min-height: 34px;
	max-width: 50%;
	font-size: 0.875rem;
	font-weight: 500;
}

@media (min-width: 992px) {
	.kontaktBtn {
		margin-left: 10px;
		max-width: 40%;
	}
}

.kontaktBtn a {
	color: #fff;
	padding: 8px 60px;
	display: inline-block;
}

.kontaktBtn a:is(:hover, :focus) {
	color: #ffffff;
}

#socials img {
	vertical-align: middle;
}

/* #endregion ------------------ topbar + contrast + styler + kontaktBtn ------------------------ */

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

#logo {
	display: inline-block;
	margin-bottom: 15px;
}

#logo img {
	display: block;
}

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

@media (min-width: 1200px) {
	#logo {
		left: -52px;
	}

	.is-sticky #logo {
		left: -40px;
	}

	.is-sticky #logo img {
		max-height: 80px;
	}
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	.sticky-wrapper {
		height: unset !important;
	}

	nav.horizontally {
		position: static !important;
		padding-top: 15px;
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background-color: #fff;
	}

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #e61e1e;
		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;
		background-color: #ffffff;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #fff;
		padding-bottom: 140px;
		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 {
		background-color: #fff;
	}

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

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background: #ffffff;
		padding-top: 40px;
	}

	.is-sticky .horizontally {
		padding-top: 15px;
		box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
	}

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

	nav.horizontally .navbar-nav li[class*="toplevel"]>ul {
		display: flex !important;
		flex-wrap: wrap;
		column-gap: 35px;
		pointer-events: none;
		position: absolute;
		opacity: 0;
		top: 100%;
		left: -34.4%;
		right: 0;
		z-index: 1000;
		padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 47px);
		margin-top: 30px;
		visibility: hidden;
		transition: opacity 300ms linear;
	}



	nav.horizontally .navbar-nav>li:is(.open, :hover)>ul,
	nav.horizontally .navbar-nav>li.open:focus-within>ul {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
		top: 100%;
	}

	nav.horizontally .navbar-nav>li.open>ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

	nav.horizontally .navbar-nav>li.open:hover>ul {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
		top: 100%;
	}

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

	nav.horizontally li[class*="secondlevel"] {
		margin-bottom: 20px;
		width: 31%;
		border-bottom: 2px solid rgba(41, 35, 0, 0.2);
	}

	nav.horizontally [class*="secondlevel"]>ul {
		display: block !important;
	}
}

/* toplevel */

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

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

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

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 30px 0 25px 0;
		text-align: center;
	}

	nav.horizontally li[class*="toplevel"]+li {
		margin-left: 15px;
	}

	nav.horizontally a[class*="toplevel"][data-toggle="dropdown"] {
		padding-right: 20px;
	}

	nav.horizontally a:is([class*="toplevel"], [class*="secondlevel"])[data-toggle="dropdown"]::after {
		content: "";
		position: absolute;
		display: block;
		right: 2px;
		top: 50%;
		margin-top: -2px;
		width: 6px;
		height: 6px;
		border-radius: 1px;
		display: inline-block;
		border-left: 2px solid #000;
		border-bottom: 2px solid #000;
		opacity: 0.3;
		transform: rotate(-45deg);
		transition: border 300ms linear;
	}
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"]>ul {
	background-color: rgba(255, 255, 255, 0.93);
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"]>ul {
		padding: 10px 0;
		box-shadow: inset -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"]>ul {
		box-shadow: 0 15px 50px 0 rgba(66, 58, 1, 0.2);
	}

	nav.horizontally [class*="toplevel"]>ul::before {
		content: "";
		position: absolute;
		display: block;
		height: 60px;
		left: 0;
		right: 0;
		top: -50px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #222222;
	text-align: left;
	position: relative;
	width: 100%;
	line-height: 1.2;
	text-decoration: none;
}

nav.horizontally a[class*="secondlevel"] {
	font-weight: 500;
	padding: 0 20px 0 0;
	margin-bottom: 10px;
	font-size: 1.125rem;
}

nav.horizontally a[class*="thirdlevel"] {
	font-weight: 400;
	padding: 5px 0;
	font-size: 1rem;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="secondlevel"] {
		padding: 10px 15px;
		font-size: 1rem;
	}

	nav.horizontally a[class*="thirdlevel"] {
		padding: 8px 30px;
	}
}

/* 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: transparent;
	color: #e61e1e;
}

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

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

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

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

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

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

	body.index #headerpic .nivo-controlNav {
		bottom: 100px !important;
	}
}

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

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

.slider-mask {
	display: block;
	background: linear-gradient(to top, #003049, rgba(0, 0, 0, 0) 40%);
}

/* -------------------------------------------- welcome ----------------------------------------- */

#welcome {
	background: #003049;
	color: #fff;
	padding: 30px 0;
}

@media (min-width: 992px) {
	body.index #welcome {
		padding-top: 0;
	}
}

#welcome:has(#tabsBox) {
	background: #003049 linear-gradient(to top, #ffffff 90px, rgba(255, 255, 255, 0) 90px);
	padding-bottom: 0;
}

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

@media (max-width: 991px) {
	#searchbar {
		margin-bottom: 30px;
	}
}

#searchbar .tabHeadline {
	font-size: 1.625rem;
	font-weight: 500;
	margin-bottom: 0;
	color: #fff;
}

#search {
	background: #ffffff;
	display: inline-flex;
	width: 100%;
	position: relative;
}

@media (max-width: 575px) {
	#search {
		margin-top: 20px;
	}
}

#search::before {
	content: "";
	position: absolute;
	right: 60px;
	top: 9px;
	bottom: 9px;
	width: 2px;
	background: rgba(41, 35, 0, 0.2);
}

#search_input {
	color: #222222;
	font-size: clamp(1rem, 2vw, 1.375rem);
	font-style: normal;
	background: transparent;
	padding: 13px clamp(15px, 2vw, 22px);
	border: 0;
	width: 100%;
}

#search_submit {
	width: 60px;
	flex-shrink: 0;
	background: url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	border: none;
	font-size: 0;
	transition: all 300ms linear;
}

#search_submit:is(:hover, :focus) {
	background-color: #e7e7e7;
}

#search_input::placeholder {
	color: inherit !important;
	opacity: 0.8 !important;
	font-style: italic !important;
}

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

/* ----------------------------------------- scroll bottom -------------------------------------- */

#scrollBottom {
	position: relative;
	margin: 45px auto clamp(35px, 6vw, 70px) auto;
	width: 40px;
	height: 38px;
	display: block;
	font-size: 0;
	color: inherit;
	animation: bounceAni 2s infinite 2s;
}

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

#scrollBottom::after {
	content: "";
	width: 25px;
	height: 25px;
	display: inline-block;
	border-left: 5px solid #fff;
	border-bottom: 5px solid #fff;
	transform: rotate(-45deg);
	transition: border 200ms linear;
}

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

@keyframes bounceAni {

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

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

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

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

#content {
	text-align: left;
}

body:not(.index) #content {
	padding-top: clamp(40px, 4vw, 65px);
	padding-bottom: clamp(40px, 7vw, 95px);
}

body.index #aboveContent {
	display: none;
}

/* #region ----------------------------- tabSpecialHeadline ------------------------------------- */

.tabSpecialHeadline {
	font-size: 1rem;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6) {
	text-transform: none;
	font-weight: 600;
	position: relative;
	margin: 0;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
	content: "";
	display: block;
	width: 100px;
	height: 8px;
	background: #003049;
}

.tabSpecialHeadline :is(i, em) {
	text-transform: uppercase;
	font-style: normal;
}

.tabSpecialButton a {
	background: #e61e1e;
	font-size: 1rem;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
	padding: 16px 70px 16px 20px;
	display: inline-block;
	width: 100%;
	position: relative;
	margin-top: 10px;
	line-height: 1.2;
	text-align: center;
}

@media (min-width: 768px) {
	.tabSpecialButton a {
		max-width: 270px;
	}
}

.tabSpecialButton a::before {
	content: "\00BB";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	line-height: 45px;
	font-size: 30px;
	display: block;
	background-color: #c1121f;
	transition: background-color 300ms linear;
}

.tabSpecialButton a:is(:hover, :focus) {
	background: #c1121f;
}

.tabSpecialButton a:is(:hover, :focus)::before {
	background: #e61e1e;
}

.tabSpecialButton .btgrid>.row {
	align-items: center;
}

/* #endregion -------------------------- tabSpecialHeadline ------------------------------------- */

/* #region ------------------------------------ news -------------------------------------------- */

#news {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: clamp(40px, 6vw, 70px) 0;
}

#news .tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
	content: "";
	display: none;
}

#news .tab_link_entries {
	display: grid;
	gap: 30px;
	margin-top: clamp(30px, 4vw, 60px);
}

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

@media (min-width: 992px) {
	#news .tab_link_entries {
		grid-template-columns: repeat(4, 1fr);
	}
}

#news .tab_link_entry {
	font-size: 1rem;
	position: relative;
	box-shadow: 0 60px 30px -30px rgba(66, 58, 1, 0.2);
	background: #ffffff;
	padding: 230px 20px 70px 20px;
	border: none !important;
}

#news .tab_link_entry::after {
	content: "";
	position: absolute;
	display: block;
	top: 180px;
	left: 0;
	right: 0;
	width: 50px;
	height: 50px;
	margin: auto;
	background: #ffffff url("../img/icon-aktuelles.png") center no-repeat;
	border-radius: 50%;
	z-index: 2;
}

#news .tab_link_entry .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	overflow: hidden;
}

#news .tab_link_entry .tab_link_title a::before {
	content: "";
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#news .tab_preview_picture img {
	margin: 0 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#news .tab_link_title a {
	font-weight: 500;
	font-size: 1.25rem;
	display: block;
	color: #e61e1e;
	margin-bottom: 20px;
	line-height: 1.2;
}

#news .tab_date {
	font-size: 0.875rem;
	font-style: italic;
}

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

#news .tab_link_entry .tab_link_mehr a {
	display: inline-block;
	position: absolute;
	text-decoration: none;
	bottom: 20px;
	left: 20px;
	font-size: 0.875rem;
	color: inherit;
	padding: 7px 26px;
	background-color: #ffffff;
	border: 2px solid #e61e1e;
	margin-top: 25px;
	transition: all 200ms linear;
}

#news .tab_link_entry .tab_link_mehr :is(a:hover, :focus) {
	background-color: #e61e1e;
	color: #ffffff;
}

#news .tab_spacer {
	height: 5px;
}

/* #endregion --------------------------------- news -------------------------------------------- */

/* #region ----------------------------------- events ------------------------------------------- */

#events {
	padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 7vw, 90px) 0;
}

#events .tab_link_entries {
	display: grid;
	gap: 30px;
	margin-top: clamp(30px, 4vw, 60px);
}

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

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

#events .tab_link_entries a {
	color: inherit;
}

#events .tab_link_title a {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.2;
}

#events .tab_link_entry:not(:last-of-type) {
	padding-bottom: 25px;
	border-bottom: 2px solid rgba(41, 35, 0, 0.2);
}

@media (min-width: 576px) {
	#events .tab_link_entry:nth-last-of-type(2) {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

@media (min-width: 992px) {
	#events .tab_link_entry:nth-last-of-type(3) {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

#events :is(.tab_link_mehr, .tab_spacer) {
	display: none !important;
}

/* #endregion -------------------------------- events ------------------------------------------- */

/* #region ------------------------------------ spot -------------------------------------------- */

#spot {
	padding: clamp(40px, 7vw, 100px) 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

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

#spot :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 30px;
}

#spot .banner+.tabSpecialButton {
	margin-top: 30px;
}

#spotTabs {
	display: grid;
	gap: 30px;
	margin-top: clamp(30px, 6vw, 70px);
}

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

	#spotTabs .banner img {
		height: 100%;
		object-fit: cover;
	}
}

#spotTabs :is(.tab, .banner img) {
	position: relative;
	transition: all, 200ms;
}

#spotTabs :is(.tab, .banner img):is(:hover, :focus-within) {
	transform: scale(1.05);
}

#spotTabs .tab {
	background: #e61e1e;
	color: #fff;
	line-height: 1.2;
	display: inline-block;
	box-shadow: 0 60px 30px -30px rgba(66, 58, 1, 0.2);
}

#spotTabs .tab a {
	color: inherit;
	text-decoration: none;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	background-color: #e61e1e;
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 600;
	padding: clamp(50px, 10vw, 150px) 20px 30px 20px;
	display: block;
}

/* #endregion --------------------------------- spot -------------------------------------------- */

/* --------------------------------- Sponsoren -------------------------------------------- */

#sponsoren {
	padding: 30px 0;
}

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

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

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

h2,
.h2,
.legacy_h2,
.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

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

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

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

/* #region -------------------------------- footerwrapper --------------------------------------- */

.footerwrapper {
	font-size: 1rem;
	color: #ffffff;
	position: relative;
	background: #e61e1e;
	padding-top: clamp(30px, 4vw, 60px);
	padding-bottom: 30px;
}

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

.footerwrapper a {
	color: #ffffff;
}

.footerwrapper .tabHeadline {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 1.125rem;
	color: #ffffff;
}

/* #endregion ----------------------------- footerwrapper --------------------------------------- */

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
	padding-top: 18px;
	padding-bottom: 18px;
	background-color: #e61e1e;
}

#f5::before {
	content: "";
	display: block;
	margin: 0 auto 18px auto;
	max-width: 1170px;
	width: 100%;
	height: 2px;
	opacity: 0.2;
	background: #ffffff;
}

#f5>.row {
	row-gap: 18px;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

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

#innerfooter li+li::before {
	content: "";
	margin: 0 6px;
}

@media (min-width: 992px) {
	#innerfooter li+li::before {
		margin: 0 15px;
	}
}

@media (max-width: 767px) {
	#innerfooter li {
		display: block;
		text-align: center;
		padding: 5px;
		margin: 0;
	}

	#innerfooter li+li::before {
		display: none;
	}
}

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

#vernetzt {
	gap: 12px;
	text-align: right;
	font-size: 0.8125rem;
	color: #ffffff;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}