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

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

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

a {
	color: #4a5b8c;
}

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

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

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

b,
strong {
	font-weight: 700;
}

.row {
	max-width: 1600px;
	width: 100%;
}

.gap30 {
	gap: 30px 0;
}

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

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

#logo img {
	display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	.dropdown-toggle-button-wrapper .dropdown-toggle-button, .dropdown-toggle-button-wrapper2 .dropdown-toggle-button {
		background: #f2c230;
	}

	.sticky-wrapper {
		height: unset !important;
	}

	nav.horizontally {
		position: static !important;
	}

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

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

	#burgerButton.contrast_light_font::before,
	#burgerButton.contrast_light_font::after,
	#burgerButtonInner.contrast_light_font {
		background-color: #fff !important;
	}

	#burgerButton.contrast_dark_font::before,
	#burgerButton.contrast_dark_font::after,
	#burgerButtonInner.contrast_dark_font {
		background-color: #000 !important;
	}

	#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: #3b4259;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #3b4259;
		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 #262626;
	}

	.navbar-header {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
	}

	.dropdown-toggle-button {
		background-color: #3b4259;
	}

	.dropdown-toggle-button::before,
	.dropdown-toggle-button::after {
		background-color: #f2c230;
	}

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

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

/* menu desktop */

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

	.is-sticky nav.horizontally {
		background: #3b4259;
	}

	.is-sticky nav.horizontally.contrast_dark_font {
		background: #fff;
	}

	nav.horizontally::after {
		content: "";
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 150%;
		background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
		transition: height 300ms, translate 300ms, opacity 300ms;
		translate: 0;
		opacity: 1;
	}

	.is-sticky nav.horizontally::after {
		height: 0;
		translate: 0 -100%;
		opacity: 0.5;
	}

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

	nav.horizontally .navbar-nav {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 30px clamp(10px, 15vw, 80px);
	}

	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: 0;
		right: 0;
		z-index: 1000;
		padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 47px);
		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: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);
		transition: border 300ms;
	}

	nav.horizontally li[class*="secondlevel"]:has(a:is(:hover, :focus)) {
		border-bottom: 2px solid #4a5b8c;
	}

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #fff;
	font-weight: 400;
	text-align: left;
	padding: 10px 15px;
	position: relative;
	font-size: clamp(1.25rem, 2vw, 1.6875rem);
	line-height: 1.2;
	text-decoration: none;
	position: relative;
}

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

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

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	top: 0;
	background: #f2c230;
	transition: width 300ms, opacity 300ms, height 300ms;
	opacity: 0;
	left: 0;
}

nav.horizontally a[class*="toplevel"]::after {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 4px;
	bottom: 0;
	background: #f2c230;
	transition: opacity 300ms, width 300ms;
	opacity: 0;
}

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

	.is-sticky .horizontally a[class*="toplevel"] {
		padding: 25px 10px;
	}

	nav.horizontally a[class*="toplevel"]::before {
		height: 25px;
		width: 4px;
		left: 50%;
		transform: translateX(-50%);
	}

	nav.horizontally a[class*="toplevel"]::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.is-sticky nav.horizontally a[class*="toplevel"]::before {
		height: 15px;
	}
}

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

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
	opacity: 1;
}

@media (max-width: 991px) {

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

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::after,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"].open>a::after,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::after {
	opacity: 1;
	width: 100%;
}

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

	nav.horizontally [class*="toplevel"]>ul {
		margin: 10px;
	}
}

@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: 35px;
		left: 0;
		right: 0;
		top: -35px;
	}
}

/* secondlevel + thirdlevel */

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

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

 nav.horizontally li[class*="secondlevel"] {
    position: relative;
  }

nav.horizontally li[class*="secondlevel"].dropdownpr>a {
	padding-right: 20px;
}

