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

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

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

@media (min-width: 768px) {
	body {
		background:
			url(../img/deko-header-links-v3.png) top left no-repeat,
			url(../img/deko-footer-rechts-v3.png) bottom right no-repeat,
			#fff;
	}
}

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

.maindiv {
	max-width: 1800px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
	margin: 0 auto;
	background: #ffffff;
}

a {
	color: #005b9e;
}

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

b,
strong {
	font-weight: 600;
}

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

.static {
	position: static;
}

/* LOGO MIT TEXT -------------------------------------------------------- */

.logo {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
	text-decoration: none !important;
}

.logo .template-page {
	width: auto;
}

.logo .cleaner {
	display: none;
}

.logoText {
	color: #252525;
	font-size: clamp(1.5625rem, 3vw, 2.875rem);
	align-content: center;
	line-height: 1.1;
   font-weight: 700;
}

@media (max-width: 575px) {
	.logoText {
		hyphens: auto;
	}
}

.logo img {
	display: block;
	max-width: 30vw;
}

/* LOGO MIT TEXT -------------------------------------------------------- */

/* #region ----------------------------------- topbar ------------------------------------------- */

#topbar {
	padding: 15px 0;
	background: #f7f7f7;
	font-size: 0.9375rem;
	line-height: 1;
}

@media (min-width: 576px) {
	#topbar {
		padding: 22px 0;
	}
}

@media (min-width: 992px) {
	#topbar {
		padding: 8px 0;
	}
}

#topbar > .row {
	row-gap: 15px;
}

/* search */

#search {
	background: #f7f7f7;
	display: inline-flex;
}

@media (max-width: 991px) {
	#search {
		background: #ffffff;
	}
}

#search_input {
	color: #252525;
	font-style: normal;
	background: transparent;
	padding: 6px 2px;
	border: 0;
	width: 100%;
	font-size: 1rem;
}

@media (max-width: 991px) {
	#search_input {
		padding: 8px 10px;
	}
}

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

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

#search_input::placeholder {
	color: #252525 !important;
	opacity: 1 !important;
	font-style: normal !important;
}

/* styler */

#style {
	margin-left: 30px;
	column-gap: 8px;
}

#style button {
	border: 2px solid #005b9e;
	color: #fff;
	width: 1.375rem;
	height: 1.375rem;
	font-weight: 400;
	text-align: center;
	font-size: 0.875rem;
	background: #005b9e;
	padding: 0;
	display: inline-block;
}

#style button:is(:hover, :focus) {
	color: #252525;
	background: #fff;
}

:is(#contrast_style, #style) h2 {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0 5px 0 0;
	width: unset;
}

/* #endregion -------------------------------- topbar ------------------------------------------- */

/* #region ----------------------------------- topbar2 ------------------------------------------ */

#topbar2 {
	padding: 19px 0 15px 0;
}

/* #endregion -------------------------------- topbar2 ------------------------------------------ */

/* #region ----------------------------------- welcomeTxt ------------------------------------------ */

#welcomeTxt {
	padding: 15px 0;
	border-top: 2px solid #e3e3e3;
}

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

#welcomeTxt .tab :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 20px;
}

#welcomeTxt .tab :is(h1, h2, h3) {
	font-size: clamp(1.75rem, 3vw, 2.8125rem);
}

#welcomeTxt .tab a {
	text-decoration: underline;
}

/* #endregion -------------------------------- welcomeTxt ------------------------------------------ */

