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

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

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

a {
	color: #c22d3d;
}

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

b,
strong {
	font-weight: 700;
}

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

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

#topbar {
	padding: 12px 0;
}

#topbar>.row {
   max-width: 1920px;
   width: 100%;
}

@media (min-width: 992px) {
   #topbar>.row{
      padding-inline: 45px;
      
   }
}

form[id*="search"] {
	height: 33px;
	display: inline-block;
	position: relative;
}

@media (min-width: 768px) {
	form[id*="search"] {
		min-width: 360px;
	}
}

input[id*="search_input"] {
	color: #404040;
	font-size: 16px;
	font-style: normal;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 43px;
	height: 33px;
	width: 100%;
}

#search_input2 {
	color: #fff;
}

input[id*="search_submit"] {
	width: 33px;
	background: url("../img/suche-icon-header.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 33px;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	font-size: 0;
	transition: background-color 300ms linear;
}

#search_submit2 {
	background: url("../img/suche-icon.png") center no-repeat;
}

input[id*="search_submit"]:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

#search_input::placeholder {
	color: color-mix(in srgb, #404040 100%, transparent) !important;
}

#search_input::-ms-input-placeholder {
	color: #404040 !important;
}

#search_input::-webkit-input-placeholder {
	color: #404040 !important;
}

#search_input::-moz-placeholder {
	opacity: 1;
}

#search_input:-moz-placeholder {
	opacity: 1;
}

#search_input2::placeholder {
	color: color-mix(in srgb, #fff 100%, transparent) !important;
}

#search_input2::-ms-input-placeholder {
	color: #fff !important;
}

#search_input2::-webkit-input-placeholder {
	color: #fff !important;
}

#search_input2::-moz-placeholder {
	opacity: 1;
}

#search_input2:-moz-placeholder {
	opacity: 1;
}

.socialMedia {
	padding-left: 10px;
	margin-left: 10px;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.socialMedia .template-page > .row > .col-xs-12 {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width: 767px) {
	.socialMedia .template-page > .row > .col-xs-12 {
		justify-content: center;
	}
}

footer .socialMedia {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

footer .socialMedia a {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 767px) {
	footer .socialMedia {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
		margin-top: 10px;
	}

	#search2 {
		width: 100%;
	}
}

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	#menu {
		padding: 0;
		position: static !important;
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
		box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		position: relative;
		z-index: 1002;
		display: block;
		width: 46px;
		height: 40px;
		border-radius: 2px;
		cursor: pointer;
		background-color: #ffffff;
		padding: 3px;
	}

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

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

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

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

	#burgerButtonInner {
		top: 10px;
	}

	#burgerButton:before {
		top: 18px;
	}

	#burgerButton:after {
		top: 26px;
	}

	#burgerButton:before,
	#burgerButton:after {
		content: "";
		display: block;
	}

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

	.navbar-collapse {
		top: 0;
		background: #c22d3d;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		-webkit-transition:
			left 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			left 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			left 300ms linear,
			opacity 300ms linear;
		-o-transition:
			left 300ms linear,
			opacity 300ms linear;
		transition:
			left 300ms linear,
			opacity 300ms linear;
	}

	.navbar-collapse.collapse.in {
		left: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.navbar-header {
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		background-color: #ffffff;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
		-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	.navbar-collapse.in:after {
		content: "";
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		display: block;
		width: 90px;
		background-color: rgba(0, 0, 0, 0.5);
	}
}

@media (min-width: 575px) and (max-width: 991px) {
	.navbar-collapse {
		width: 60%;
	}

	.navbar-collapse.collapse.in:after {
		width: 40%;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	#menu-sticky-wrapper {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		width: 100%;
	}

	#menu {
		background: rgba(194, 45, 60, 0.8);
		margin: 0 auto;
		right: 0;
		left: 0;
	}

	nav.horizontally .navbar-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-between !important;
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		flex-wrap: wrap;
	}

	nav.horizontally .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
	}

	nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav > li,
	nav.horizontally .navbar-nav > li > .dropdown-menu > li {
		position: relative;
	}

	.navbar-default .navbar-nav li[class*="toplevel"] > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul {
		display: block !important;
		pointer-events: none;
		opacity: 0;
		-webkit-transition: opacity 300ms linear;
		-moz-transition: opacity 300ms linear;
		-ms-transition: opacity 300ms linear;
		-o-transition: opacity 300ms linear;
		transition: opacity 300ms linear;
	}

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

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

	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > u {
		z-index: 1003;
	}
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav > li > a {
	color: #fff;
	font-weight: 700;
	text-align: left;
	padding: 15px 35px 15px 15px;
	position: relative;
	font-size: 1.25rem;
	text-transform: uppercase;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li {
		border-bottom: 1px solid rgba(68, 68, 68, 0.2);
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		padding: 22px 5px 22px 5px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 100%;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		display: block;
	}
}