@media (min-width: 992px) {
	nav.horizontally li[class*="secondlevel"].dropdownpr>a::before {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url(../img/pfeil-aktiv.png);
		width: 13px;
		height: 8px;
		opacity: 0.2;
		transition: opacity 300ms;
	}

	 

	.dropdown-toggle-button-wrapper2 {
		display: block;
		opacity: 1;
		width: 20px;
		height: 20px;
		font-size: 20px;
		color: #fff;
		z-index: 55;
		position: absolute;
		right: 0;
		top: 0;
	}

	.dropdown-toggle-button {
		width: 30px;
		height: 30px;
	}
}

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

	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: #4a5b8c;
}

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

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

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

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

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

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

@media (min-width: 1200px) {
	#headerpic {
		background: #3b4259;
	}
}

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

.slider-mask {
	display: block;
	backdrop-filter: grayscale(1);
}

body.index .slider-mask {
	display: block;
	background: linear-gradient(-130deg, #0000 70%, #3b4259cc 70%);
}

@media (min-width: 1200px) {
	/* banner arrows */

	#headerpic .nivo-directionNav a {
		background: #f2c230;
		width: 60px;
		height: 48px;
		transform: skewX(-25deg);
		transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
	}

	#headerpic:is(:hover, :focus-within) .nivo-directionNav a {
		width: 100px;
	}

	#headerpic .nivo-directionNav a:is(:hover, :focus) {
		background: #3b4259;
	}

	#headerpic .nivo-directionNav a::before,
	#headerpic .nivo-directionNav a::after {
		content: "";
		display: block;
		position: absolute;
	}

	#headerpic .nivo-directionNav a::before {
		height: 2px;
		width: 16px;
		right: 16px;
		top: 50%;
		margin-top: -1px;
		background: #3b4259;
		transition: background 300ms linear;
	}

	#headerpic .nivo-directionNav a:is(:hover, :focus)::before {
		background: #ffffff;
	}

	#headerpic .nivo-directionNav a::after {
		height: 8px;
		width: 8px;
		top: 50%;
		margin-top: -5px;
		right: 22px;
		border-left: 2px solid #3b4259;
		border-bottom: 2px solid #3b4259;
		transform: rotate(45deg);
		transition: border-color 300ms linear;
	}

	#headerpic .nivo-directionNav a:is(:hover, :focus)::after {
		border-color: #ffffff;
	}

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

	#headerpic a.nivo-nextNav {
		right: -11px;
		transform: scaleX(-1) skewX(25deg);
	}

	/* banner dots */

	#headerpic .nivo-controlNav {
		font-size: 0;
		max-width: 992px;
		text-align: right;
		left: 50%;
		bottom: 60px;
		transform: translateX(-50%);
	}

	#headerpic .nivo-controlNav li {
		width: auto;
	}

	#headerpic .nivo-controlNav :is(a, button) {
		position: relative;
		background: #ffffff !important;
		opacity: 0.4;
		margin: 0;
		height: 5px;
		width: 30px;
		padding: 0 !important;
		transition: opacity 300ms linear;
	}

	#headerpic .nivo-controlNav :is(a, button) ::before {
		content: "";
		display: block;
		position: absolute;
		top: -15px;
		right: 0;
		bottom: -15px;
		left: 0;
	}

	#headerpic .nivo-controlNav :is(a, button):is(.active, :hover, :focus),
	#headerpic .nivo-controlNav .slick-active :is(a, button) {
		opacity: 1;
		background: #f2c230 !important;
	}
}

@media (min-width: 1200px) {
	#headerpic .nivo-controlNav {
		max-width: 1375px;
		bottom: 90px;
	}
}

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

/* -------------------------------------------- overlay ----------------------------------------- */

#overlay {
	font-weight: 900;
	font-size: clamp(2.1875rem, 3.5vw, 3.75rem);
	line-height: 1;
}

#overlay.contrast_dark_font {
	background: #fff;
}

@media (max-width: 1299px) {
	#overlay {
		padding-top: 25px;
		padding-bottom: 20px;
	}
}

@media (min-width: 1200px) {
	#overlay {
		color: #ffffff;
		text-shadow: 0px 4px 9px rgba(0, 0, 0, 0.5);
		position: absolute;
		z-index: 60;
		right: 0;
		bottom: 50px;
		left: 0;
		pointer-events: none;
	}

	#overlay>div {
		pointer-events: all;
	}

	#overlay a {
		color: inherit;
	}
}

