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

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

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

a {
	color: #1852a8;
}

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

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

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

b,
strong {
	font-weight: 700;
}

/*  ---------------------------------- topbar ---------------------------------------- */

#topbar {
	background: #e6e6e6;
	padding: 7px 0;
	font-size: 0.9375rem;
}

#topbar img {
	vertical-align: middle;
}

#search {
	height: 33px;
	background: #f9f9f9;
	display: inline-block;
	position: relative;
}

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

#search_input {
	color: #2d2d2d;
	font-size: 16px;
	font-style: italic;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 43px;
	height: 33px;
	width: 100%;
}

#search_submit {
	width: 33px;
	background: #f9f9f9 url("../img/icon-suche.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 33px;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	font-size: 0;
	-webkit-transition: background-color 300ms linear;
	-moz-transition: background-color 300ms linear;
	-ms-transition: background-color 300ms linear;
	-o-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
}

#search_submit:hover {
	background-color: #e6e6e6;
}

#search_input::-ms-input-placeholder {
	color: #2d2d2d !important;
	opacity: 1;
}

#search_input::-webkit-input-placeholder {
	color: #2d2d2d !important;
	opacity: 1;
}

#search_input::-moz-placeholder {
	color: #2d2d2d !important;
	opacity: 1;
}

#search_input:-moz-placeholder {
	color: #2d2d2d !important;
	opacity: 1;
}

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

#logoWrap {
	padding: 20px 0;
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	.navbar-collapse>.row {
		padding-top: 15px;
		padding-bottom: 10px;
	}

	#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: #d32522;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 2px;
		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: 11px;
	}

	#burgerButton::before {
		top: 19px;
		content: "";
	}

	#burgerButton::after {
		top: 27px;
		content: "";
	}

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

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #f9f9f9;
		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 {
		line-height: 1;
		padding: 5px;
		border-radius: 3px;
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 101;
		background: #fff;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	}

	.dropdown-toggle-button-wrapper,
	.dropdown-toggle-button-wrapper2 {
		z-index: 1;
	}

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

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

/* menu desktop */

@media (min-width: 992px) {
	#menu {
		background: #f9f9f9;
	}

	.is-sticky #menu {
		left: unset !important;
	}

	.navbar-collapse>.row {
		padding-top: 47px;
		padding-bottom: 47px;
	}

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

	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;
		flex-grow: 1;
	}

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

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #2a2a2a;
	font-weight: 400;
	text-align: center;
	padding: 10px 35px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	background: #f9f9f9;
}

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

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	padding: 10px 0;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}

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

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"]>ul {
		margin-top: 0;
	}

	nav.horizontally [class*="secondlevel"]>ul {
		margin: -10px 0 0 0;
		margin-left: 4px;
	}

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	background-color: transparent;
	color: #2d2d2d;
	font-weight: 300;
	text-align: center;
	padding: 6px 35px;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
}

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "•";
	margin-right: 12px;
}

/* 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: #fff;
	background-color: #1852a8;
}

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

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

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

@media (min-width: 992px) {
	body.index :is(#slider) {
		max-height: clamp(440px, 68vw, 715px);
	}

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

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

#headerpic {
	position: relative;
}

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

.slider-mask {
	display: none;
}

@media (min-width: 992px) {
	.slider-mask {
		display: block;
		background: url(../img/banner-bogen.png);
		background-position: bottom center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}

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

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

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

.index main {
	padding-bottom: clamp(30px, 4vw, 60px);
}

@media (min-width: 992px) {
	main {
		background: url(../img/hintergrund-noten.png), url(../img/hintergrund-noten-2.png);
		background-repeat: no-repeat;
		background-position: bottom left, bottom right;
	}
}

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

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

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

@media (min-width: 992px) {
	h1 :is(b, strong),
	.h1 :is(b, strong),
	.legacy_h1 :is(b, strong) {
		margin-left: 80px;
	}
}

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

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

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

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

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

/* ----------------------------------------------- @10ev events -------------------------------------------- */

#ev10 .tab {
	margin-left: auto;
	margin-right: auto;
	margin-top: 32px;
	position: relative;
	background: #ffffff;
	font-size: 0.9375rem;
	color: #2d2d2d;
	border-top: 4px solid #d32522;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	padding-bottom: 20px;
	max-width: 400px;
}

#ev10 .tab::before {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	top: -32px;
	left: 50%;
	margin-left: -30px;
	border-radius: 50%;
	background: url("../img/icon-veranstaltungen.png") center no-repeat, #ffffff;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

#ev10 .tabSpecial {
	padding: 45px 20px 20px 20px;
}

#ev10 .tabSpecial .tabHeadline {
	text-align: center;
	font-size: 1.4375rem;
	font-weight: 700;
	color: #235aac;
	margin: 0;
}