.navbar-default .navbar-nav > li > a::after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	bottom: 0;
	height: 6px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #fff;
	-webkit-transition: width 300ms linear;
	-moz-transition: width 300ms linear;
	-ms-transition: width 300ms linear;
	-o-transition: width 300ms linear;
	transition: width 300ms linear;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a::after {
		bottom: 10px;
	}
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
	width: 100%;
}

.navbar-nav > li:focus-within > a::after {
	width: 100%;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	background: #404040;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li > .dropdown-menu {
		padding: 10px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu {
		left: 50%;
		-moz-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}

	.navbar-default .navbar-nav > li > .dropdown-menu::after {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		top: -20px;
		margin-left: -20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 20px 20px 0 20px;
		border-color: #ffffff transparent transparent transparent;
		-webkit-transition: top 150ms linear;
		-moz-transition: top 150ms linear;
		-ms-transition: top 150ms linear;
		-o-transition: top 150ms linear;
		transition: top 150ms linear;
	}

	.navbar-default .navbar-nav > li:hover > .dropdown-menu::after {
		top: 0;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		margin-top: -30px;
		margin-left: 10px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	color: #ffffff;
	font-weight: 400;
	text-align: left;
	padding: 8px 25px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
		text-align: center;
		padding: 13px 25px;
      font-size: 1.25rem;
	}
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li:hover > a,
.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
	background: rgba(255, 255, 255, 0.2);
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
	background: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------- @2b banner ----------------------------------------------- */

#slider {
	max-height: 300px;
	overflow: hidden;
	position: relative;
}

@media (min-width: 992px) {
	#slider {
		max-height: 550px;
	}

	body.index #slider {
		max-height: 770px;
	}

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

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

#headerpic {
	margin: 0 auto;
	position: relative;
	width: 100%;
}

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

.slider-mask {
	display: none;
}

/* ----------------------------------------------- bannerOverlay ----------------------------------------------- */

@media (max-width: 991px) {
	#bannerOverlay {
		padding: 30px 0;
		border-bottom: 4px solid #9faeba;
	}
}

@media (min-width: 992px) {
	#bannerOverlay {
		position: absolute;
		pointer-events: none;
		right: 0;
		left: 0;
		bottom: 20px;
		z-index: 12;
	}
}

#bannerOverlay > .row > * {
	pointer-events: auto;
}

#slogan {
	color: #004261;
	font-weight: 700;
	line-height: 1.2;
}

#slogan p {
	font-size: clamp(1rem, 3vw, 1.25rem);
	display: block;
	padding: 10px;
	background: #c22d3d;
	color: #fff;
	width: fit-content;
	max-width: 660px;
}

@media (min-width: 992px) {
	#slogan p {
		padding: 8px 20px 8px 20px;
	}
}

#slogan p:first-of-type {
	color: #404040;
	padding: 10px 0;
	border-bottom: 4px solid #404040;
	background: rgba(255, 255, 255, 0.9);
	font-family: "Winky Sans", sans-serif;
	font-style: italic;
	letter-spacing: 1px;
	font-size: clamp(1rem, 3vw, 1.5625rem);
}