@media (min-width: 1200px) {
	#overlay {
		bottom: 70px;
		width: 100%;
	}
}

#overlay :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(3rem, 5.5vw, 6.25rem);
	text-transform: uppercase;
	margin-bottom: clamp(20px, 4vw, 50px);
	line-height: 0.9;
	font-weight: 900;
}

@media (min-width: 1200px) {
	#overlay :is(h1, h2, h3, h4, h5, h6) {
		color: #f2c230;
	}
}

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

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

@media (min-width: 992px) {
	#content {
		padding-bottom: 60px;
		padding-top: 60px;
	}
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #4a5b8c;
	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.625rem);
}

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

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

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

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

h6,
.h6,
.legacy_h6 {
	font-size: clamp(1.25rem, 3vw, 1.5625rem);
}

/* ----------------------------------------------- Tabs ----------------------------------------------- */

#tabs {
	padding: clamp(50px, 7vw, 100px) 0;
	background: url('../img/hintergrund.png') top center no-repeat;
	position: relative;
	isolation: isolate;
}

#tabs #tabGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

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

	#tabs .tab1 {
		grid-area: 1 / 1 / 3 / 2;
	}

	#tabs .tab2 {
		grid-area: 1 / 2 / 2 / 3;
	}

	#tabs .tab3 {
		grid-area: 2 / 2 / 3 / 3;
	}

	#tabs .tab4 {
		grid-area: 3 / 1 / 4 / 3;
	}

	#tabs .tab5 {
		grid-area: 4 / 1 / 5 / 3;
	}

	#tabs .tab6 {
		grid-area: 5 / 2 / 7 / 3;
	}

	#tabs .tab7 {
		grid-area: 5 / 1 / 6 / 2;
	}

	#tabs .tab8 {
		grid-area: 6 / 1 / 7 / 2;
	}
}

@media (min-width: 768px) {
	#tabs #tabGrid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(4, 1fr);
	}

	#tabs .tab1 {
		grid-area: 1 / 1 / 3 / 2;
	}

	#tabs .tab2 {
		grid-area: 1 / 2 / 2 / 3;
	}

	#tabs .tab3 {
		grid-area: 2 / 2 / 3 / 3;
	}

	#tabs .tab4 {
		grid-area: 3 / 1 / 4 / 3;
	}

	#tabs .tab5 {
		grid-area: 4 / 2 / 5 / 4;
	}

	#tabs .tab6 {
		grid-area: 1 / 3 / 3 / 4;
	}

	#tabs .tab7 {
		grid-area: 3 / 3 / 4 / 4;
	}

	#tabs .tab8 {
		grid-area: 4 / 1 / 5 / 2;
	}
}

@media (min-width: 992px) {
	#tabs #tabGrid {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(3, 1fr);
	}

	#tabs .tab1 {
		grid-area: 1 / 1 / 3 / 2;
	}

	#tabs .tab2 {
		grid-area: 1 / 2 / 2 / 3;
	}

	#tabs .tab3 {
		grid-area: 2 / 2 / 3 / 3;
	}

	#tabs .tab4 {
		grid-area: 3 / 1 / 4 / 3;
	}

	#tabs .tab5 {
		grid-area: 1 / 3 / 2 / 5;
	}

	#tabs .tab6 {
		grid-area: 2 / 3 / 4 / 4;
	}

	#tabs .tab7 {
		grid-area: 2 / 4 / 3 / 5;
	}

	#tabs .tab8 {
		grid-area: 3 / 4 / 4 / 5;
	}
}

#tabs .tab {
	position: relative;
	overflow: hidden;
}

#tabs .linkBox {
	min-height: 200px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 30px;
	align-content: end;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 700;
	transition: transform 300ms;
	height: 100%;
	hyphens: auto;
}

#tabs .linkBox.contrast_light_font {
	outline: 2px solid #fff;
	outline-offset: -2px;
}

#tabs .tab:has(a:is(:hover, :focus)) .linkBox {
	transform: scale(0.95);
}

