@import url("https://fonts.verwaltungsportal.de/import/?family=Source+Sans+3:400,600,400i,600i");

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

body {
	font-family: "Source Sans 3", sans-serif;
	font-weight: 400;
	color: #3d3d3d;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.25rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #eb0f13;
}

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

b,
strong {
	font-weight: 600;
}

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

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

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

#topbar {
	padding: 10px 0;
	background-color: #eb0f13;
}

/* #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: #eb0f13;
		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: #0f396b;
		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: 5px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		width: 100%;
		z-index: 101;
		background: #0f396b;
		transition:
			150ms linear background,
			150ms linear box-shadow;
		position: sticky;
		top: 0;
		left: 0;
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		position: relative;
		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, :hover) > ul,
	nav.horizontally .navbar-nav li.open:focus-within > 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.open > ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

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

/* toplevel */

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

@media (max-width: 991px) {
	nav.horizontally a[class*="toplevel"] {
		margin-bottom: 2px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 15px 12px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		height: 100%;
		min-height: 90px;
		z-index: 52;
	}
}

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

	nav.horizontally a[class*="toplevel"] {
		font-size: 1.125rem;
	}
}

.navbar-default .navbar-nav > li > a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -0;
	z-index: -1;
	transition: background 300ms linear;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a::before {
		transform: skewX(-26deg);
	}
}

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

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 {
	background: #eb0f13;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #ffffff;
}

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

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

	nav.horizontally [class*="toplevel"] > ul {
		left: -26px;
		margin-top: 26px;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		margin-left: 26px;
		margin-top: -24px;
	}

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	background-color: transparent;
	color: #3d3d3d;
	font-weight: 400;
	text-align: center;
	padding: 10px 35px;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

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

@media (min-width: 1200px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		font-size: 1.125rem;
	}
}

/* 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: #ffffff;
	background-color: #0f396b;
}

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

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

#slider {
	max-height: clamp(300px, 45vw, 450px);
	overflow: hidden;
}

@media (min-width: 768px) {
	body.index #headerpic .nivo-controlNav {
		bottom: 25px;
		left: 55%;
		width: 45%;
		pointer-events: none;
	}

	body.index #headerpic .nivo-controlNav :is(a, button) {
		pointer-events: auto;
	}

	body.index #headerpic a.nivo-prevNav {
		left: 58%;
	}

	body.index #headerpic .nivo-directionNav a {
		top: auto;
		bottom: 30px;
	}

	body.index #slider {
		max-height: clamp(450px, 74vw, 660px);
	}
}

@media (min-width: 992px) {
	body.index #headerpic .nivo-controlNav {
		left: 50%;
		width: 50%;
	}

	body.index #headerpic a.nivo-prevNav {
		left: calc(50% + 65px);
	}

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

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

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

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

.slider-mask {
	display: none;
}

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

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

#bannerOverlay {
	color: #fff;
}

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

#bannerOverlay :is(h1, h2, h3) {
}

@media (max-width: 767px) {
	#bannerOverlay {
		padding: 30px 0;
		background: #eb0f13;
	}
}

@media (min-width: 768px) {
	#bannerOverlay {
		position: absolute;
		z-index: 52;
		left: 0;
		bottom: -30px;
		right: 0;
		pointer-events: none;
		font-size: 1.125rem;
	}

	#slogan {
		position: relative;
		padding: 70px 30px 70px 0;
		pointer-events: auto;
	}

	#slogan::after,
	#slogan::before {
		content: "";
		position: absolute;
		bottom: 0;
	}

	#slogan::after {
		transform: skewX(-8deg);
		top: 0;
		left: -20vw;
		right: 0;
		z-index: -1;
		background: #eb0f13;
	}

	#slogan::before {
		right: -9px;
		left: 0px;
		height: 30px;
		background: #252525;
		z-index: -1;
		transform: skewX(-60deg);
	}
}

@media (min-width: 1200px) {
	#slogan::after {
		left: calc((100vw - 1100px) / -2);
	}
}

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

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

#content {
	text-align: left;
	padding-top: 40px;
	padding-bottom: 40px;
}

body:not(.index) #content {
	padding-bottom: 60px;
}

/* ----------------------------------------------- @1nw news -------------------------------------------- */

#nw1 {
	padding-top: 30px;
	padding-bottom: 60px;
}

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

#nw1 .tab {
	color: #ffffff;
	padding: 30px;
	overflow: hidden;
	border-radius: 3px;
	background:
		url("../img/icon-meldungen.png") top 20px right 20px no-repeat,
		#0f396b;
	font-size: 1.125rem;
}

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

#nw1 .tabHeadline {
	color: #ffffff;
	font-weight: 700;
	hyphens: auto;
	font-size: clamp(1.75rem, 2vw, 2rem);
}