#ev10 #clr-events-hide {
	margin-top: 25px;
	padding-left: 20px;
	padding-right: 20px;
}

#ev10 .tab .eventclndr-tab {
	margin-bottom: 0;
}

#ev10 .tab .tab_link_title a {
	color: #2d2d2d;
	font-weight: 700;
}

#ev10 .tab .tab_link_mandat a {
	color: #2d2d2d;
	font-weight: 400;
}

#ev10 .tab #clr-events-hide>p:nth-child(1) {
	display: none !important;
}

#ev10 .tab .tab_spacer {
	height: 15px;
}

#ev10 .tab .tab_link_mehr {
	color: transparent;
	font-size: 0;
	padding-left: 20px;
	text-align: left !important;
}

/* ------------------------------------------------ @23tab ----------------------------------------------- */

#tabs23 {
	margin-bottom: 60px;
}

@media (max-width: 991px) {
	#tabs23 {
		margin-top: 60px;
	}
}

#tabs23 .rowGrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	max-width: 1170px;
	width: 100%;
	margin: auto;
	gap: clamp(2px, 1.5vw, 30px);
	margin-bottom: 30px;
}

#tabs23 .box {
	min-height: 200px;
	overflow: hidden;
}

#tabs23 .box3 {
	grid-column: 3/5;
	grid-row: 1/3;
}

#tabs23 .box4 {
	grid-column: 1/3;
	grid-row: 2/4;
}

@media (max-width: 767px) {
	#tabs23 .box1 {
		grid-column: 1/3;
	}

	#tabs23 .box5 {
		grid-column: 3/5;
	}
}

#tabs23 .banner,
#tabs23 img {
	height: 100% !important;
	max-width: unset;
	display: block;
	width: 100% !important;
	object-fit: cover;
	object-position: center;
}

#tabs23 .nivo-slice,
#tabs23 .slider-wrapper,
#tabs23 #slider {
	height: 100% !important;
	width: 100% !important;
}

#tabs23 .specialHeadline {
	color: #2d2d2d;
	font-weight: 400;
	font-size: 1.125rem;
	margin-bottom: 35px;
}

#tabs23 .specialHeadline :is(h1, h2, h3, h4, h5, h6) {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.75rem;
	margin: 0;
}

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

.buttonStyle a:not([href^="mailto"], [href^="tel"]),
.tabButton .tab_link_mehr a {
	background: #1852a8;
	color: #fff;
	font-size: 1rem;
	display: inline-block;
	padding: 7px 25px;
	text-decoration: none;
	transition: background 300ms;
}

.buttonStyle a:not([href^="mailto"], [href^="tel"])::after,
.tabButton .tab_link_mehr a::after {
	content: " \203A";
}

.buttonStyle a:not([href^="mailto"], [href^="tel"]):is(:hover, :focus),
.tabButton .tab_link_mehr a:is(:hover, :focus) {
	background: #d32522;
	text-decoration: none;
}

.buttonStyle #kontakt a {
	margin-top: 30px;
}

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

footer {
	font-weight: 400;
}

footer a {
	color: #ffffff;
}

footer a:is(:hover, :focus) {
	color: #fff;
}

#performance {
	background-color: #000;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fafafa;
	padding: 30px 0;
}

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

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

	#performance>.row>div:first-of-type {
		position: relative;
	}

	#performance>.row>*:first-child::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: -300px;
		background: url(../img/deko-logo.png);
		width: 325px;
		height: 218px;
	}
}

.footerHeadline {
	margin: 0;
	color: #fafafa;
}

.footerHeadline::after {
	content: "";
	display: block;
	margin: 6px auto 25px auto;
	height: 1px;
	width: 140px;
	background: #fafafa;
}

@media (min-width: 992px) {
	.footerHeadline::after {
		margin-left: 0;
		margin-right: 0;
	}
}

#performance .tab_link_mandat a {
	text-decoration: none;
	color: #fff;
}

#performance .tab_link_title a {
	font-weight: 700;
	text-decoration: none;
	color: #fff;
}

#performance .tab_spacer {
	height: 15px;
}

#performance .tab_link_mehr {
	color: transparent;
	text-align: left !important;
	font-size: 0;
}

@media (max-width: 991px) {
	#performance .tab_link_mehr {
		text-align: center;
	}
}

#kontakt {
	padding: 25px 15px;
	background: rgba(2, 18, 42, 0.7);
	min-height: 100%;
	height: 100%;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 1rem;
}

@media (max-width: 991px) {
	#kontakt {
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
}

@media (min-width: 992px) {

	#performance>.row>*:not(:last-child),
	#kontakt {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#kontakt {
		padding-left: 25px;
		padding-right: 25px;
	}
}

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

#f5 {
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #d32522;
}

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

@media (max-width: 767px) {
	#innerfooter {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

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

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

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

@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: left;
	font-size: 0.9375rem;
	color: #ffffff;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}