#tabs .tab1 .linkBox,
#tabs .tab3 .linkBox,
#tabs .tab5 .linkBox,
#tabs .tab8 .linkBox {
	background: #404c73;
}

#tabs .tab2 .linkBox,
#tabs .tab4 .linkBox,
#tabs .tab7 .linkBox {
	background: #a1823f;
}

#tabs .tab6 .linkBox {
	background: #9c3535;
}

#tabs .tab img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
	opacity: 0.2;
	transition: opacity 300ms;
}

#tabs .tab .template-page>.row,
#tabs .tab .template-page>.row>div {
	position: static;
}

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

#tabs .tab a {
	color: inherit;
	text-decoration: none;
}

#tabs .tab a::after {
	content: "";
	position: absolute;
	inset: -100vw;
	outline: dotted 2px pink;
}

/* ----------------------------------------------- breaker ----------------------------------------------- */

#breaker {
	color: #fff;
	background-position: center;
	background-size: cover;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}

#breaker :is(.tabHeadline, a) {
	color: #f2c230;
}

#breaker .tabHeadline {
	text-shadow: 0px 4px 9px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------------- News + Events ----------------------------------------------- */

.nw-ev-head {
	font-size: 1.125rem;
}

.nw-ev-head .tabHeadline {
	text-transform: uppercase;
	margin: 0;
}

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

#nw1 {
	background: #f3f4f5;
}

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

#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: 992px) {
	#nw1 .tab_link_entries {
		grid-template-columns: repeat(4, 1fr);
	}
}

#nw1 .tab_link_entry {
	font-size: 1rem;
	position: relative;
	width: 100%;
	padding: 200px 30px 30px 30px;
	background: #ffffff;
}

#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: 160px;
	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: 140px;
	font-weight: 700;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 6px 20px;
	background: #3b4259;
}

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

#nw1 .tab_link_entries+div,
#nw1 .tab_link_entries .tab_spacer {
	display: none;
}

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

#nw1 .tab_link_entry>div:nth-last-child(2) a {
	font-size: 1rem;
	font-style: italic;
	font-weight: 700;
}

#nw1 .tab_link_entry>div:nth-last-child(2) a::after {
	content: " »";
}

/* ----------------------------------------------- @11ev events -------------------------------------------- */

#ev11 {
	position: relative;
}

#ev11>.row {
	row-gap: clamp(30px, 4vw, 50px);
}

#ev11 .tab_link {
	display: grid;
	gap: 35px;
}

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

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

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

#ev11 .tab_link_entry {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	hyphens: auto;
	color: #262626;
	font-size: 1rem;
	padding: 40px 30px 45px 30px;
	background: url("../img/Kalender.png") top 30px right 30px no-repeat, #ffffff;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {

	#ev11 .tab_link_entry::before,
	#ev11 .tab_link_entry::after {
		content: "";
		position: absolute;
		display: block;
		top: 20px;
		left: -7px;
		width: 57px;
		height: 4px;
		background-color: #ccdc65;
		transition: opacity 0.5s 0s ease;
		opacity: 0;
	}

	#ev11 .tab_link_entry::after {
		top: 30px;
		width: 37px;
	}

	#ev11 .tab_link_entry:hover::before,
	#ev11 .tab_link_entry:hover::after,
	#ev11 .tab_link_entry:focus::before,
	#ev11 .tab_link_entry:focus::after {
		opacity: 1;
	}
}

#ev11 .tab_link_date {
	order: 1;
	color: #4a5b8c;
	font-weight: 700;
	font-style: italic;
	font-size: 2.5rem;
	margin-bottom: 10px;
}

#ev11 .tab_link_title {
	order: 2;
}

#ev11 .tab_link_title a {
	font-weight: 700;
	font-size: 1.25rem;
	color: #262626;
}

#ev11 .tab_link_mandat {
	order: 3;
}

#ev11 .tab_link_mandat a {
	color: #262626;
}

#ev11 div:has(> .tab_link_mehr) {
	display: none;
}

/* ------------------------------------------- buttonStyle ------------------------------------------- */