@media (min-width: 992px) {
	#slogan p:first-of-type {
		padding: 15px 20px;
	}
}

#sloganLinks {
	margin-top: 20px;
}

.buttonStyle a {
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	letter-spacing: 2px;
	line-height: 1;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	padding: 12px 34px 12px 14px;
	backface-visibility: hidden;
	background: #c22d3d;
	transition: background 300ms linear;
}

.buttonStyle a:hover,
.buttonStyle a:focus {
	background: #404040;
}

.buttonStyle a::after {
	content: "";
	position: absolute;
	display: inline-block;
	pointer-events: none;
	top: 50%;
   transform: translateY(-50%);
	right: 14px;
	margin: auto;
	width: 12px;
	height: 12px;
	background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23ffffff"><path d="m560-240-56-58 142-142H160v-80h486L504-662l56-58 240 240-240 240Z"/></svg>') center no-repeat;
	transition: right 300ms linear;
}

.buttonStyle a:hover::after,
.buttonStyle a:focus::after {
	right: 10px;
}

.buttonTextStyle a {
	font-size: clamp(1.125rem, 2vw, 1.3125rem);
	font-weight: 700;
	position: relative;
	padding-right: 18px;
}

#ev13 .buttonTextStyle a {
	color: #fff;
}

.buttonTextStyle a::before {
	content: "»";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.buttonTextStyle a:is(:hover, :focus) {
	text-decoration: underline;
}

/* ----------------------------------------------- scrollBottom ----------------------------------------------- */

#scrollBottom a {
	position: relative;
	text-align: center;
	display: block;
	font-size: 0;
	width: 30px;
	height: 30px;
	margin: 50px auto 10px auto;
	border: 2px solid #deeaf3;
	background: rgba(64, 64, 64, 0.5);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
	-webkit-animation: bounceAni 2s infinite 2s;
	animation: bounceAni 2s infinite 2s;
	transition:
		background 200ms ease-in,
		animation-play-state 200ms ease-in;
}

@media (min-width: 1200px) {
	#scrollBottom a {
		margin-top: 65px;
	}
}

#scrollBottom a:hover,
#scrollBottom a:focus {
	background: #c22d3d;
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}

#scrollBottom a::after {
	content: "";
	position: absolute;
	display: inline-block;
	pointer-events: none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 13px;
	height: 13px;
	background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="18px" viewBox="0 -960 960 960" width="18px" fill="%23deeaf3"><path d="M440-800v487L216-537l-56 57 320 320 320-320-56-57-224 224v-487h-80Z"/></svg>') center no-repeat;
}

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

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

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

/* ----------------------------------------------- @13ev events -------------------------------------------- */

#ev13 {
	padding-top: clamp(30px, 4vw, 55px);
	padding-bottom: clamp(30px, 4vw, 55px);
	background-size: cover;
	background-position: center;
}

#nw6 .tabHeadline,
#ev13 .tabHeadline {
	text-transform: uppercase;
	font-size: clamp(1.75rem, 2vw, 2.1875rem);
	color: #fff;
	font-weight: 700;
	margin: 0;
}

#nw6 .tabHeadline {
	color: #c22d3d;
}

#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;
	background: #ffffff;
	font-size: 1.125rem;
}

#ev13 .tab_link_mandat a {
	color: #c22d3d;
}

#nw6 .tab_link_title a,
#ev13 .tab_link_title a {
	font-weight: 700;
	color: #c22d3d;
	font-size: 1.125rem;
	text-transform: uppercase;
}

#ev13 .tab_link .tab_link_mehr,
#ev13 .tab_spacer,
#ev13 .tab_preview_picture {
	display: none;
}

/* ----------------------------------------------- @6nw news -------------------------------------------- */