/* #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: #005b9e;
		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: #005b9e;
		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: 9px;
	}

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

	.dropdown-toggle-button {
		background: rgba(255, 255, 255, 0.1) !important;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background: rgba(0, 91, 158, 0.9);
	}

	.is-sticky nav.horizontally {
		width: 100% !important;
	}

	.sticky-wrapper,
	nav.horizontally {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		z-index: 101;
	}

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

	nav.horizontally .navbar-nav li[class*="toplevel"] > ul {
		position: absolute;
		top: auto;
		right: 0;
		left: 50% !important;
		transform: translate(-50%);
		width: 100%;
		z-index: 1000;
		margin: 0;
		padding: 10px 25px 20px 25px;
		max-height: 60vh;
		overflow: visible;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
		background: rgba(0, 91, 158, 0.9);
		box-shadow: 0 8px 8px 0 rgba(84, 73, 73, 0.1);
	}

	nav.horizontally li[class*="toplevel"] > ul:not(.mCustomScrollbar),
	nav.horizontally li[class*="toplevel"] > ul .mCSB_container {
		column-count: 3;
		column-gap: 30px;
		max-width: 962px;
		margin: 0 auto;
		padding: 0;
		height: auto;
	}

	nav.horizontally li[class*="secondlevel"] {
		float: none;
		page-break-inside: avoid;
		break-inside: avoid;
		display: table !important;
	}

	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;
	}

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

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

	#mCSB_1_scrollbar_vertical {
		left: 50%;
		margin-left: calc(962px / 2);
	}
}

@media (min-width: 1200px) {
	nav.horizontally li[class*="toplevel"] > ul:not(.mCustomScrollbar),
	nav.horizontally li[class*="toplevel"] > ul .mCSB_container {
		column-count: 4;
		max-width: 1170px;
		padding-top: 25px;
		padding-bottom: 30px;
	}

	#mCSB_1_scrollbar_vertical {
		margin-left: calc(1140px / 2);
	}
}

nav.horizontally li:is([class$="_end"], [class$="_start"]) {
	display: none;
}

/* toplevel */

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

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

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

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

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

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

/* secondlevel + thirdlevel dropdown-box */

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] ul {
		padding: 10px;
		background: rgba(0, 91, 158, 0.9);
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="secondlevel"] > ul {
		display: block;
	}
}

/* secondlevel + thirdlevel */

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

nav.horizontally a[class*="secondlevel"] {
	padding: 8px 35px 8px 5px;
	font-size: 1.125rem;
	font-weight: 400;
}

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

@media (min-width: 992px) {
	nav.horizontally li[class*="secondlevel"] {
		min-width: 250px;
		width: 100%;
	}

	nav.horizontally a[class*="secondlevel"] {
		padding: 15px 35px 11px 20px;
	}

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

@media (min-width: 992px) {
	nav.horizontally a[class*="secondlevel"] {
		border-bottom: 4px solid rgba(241, 239, 236, 0.4);
	}

	.navbar-default li[class*="secondlevel"] > a::after {
		content: "";
		display: block;
		position: absolute;
		bottom: -4px;
		left: 0;
		height: 4px;
		width: 0;
		background: #ffe401;
		transition: all 300ms;
	}
}

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

@media (min-width: 992px) {
	nav.horizontally li[class*="secondlevel"]:is(:hover, :focus-within) > a::after,
	nav.horizontally li[class*="secondlevel"] > a:is(:hover, :focus)::after,
	nav.horizontally li[class*="secondlevel"].open > a::after,
	nav.horizontally li[class*="secondlevel"].open > a:is(:hover, :focus)::after,
	nav.horizontally li[class*="secondlevel"][class*="_over"] > a::after,
	nav.horizontally li[class*="secondlevel"][class*="_over"] > a:is(:hover, :focus)::after {
		width: 20%;
	}
}

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

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

header {
	position: relative;
}

@media (min-width: 1200px) {
	header::after {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		right: -60px;
		width: 184px;
		height: 470px;
		background: url(../img/deko-header-rechts-v3.png) no-repeat;
		z-index: 6;
	}
}

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

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

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

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

#headerpic {
	padding: 0;
	position: relative;
	color: #ffffff;
	background: #014f86;
}

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

.slider-mask {
	display: block;
	background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5), rgba(244, 240, 231, 0));
	opacity: 0.8;
}

@media (min-width: 992px) {
	.index #headerpic .nivo-controlNav {
		bottom: 105px;
	}
}

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

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

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

.tab-aside + .tab-aside {
	margin-top: 20px;
}