.buttonStyle a {
	text-decoration: none;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 700;
	font-style: italic;
	color: #ffffff;
	padding: 5px 30px;
	border: 1px solid #ffffff;
	background: #4a5b8c;
	transition: background 300ms linear, color 300ms linear;
}

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

.buttonStyle a:hover,
.buttonStyle a:focus {
	color: #262626;
	background: #f2c230;
}

/* ----------------------------------------------- tabLine -------------------------------------------- */

.tabLineTop,
.tabLineBottom {
	position: relative;
}

.tabLineTop::before,
.tabLineBottom::after {
	content: "";
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	width: 4px;
	background: #f2c230;
	height: clamp(20px, 4vw, 50px);
}

.tabLineTop::before {
	top: 0;
}

.tabLineTop::after {
	bottom: 0;
}

.linePadding {
	padding: clamp(30px, 4vw, 60px) 0;
}

.linePadding.tabLineTop,
.linePadding.big {
	padding-top: clamp(50px, 7vw, 90px);
}

.linePadding.tabLineBottom,
.linePadding.big {
	padding-bottom: clamp(50px, 7vw, 90px);
}

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

#footerTabs {
	background: #3b4259;
	color: #fff;
	font-size: 1rem;
}

#footerTabs .tabHeadline {
	color: #f2c230;
}

#footerTabs a {
	color: inherit;
}

#footerRight {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	align-content: space-between;
}

#footerButtons a:nth-of-type(1),
#footerButtons a:nth-of-type(2) {
	padding-right: 55px;
	position: relative;
}

#footerButtons a:nth-of-type(1)::after,
#footerButtons a:nth-of-type(2)::after {
	content: "";
	position: absolute;
	width: 44px;
	top: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
}

#footerButtons a:nth-of-type(1)::after {
	background-image: url(../img/ETR.png);
	background-color: #0a1395;
}

#footerButtons a:nth-of-type(2)::after {
	background-image: url(../img/deaf-language-icon.png);
	background-color: #fff;
}

#footerButtons a:is(:hover, :focus) {
	border-color: #f2c230;
}

#footerButtons a,
#contrast_style {
	border: 1px solid #fff;
	display: block;
	margin-bottom: 30px;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 1.125rem;
	max-width: 300px;
	transition: border 300ms;
	hyphens: auto;
}

#contrast_style {
	flex-wrap: wrap;
	gap: 10px 0;
}

#contrast_style button {
	color: #000000;
	padding: 0;
	border: none;
	font-family: "Khand", sans-serif;
	display: inline-block;
	width: 44px;
	height: 44px;
	height: 100%;
	font-weight: 400;
	text-align: center;
	background: #ffffff;
	position: relative;
	z-index: 1;
	font-size: 0;
	aspect-ratio: 1;
}

#contrast_style button:is(:hover, :focus) {
	background: #f2c230;
}

#btnContrast {
	margin-block: -10px;
	align-content: center;
	margin-right: -20px;
	flex-wrap: wrap;
}

#btnContrast *+* {
	margin-left: 2px;
}

#contrast_style button::after {
	content: "";
	display: block;
	position: absolute;
	inset: 10px;
	border: 1px solid #262626;
}

#contrast_style button:nth-of-type(1)::after {
	background: linear-gradient(to right, #3b4259, #3b4259 50%, rgba(255, 255, 255, 1) 50%);
}

#contrast_style button:nth-of-type(2)::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, #3b4259 50%);
}

#contrast_style button:nth-of-type(3)::after {
	background: #c55311;
}

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

#f5 {
	padding-block: 30px;
	background-color: #f2c230;
}

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

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #262626;
	text-decoration: none;
	display: inline-block;
	font-size: .875rem;
	text-transform: uppercase;
}

#innerfooter a:hover,
#innerfooter a:focus {
	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: .875rem;
	color: #ffffff;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}

#scrollTopBtn {
	transition: background 300ms, color 300ms;
	border: 1px solid #f2c230;
	display: inline-block;
	text-decoration: none;
	color: #f2c230 !important;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 20px;
}

#scrollTopBtn:is(:hover, :focus) {
	background: #262626;
}

#scrollTopBtn::after {
	content: url(../img/icon-up.png);
	margin-left: 10px;
}