#nw6 {
	font-size: 1.125rem;
	padding-top: clamp(30px, 4vw, 55px);
	padding-bottom: clamp(30px, 4vw, 55px);
	overflow: hidden;
}

#nw6 > .row {
	row-gap: 30px;
	z-index: 12;
}

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

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

@media (min-width: 768px) {
	#nw6 .tab_link {
		margin-top: 18px;
	}

	#nw6 .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

#nw6 .tab_link_entry {
	text-align: center;
	position: relative;
	width: 100%;
	border-bottom: none !important;
	padding: 165px 20px 20px 20px;
	background: #ffffff;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

#nw6 .tab_link_entry::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	height: 150px;
	background:
		center / cover no-repeat,
		#666666;
}

#nw6 .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	height: 150px;
	overflow: hidden;
	background: #ffffff;
}

#nw6 .tab_preview_picture img {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
}

#nw6 .tab_date {
	position: absolute;
	display: inline-block;
	z-index: 1;
	left: 50%;
	top: 134px;
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	padding: 4px 10px;
	background: #404040;
	transform: translateX(-50%);
}

#nw6 .tab_link_title a {
	text-align: center;
}

#nw6 .tab_link_entry > div:nth-last-child(2) {
	font-size: 0;
	line-height: 0;
}

#nw6 .tab_link_entry > div:nth-last-child(2) > a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	text-align: center;
	font-size: 0;
	color: #ffffff;
	font-weight: 400;
	display: flex !important;
	justify-content: center;
	align-items: center;
	align-content: center;
	background: linear-gradient(to bottom, rgba(194,45,61, 0.8), rgba(194,45,61, 0.8) 150px);
	opacity: 0;
	transition: opacity 200ms linear;
}

#nw6 .tab_link_entry:hover div:nth-last-child(2) > a {
	opacity: 1;
}

#nw6 .tab_link_entry div:nth-last-child(2) > a::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -60px;
	width: 80px;
	height: 80px;
	background: url("../img/mehr-erfahren.png") center no-repeat;
}

#nw6 div:nth-last-child(2) > a::after {
	content: "mehr erfahren";
	margin-top: 100px;
	font-size: 1.25rem;
}

#nw6 > .row::after {
	content: "";
	background: url(../img/kind-mit-schild.png) no-repeat bottom right;
	width: 415px;
	height: 484px;
	position: absolute;
	right: -370px;
	bottom: -55px;
	z-index: -1;
}

/* ------------------------------------------------ @28tab ----------------------------------------------- */

#tab28 {
	padding-top: clamp(30px, 4vw, 55px);
	padding-bottom: clamp(30px, 4vw, 55px);
	background: #c22d3d;
}

@media (max-width: 991px) {
	#tab28 > .row > *:nth-child(3) {
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	#tab28 > .row > * + * {
		margin-top: 30px;
	}
}

#tab28 .tabHeadline {
	font-weight: 700;
	font-size: clamp(1.25rem, 3vw, 2.5rem);
	text-transform: uppercase;
}

#tab28 .flip-box-back .tabHeadline {
	font-size: clamp(1.25rem, 3vw, 1.875rem);
}

#tab28 .tabBox {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 100%;
	min-height: 370px;
	perspective: 1000px;
	background: #fff;
	box-shadow: 0px 0px 16px 12px rgba(0, 0, 0, 0.2);
	transition: all, 300ms;
}

#tab28 .tabBox::before {
	content: "";
	position: absolute;
	pointer-events: none;
	display: block;
	width: 38px;
	height: 18px;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 1;
	z-index: 1;
	background: url("../img/pfeil.png") center no-repeat;
	transition: opacity 0.4s 0s ease;
}

#tab28 .tabBox:hover::before,
#tab28 .tabBox:focus-within::before {
	opacity: 0;
}

#tab28 .template-page > .row,
#tab28 .template-page {
	min-height: 100%;
}