.tab-aside {
	padding: 10px 20px 20px 20px;
	background: #005b9e;
	font-size: 1rem;
}

.tab-aside,
.tab-aside * {
	color: #ffffff;
}

.tab-aside .tabHeadline {
	border-bottom: 2px solid #ffffff;
	margin: 0;
	padding-bottom: 10px;
	margin: 0 -20px 20px -20px;
	font-size: 1.5625rem;
	width: calc(100% + 40px);
}

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

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

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

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

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

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 -------------------------------------- 2tab ------------------------------------------ */

#tabs {
	padding-top: 30px;
}

@media (min-width: 992px) {
	#tabs {
		padding: 0;
		position: relative;
		margin-top: -60px;
		z-index: 55;
	}
}

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

#tabs .tab {
	background: #005b9e;
}

#tabs .tab,
#tabs .tab :is(a, h1, h2, h3, h4, h5, h6) {
	color: #ffffff;
}

#tabs .tab:is(:hover, :focus) {
	background: #ffe401;
}

#tabs .tab:is(:hover, :focus),
#tabs .tab:is(:hover, :focus) :is(a, h1, h2, h3, h4, h5, h6) {
	color: #252525;
}

#tabs .tab a {
	font-size: clamp(1.125rem, 3vw, 1.5625rem);
	font-weight: 700;
	line-height: 1.4;
	padding: 20px 34px;
	min-height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	hyphens: auto;
	position: relative;
	text-decoration: none !important;
}

#tabs .tab a::before,
#tabs .tab a::after {
	content: "";
	pointer-events: none;
	position: absolute;
	bottom: 13px;
	left: 15px;
	right: 15px;
	top: 13px;
	border: 4px solid #fff;
	opacity: 0.2;
	text-decoration: none !important;
}

#tabs .tab a:is(:hover, :focus)::before {
	opacity: 0;
}

#tabs .tab a::after {
	border: 4px solid #252525;
	opacity: 0;
}

#tabs .tab a:is(:hover, :focus)::after {
	opacity: 0.09;
}

/* #endregion ----------------------------------- 2tab ------------------------------------------ */

/* -------------------------------------------- linkList ---------------------------------------- */

#linkList {
	padding: 60px 0;
	min-height: 453px;
	background: #005b9e center / cover fixed;
	border-top: solid 10px #005b9e;
	font-weight: 400;
}

#linkList .tabHeadline {
	color: #ffffff;
	font-size: clamp(1.75rem, 4.5vw, 2.1875rem);
	text-align: center;
	margin-bottom: 0;
}

#linkList :is(h4, h5, h6) {
	color: #ffffff;
	font-weight: 600;
	font-size: 1.125rem;
}

#linkList :is(i) {
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 400;
}

#linkList a {
	display: inline-block;
	text-decoration: none;
	background-color: #ffe401;
	color: #252525;
	font-weight: 600;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	transition: all 300ms linear;
	padding: 20px 50px;
	border: solid 1px transparent;
}

#linkList a:is(:hover, :focus) {
	color: #005b9e;
	background: #ffffff;
	border: solid 1px #ffe401;
}

/* ----------------------------------------------- @2ev events -------------------------------------------- */

#ev2 {
	padding-top: clamp(40px, 4vw, 80px);
	padding-bottom: clamp(40px, 4vw, 80px);
	background-color: #f9f9f9;
	margin-bottom: 40px;
	position: relative;
}

@media (min-width: 1200px) {
	#ev2::after {
		content: "";
		position: absolute;
		background: url(../img/deko-veranstaltungenr-links-v3.png) no-repeat;
		width: 190px;
		height: 470px;
		top: -55px;
		z-index: 0;
		pointer-events: none;
		left: 0;
		display: block;
	}

	#ev2::before {
		content: "";
		position: absolute;
		background: url(../img/deko-veranstaltungenr-rechts-v3.png) no-repeat;
		width: 158px;
		height: 393px;
		bottom: -35px;
		z-index: 0;
		pointer-events: none;
		right: 0;
		display: block;
	}
}

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