#nw1 .tab,
#nw1 .tab_link,
#nw1 .tab_link > div {
	height: 100%;
	min-height: 100%;
}

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

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

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

#nw1 .tab_link_entry {
	font-size: 1rem;
	position: relative;
	width: 100%;
	border-radius: 3px;
	padding: 160px 30px 30px 30px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#nw1 .vorschau {
	opacity: 1;
}

#nw1 .tab_preview_picture {
	background: #ffffff;
}

#nw1 .tab_link_entry::before,
#nw1 .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 120px;
	overflow: hidden;
	border-radius: 3px 3px 0 0;
}

#nw1 .tab_link_entry::before {
	content: "";
	background:
		center / cover no-repeat,
		#666666;
}

#nw1 .tab_preview_picture img {
	position: absolute;
	margin: 0 !important;
	left: 50%;
	top: 50%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	max-width: 350px;
	width: auto;
	height: auto;
	-ms-interpolation-mode: bicubic;
	transform: translateX(-50%) translateY(-50%);
}

#nw1 .tab_date {
	display: inline-block;
	position: absolute;
	z-index: 1;
	left: -1px;
	top: 105px;
	font-weight: 600;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 6px 20px;
	background: #004261;
	border-radius: 0 3px 3px 0;
}

#nw1 .tab_link_title a {
	display: block;
	font-weight: 700;
	font-size: 1rem;
	color: #eb0f13;
	line-height: 1.2;
	margin-bottom: 8px;
}

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

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */

#nw1 .buttonStyle a {
	text-decoration: none;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	padding: 5px 12px;
	border-radius: 3px;
	border: 1px solid #ffffff;
	background: rgba(0, 66, 97, 0.5);
	transition:
		background 300ms linear,
		color 300ms linear;
}

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

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
	color: #0f396b;
	background: #00adef;
}

/* ----------------------------------------------- @1ev events -------------------------------------------- */

#ev1 {
	padding: 60px 0;
}

#eventsBG {
	background-color: #0f396b;
	border-radius: 3px;
	overflow: hidden;
}

#ev1 .tab {
	color: #ffffff;
	font-size: 1.125rem;
	padding: 30px;
	background:
		url("../img/icon-veranstaltungen.png") top 20px right 20px no-repeat,
		#0f396b;
}

#ev1 .tabHeadline {
	color: #ffffff;
	font-size: clamp(1.25rem, 10vw, 1.75rem);
	font-weight: 600;
	margin: 0 0 clamp(15px, 2vw, 25px) 0;
}

@media (min-width: 1200px) {
	#ev1 .tabHeadline {
		hyphens: manual;
	}
}

#ev1 .tab_link_entries {
	display: grid;
}

#ev1 .tab_link,
#ev1 .tab_link > div {
	height: 100%;
	min-height: 100%;
}

#ev1 .tab_link_entry {
	font-size: 1rem;
	position: relative;
	color: #ffffff;
	font-size: 1rem;
	width: 100%;
	padding: 30px;
	border: none !important;
}

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

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

#ev1 .tab_link_title a {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 8px;
	color: #ffffff;
}

@media (max-width: 767px) {
	#ev1 .tab_link_entry:nth-child(3n + 1) {
		background: rgba(0, 0, 0, 0.1);
	}

	#ev1 .tab_link_entry:nth-child(3n + 2) {
		background: rgba(255, 255, 255, 0.1);
	}
}

@media (min-width: 768px) {
	#ev1 .tab_link_entry:is(:nth-child(6n + 1), :nth-child(6n + 5)) {
		background: rgba(0, 0, 0, 0.1);
	}

	#ev1 .tab_link_entry:is(:nth-child(6n + 3), :nth-child(6n + 4)) {
		background: rgba(255, 255, 255, 0.1);
	}
}

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

/* ------------------------------------------- @1ev buttonStyle ------------------------------------------- */

#ev1 .buttonStyle a {
	text-decoration: none;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	padding: 5px 12px;
	border-radius: 3px;
	border: 1px solid #ffffff;
	background: rgba(0, 66, 97, 0.5);
	transition:
		background 300ms linear,
		color 300ms linear;
}

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

#ev1 .buttonStyle a:hover,
#ev1 .buttonStyle a:focus {
	color: #0f396b;
	background: #00adef;
}

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

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

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

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

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

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

h5,
.h5,
.legacy_h5 {
	font-size: clamp(1.375rem, 3vw, 1.5625rem);
}

h6,
.h6,
.legacy_h6 {
	font-size: 22px;
}

/* #region ------------------------------------- breaker ---------------------------------------- */

#breaker {
	padding-top: 160px;
	position: relative;
	background-color: rgba(0, 0, 0, 0.08);
	background-attachment: fixed;
	background-size: cover;
}