#tab28 .flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#tab28 .flip-box:hover .flip-box-inner,
#tab28 .flip-box:focus-within .flip-box-inner {
	transform: rotateY(180deg);
	opacity: 1;
}

#tab28 .flip-box:hover .flip-box-inner .flip-box-front,
#tab28 .flip-box:focus-within .flip-box-inner .flip-box-front {
	opacity: 0;
	pointer-events: none;
}

#tab28 .flip-box-front,
#tab28 .flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	min-height: 370px;
	flex-direction: column;
}

#tab28 .flip-box-front {
	transition: opacity 0.4s 0s ease;
}

#tab28 .flip-box-front p,
#tab28 .flip-box-front blockquote {
	display: none;
}

#tab28 .flip-box-back {
	transform: rotateY(180deg);
}

#tab28 .flip-box-back :is(p:has(img), h1, h2, h3, h4, h5, h6) {
	display: none;
}

#tab28 .flip-box-back .tabHeadline {
	position: relative;
	margin-bottom: 35px;
	display: block !important;
}

#tab28 .flip-box-back .tabHeadline::after {
	content: "";
	position: absolute;
	pointer-events: none;
	bottom: -20px;
	left: 0;
	right: 0;
	width: 7px;
	height: 3px;
	margin: 0 auto;
	background: #ffffff;
}

#tab28 .flip-box-front p:has(img) {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: flex !important;
	align-content: center;
	align-items: center;
	justify-content: center;
}

#tab28 p:has(img)::after {
	content: "";
	position: absolute;
	pointer-events: none;
	top: 0;
	bottom: 0;
	left: -25px;
	right: -25px;
	width: calc(100% + 50px);
	background: #fff;
	transition: opacity 0.4s 0s ease;
	opacity: 0.8;
	z-index: 0;
}

#tab28 p:has(img):hover::after,
#tab28 p:has(img):focus::after {
	opacity: 0;
}

#tab28 .flip-box-front p:has(img) img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#tab28 .flip-box-front :is(h1, h2, h3, h4, h5, h6) {
	position: absolute;
	z-index: 12;
}

#tab28 .flip-box-back {
	transform: rotateY(180deg);
	min-height: auto;
	justify-content: end;
	height: unset;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
	background-color: #404040;
	padding-top: 30px;
	padding-bottom: 40px;
	color: #ffffff;
}

@media (min-width: 992px) {
	footer > .row::before {
		content: "";
		background: url(../img/trompetenspieler.png) no-repeat bottom center;
		width: 300px;
		height: 559px;
		left: -348px;
		bottom: -40px;
		position: absolute;
	}
}

footer hr {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
	footer .row > .col-xs-12:not(:first-child)::before {
		background: #000000;
		content: " ";
		height: 1px;
		width: 100%;
		display: block;
		margin: 25px 0;
		opacity: 0.2;
	}

	footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
	footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
		display: none;
	}
}

#innerfooter {
	font-size: 1rem;
}

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

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: block;
}

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

#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: 18px;
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}

/* ------------------------------------------ scrollTop ------------------------------------------ */

#scrollTop {
	width: 60px;
	height: 60px;
	background: #fff;
	position: fixed;
	z-index: 52;
	bottom: 120px;
	right: 40px;
	font-size: 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition:
		background 300ms linear,
		transform 300ms linear;
}

#scrollTop:hover {
	background: #c22d3d;
	transform: translateY(-5px);
}

#scrollTop::before,
#scrollTop::after {
	content: "";
	width: 6px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #c22d3d;
	transition: background-color 300ms linear;
}

#scrollTop::before {
	transform: translate(-50%, -50%) rotate(45deg);
	margin-left: -5px;
	margin-top: -2px;
}

#scrollTop::after {
	transform: translate(-50%, -50%) rotate(-45deg);
	margin-left: 5px;
	margin-top: -2px;
}

#scrollTop:hover::before,
#scrollTop:hover::after {
	background-color: #fff;
}