#ev2 .tab {
	color: #252525;
}

#ev2 .tab a {
	color: #ffffff;
}

#ev2 .tabHeadline {
	color: #252525;
	font-size: clamp(1.75rem, 4.5vw, 2.1875rem);
	font-weight: 700;
	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: 700;
	font-style: italic;
	color: #252525;
	line-height: 1;
	opacity: 0.1;
}

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

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

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

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

#ev2 .tab_link_mehr a {
	text-decoration: none;
	display: inline-block;
	color: #252525;
	font-weight: 600;
	font-size: 1rem;
	padding: 8px 20px;
	background: #ffe401;
	transition:
		color 300ms linear,
		background 300ms linear;
	border: solid 1px transparent;
}

#ev2 .tab_link_mehr a:hover,
#ev2 .tab_link_mehr a:focus {
	color: #005b9e;
	background: #ffffff;
	border: solid 1px #005b9e;
}

#ev2 .tab_link_mandat {
	font-size: 0;
	display: none;
}

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

footer {
	font-size: 1rem;
	position: relative;
}

body:not(.index) footer {
	border-top: 10px solid #1818a0;
}

@media (min-width: 1600px) {
	footer::before {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: -60px;
		height: 467px;
		width: 190px;
		background: url(../img/deko-footer-links-v3.png) no-repeat;
		background-size: 10vw;
		pointer-events: none;
	}
}

#footer {
	background: #ffffff;
	padding: clamp(40px, 9vw, 110px) 0 clamp(40px, 5vw, 90px) 0;
}

@media (max-width: 991px) {
	#footer > .row {
		row-gap: 30px;
	}
}

@media (min-width: 992px) {
	footer .tab {
		padding-bottom: 45px;
	}
}

footer .specialHeadline {
	text-transform: uppercase;
}

.footerTab {
	font-size: 1.125rem;
	color: #252525;
	line-height: 1.7;
}

.footerTab a {
	font-style: italic;
}

footer .tab a + a {
	margin-left: clamp(15px, 2vw, 30px);
}

.footerHeadline {
	color: #252525;
	font-size: clamp(1.125rem, 3vw, 1.75rem);
}

footer :is(iframe, .iframe-wrapper-manual-enabling) {
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}

/* footer2 */

#footer2 {
	padding: 15px 0;
	background: #005b9e;
}

#footer2 > .row {
	row-gap: 15px;
}

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

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

#vernetzt {
	gap: 18px;
	text-align: right;
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
}

#vernetzt strong {
	font-weight: 600;
}

#vernetzt span span {
	display: block;
}

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

#innerfooter {
	font-size: 1rem;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #ffffff;
	font-size: 0.9375rem;
}

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

#innerfooter li + li::before {
	content: "•";
	margin: 0 clamp(15px, 2vw, 25px);
	color: #ffffff;
}

/* #region -------------------------------------- scroll top ------------------------------------ */

#scrollTop {
	color: #ffffff;
	display: block !important;
	font-size: 0;
	opacity: 1 !important;
	background: #005b9e;
	width: 50px;
	height: 50px;
	position: relative;
	margin: 0 auto;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
	#scrollTop {
		position: fixed;
		bottom: 165px;
		right: 38px;
		z-index: 55;
	}
}

#scrollTop:is(:hover, :focus) {
	background-color: #0f1d64;
}

#scrollTop::after,
#scrollTop::before {
	content: "";
	position: absolute;
	border-radius: 1px;
}

#scrollTop::after {
	left: 20px;
	width: 8px;
	height: 8px;
	top: 5px;
	margin-top: 10px;
	display: inline-block;
	border-right: 2px solid #ffffff;
	border-top: 2px solid #ffffff;
	transform: rotate(-45deg);
}

#scrollTop::before {
	left: 50%;
	width: 2px;
	height: 20px;
	top: 50%;
	background-color: #ffffff;
	margin-left: -1px;
	margin-top: -10px;
}

/* #endregion ----------------------------------- scroll top ------------------------------------ */