@media (min-width: 992px) {
	#breaker {
		font-size: 1.125rem;
	}
}

#breaker::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 30px;
	display: block;
	background: #ffffff;
}

#breakerSlogan strong {
	font-size: 3.75rem;
}

#breakerSlogan {
	position: relative;
	z-index: 1;
	padding: 30px 15px;
	color: #ffffff;
}

@media (max-width: 767px) {
	#breakerSlogan {
		background: #eb0f13;
	}
}

@media (min-width: 768px) {
	#breakerSlogan {
		padding: clamp(30px, 4vw, 45px) 0 clamp(30px, 4vw, 55px) clamp(50px, 8vw, 100px);
	}

	#breakerSlogan::after,
	#breakerSlogan::before {
		content: "";
		position: absolute;
		bottom: 0;
	}

	#breakerSlogan::after {
		transform: skewX(8deg);
		top: 0;
		left: 0;
		right: -20vw;
		z-index: -1;
		background-color: #eb0f13;
	}

	#breakerSlogan::before {
		right: 0;
		left: -5px;
		height: 30px;
		background: #252525;
		z-index: -1;
		transform: skewX(60deg);
	}
}

@media (min-width: 1200px) {
	#breakerSlogan::after {
		right: calc((100vw - 1100px) / -2);
	}
}

#breaker .sloganHeadline {
	color: #ffffff;
	text-transform: uppercase;
	font-size: clamp(1.75rem, 4vw, 2.4rem);
}

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

#breakerSlogan a:is(:hover, :focus) {
	color: #ddec87;
}

/* #endregion ---------------------------------- breaker ---------------------------------------- */

#flyer {
	padding-top: 70px;
}

#flyer > .row {
	gap: 30px 0;
}

#flyer .tab {
	border: 1px solid rgba(0, 0, 0, 0.15);
   height: 100%;
}

#flyer .tabHeadline {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	background: #0f396b;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 40px 20px;
   margin: 0;
}

#flyer .tabContent {
   padding: 30px;
}

/* #region -------------------------------------- tabs2 ----------------------------------------- */

#tabs2 {
	padding: clamp(50px, 10vw, 115px) 0;
}

@media (min-width: 576px) {
	#tabs2 > .row > div:first-child {
		padding-right: 0;
	}

	#tabs2 > .row > div:last-child {
		padding-left: 0;
	}
}

#tabs2 .tab {
	padding: clamp(30px, 5vw, 100px) clamp(15px, 4vw, 100px);
	height: 100%;
	min-height: 100%;
	color: #ffffff;
}

@media (min-width: 992px) {
	#tabs2 .tab {
		font-size: 1.125rem;
	}
}

#tabs2 .tab {
	background: #eb0f13 url("../img/pflanze1.png") bottom left no-repeat;
}

#tabs2 .tab2 {
	background: #eb0f13 url("../img/pflanze2.png") bottom right no-repeat;
}

#tabs2 .tabHeadline {
	color: #ffffff;
	font-size: 1.375rem;
	text-transform: uppercase;
	margin-bottom: clamp(8px, 2vw, 20px);
}

#tabs2 .tabHeadline::before {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #ffffff;
	margin: 0 auto 10px auto;
}

#tabs2 a {
	display: inline-block;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
	font-size: clamp(1rem, 2vw, 1.375rem);
	padding: 7px 20px;
	border: 2px solid #ffffff;
	background: #eb0f13;
	margin-top: clamp(15px, 2vw, 30px);
}

#tabs2 .tab2 .tabContent a {
	background: #eb0f13;
}

#tabs2 :is(.tab, .tab2) a:is(:hover, :focus) {
	color: #eb0f13;
	background: #ffffff;
}

#tabs2 a + a {
	margin-left: 5px;
}

/* #endregion ----------------------------------- tabs2 ----------------------------------------- */

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

#footer {
	color: #ffffff;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 768px) {
	#footer {
		font-size: 1.125rem;
	}
}

#footer > .row:first-child {
	row-gap: 30px;
	padding: 50px 0;
}

#footer > .row:first-child a {
	color: #ffffff;
	text-decoration: underline;
}

@media (max-width: 767px) {
	#footer > .row:last-child {
		padding: 20px 0 25px 0;
	}
}

#footer .footerHeadline {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 1.5625rem;
	margin-bottom: 4px;
}

#footer hr {
	margin: 0 auto;
	max-width: 1170px;
	height: 2px;
	opacity: 1;
	background: #ffffff;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter a {
	color: #ffffff;
	text-decoration: none;
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	padding: clamp(6px, 4vw, 36px) 10px;
}

@media (min-width: 500px) {
	#innerfooter li {
		display: inline-block;
	}
}

#innerfooter a:is(:hover, :focus) {
	background: #0f396b;
}

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

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

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

#vernetzt span span {
	display: block;
}
