@import url("https://fonts.verwaltungsportal.de/css/?family=Archivo:400,700,400i,700i%7CAsul:700");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #fef6e6;
	scroll-behavior: smooth;
	scroll-padding-top: 130px;
	scrollbar-color: #a81715 #ffffff;
}

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

a {
	color: #a81715;
}

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

b,
strong {
	font-weight: 700;
}

@media (min-width: 1200px) {
	.row {
		max-width: 1440px;
		width: 100%;
	}
}

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

.logo {
	display: inline-block;
	margin: 0 auto;
}

.logo img {
	display: block;
}

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

.logoTab {
	background: #ffffff;
	padding: clamp(30px, 4vw, 50px);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	position: relative;
}

@media (max-width: 991px) {
	.logoTab {
		margin-top: 40px;
	}
}

.logoTab::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -15px;
	right: -15px;
	height: 100%;
	width: 100%;
	border: 1px solid #a81715;
	border-image: linear-gradient(to left, rgba(168, 23, 21, 1) 0%, rgba(251, 191, 74, 1)) 1;
	z-index: -1;
}

@media (min-width: 992px) {
	.logoTab {
		margin-left: 100px;
	}

	body.index .logoTab {
		margin-left: -255px;
	}
}

@media (min-width: 1200px) {
	body:not(.index) .logoTab {
		margin-left: 255px;
	}
}

.logoTab hr {
	background: linear-gradient(90deg, rgba(168, 23, 21, 1) 0%, rgba(251, 191, 74, 1) 100%);
	height: 1px;
	border: none;
	opacity: 0.2;
}

.logoTab :is(h1, h2, h3, h4, h5, h6) {
	color: #a81715;
	font-size: clamp(2rem, 4vw, 2.625rem);
	margin: 0;
	text-transform: uppercase;
	line-height: 1.1;
}

.logoTab :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	color: #191919;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	margin: 0;
	text-transform: uppercase;
	font-style: normal;
}

@media (max-width: 991px) {
	.logoTab :is(h1, h2, h3, h4, h5, h6) {
		hyphens: auto;
	}
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		padding: 13px 0;
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 50px;
		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: #a81715;
		color: #fff;
		border-radius: 2px;
		position: absolute;
		width: 30px;
		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: #ffffff;
		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: 12px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		padding: 0;
		position: sticky;
		top: 0;
		z-index: 1010;
		background-color: #ffffff;
		box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		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;
		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: #191919;
	font-weight: 700;
	text-align: left;
	padding: 15px;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	font-family: "Asul", serif;
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	background: url(../img/musiknote-hover.png);
	width: 74px;
	height: 66px;
	max-width: 100%;
	max-height: 80%;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	pointer-events: none;
	z-index: -1;
	transition: transform 300ms;
}

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

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

	nav.horizontally a[class*="toplevel"]::before {
		left: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 40px 5px 42px 5px;
		text-align: center;
		font-size: clamp(1.25rem, 2vw, 1.5625rem);
	}
}

nav.horizontally a[class*="toplevel"]::after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	bottom: 0;
	height: 6px;
	left: 50%;
	transform: translateX(-50%);
	background: #a81715;
	transition: width 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::after {
		top: 0;
		bottom: unset;
	}
}

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

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

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 {
	transform: translate(-50%, -50%) scale(1);
}

/* secondlevel + thirdlevel dropdown-box */

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

nav.horizontally [class*="secondlevel"]>ul {
	background: #a66408;
}

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

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

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

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

	nav.horizontally [class*="toplevel"]>ul {
		left: 50%;
		transform: translate(-50%, 0);
	}

	nav.horizontally [class*="toplevel"]:is(:hover, :focus-within)>ul:after {
		top: 0;
	}

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

	nav.horizontally [class*="secondlevel"]>ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #ffffff;
	font-weight: 400;
	text-align: left;
	padding: 8px 15px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "";
	background: url(../img/musiknote-subnav-hover-rot.png);
	width: 21px;
	height: 29px;
	max-width: 90%;
	max-height: 70%;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	left: clamp(5px, 1vw, 18px);
	transform: translateY(-50%) scale(0);
	pointer-events: none;
	transition: transform 300ms;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

nav.horizontally a[class*="thirdlevel"]::before {
	background-image: url(../img/musiknote-subnav-hover-orange.png);
}

@media (max-width: 991px) {
	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}

	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		padding-left: 35px;
	}
}

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

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

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

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

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

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

#slider>* {
	height: 100% !important;
}

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

	#headerpic a.nivo-nextNav {
		margin-top: 90px;
		right: unset;
		left: 50px;
	}

	#headerpic a.nivo-prevNav {
		margin-top: 50px;
		left: 50px;
	}

	#headerpic .slider-wrapper {
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: calc(50% - 50px);
		z-index: 62;
	}
}

@media (min-width: 1200px) {
	#headerpic .slider-wrapper {
		right: calc(50% - 100px);
	}
}

#headerpic {
	padding: 0 0 clamp(20px, 8vw, 40px) 0;
	overflow: hidden;
	position: relative;
	background: url(../img/overlay-musiknoten-spur-header.png) center right 30px no-repeat, #f5e6e6;
}

body.index #headerpic {
	padding: 0 0 clamp(40px, 8vw, 110px) 0;
}

@media (max-width: 991px) {
	body:not(.index) #headerpic {
		padding-bottom: 0;
	}
}

@media (min-width: 992px) {
	#headerpic {
		padding-top: clamp(20px, 8vw, 40px);
	}

	body.index #headerpic {
		padding-top: clamp(100px, 16vw, 250px);
	}
}

#headerpic>.row>div {
	position: relative;
	z-index: 64;
}

.slider-mask {
	display: none;
}

@media (min-width: 992px) {
	.slider-mask {
		display: block;
		background: #f5e6e6;
		clip-path: polygon(100% 0, 100% 100%, 25% 100%, 40% 90%, 20% 0);
		max-width: 120px;
		right: 0;
	}
}

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

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

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

#content>.row>aside {
	z-index: 1;
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2.4375rem, 4vw, 2.5rem);
	margin-bottom: clamp(20px, 3vw, 50px);
}

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

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

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

/* #region ---------------------------------- news + events ------------------------------------- */

:is(#news, #events) .tabHeadline {
	color: rgba(166, 100, 8, 0.4);
	font-size: clamp(2rem, 6vw, 5.3125rem);
	margin-bottom: 25px;
	text-transform: uppercase;

	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

#events .tabHeadline {
	color: rgba(168, 23, 21, 0.4);
}

@media (min-width: 992px) {
	:is(#news, #events) .tabHeadline {
		margin-bottom: -40px;
	}
}

:is(#news, #events) .tab_link_entries {
	display: grid;
	gap: 30px;
	font-size: 1.125rem;
}

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

@media (min-width: 992px) {
	:is(#news, #events) .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

:is(#news, #events) .tab_link_entry {
	border-bottom: none !important;
	background: #ffffff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	padding: clamp(25px, 3vw, 40px) 25px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

:is(#news, #events) .tab_link_entry .tab_spacer {
	display: none;
}

:is(#news, #events) .tab_link_entry :is(.tab_date, .tab_link_date) {
	order: 3;
}

:is(#news, #events) .tab_link_title a {
	color: #a66408;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: "Asul", serif;
}

#events .tab_link_title a {
	color: #a81715;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: "Asul", serif;
}

:is(#news, #events) .tab_spacer {
	height: 2px;
}

#news .tab_link_mehr_news,
#events .tab_link_mehr {
	font-size: 0;
	margin-top: 30px;
	z-index: 1;
	position: relative;
	display: inline-block;
}

@media (max-width: 991px) {

	#news .tab_link_mehr_news,
	#events .tab_link_mehr {
		margin-right: 20px;
	}
}

@media (min-width: 1200px) {
	#news .tab_link_mehr_news {
		margin-top: -20px;
	}

	#events .tab_link_entries~* {
		text-align: left !important;
	}
}

#news .tab_link_mehr_news::after,
#events .tab_link_mehr::after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	bottom: -10px;
	right: -10px;
	width: 80px;
	height: 65px;
	transform: skew(-15deg);
	border: 1px solid #a81715;
	border-image: linear-gradient(to left, rgba(168, 23, 21, 1) 0%, rgba(251, 191, 74, 1)) 1;
}

#news .tab_link_mehr_news a,
#events .tab_link_mehr a {
	background: #ffffff;
	color: #a66408;
	display: block;
	font-weight: 400;
	padding: 15px 10px 10px 10px;
	text-align: center;
	text-decoration: none;
	width: 80px;
	height: 65px;
	transform: skew(-15deg);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
	position: relative;
}

#events .tab_link_mehr a {
	color: #a81715;
}

#news .tab_link_mehr_news a:is(:hover, :focus),
#events .tab_link_mehr a:is(:hover, :focus) {
	background: #a66408;
	color: #ffffff;
}

#events .tab_link_mehr a:is(:hover, :focus) {
	background: #a81715;
}

#news .tab_link_mehr_news a::before,
#events .tab_link_mehr a::before {
	content: "»";
	font-size: 45px;
	line-height: 35px;
	transform: skew(15deg);
	display: inline-block;
}

/* news */

#news {
	background: #fef6e6;
	padding: 40px 0 clamp(40px, 4vw, 60px) 0;
}

@media (min-width: 576px) {
	#news {
		background: url(../img/overlay-musiknoten-spur-aktuelles.png) bottom right no-repeat, #fef6e6;
	}
}

#news .tab_link_mehr,
#news .tab_preview_picture {
	display: none;
}

/* events */

#events {
	padding: 40px 0 50px 0;
	background: #f5e6e6;
}

@media (min-width: 576px) {
	#events {
		background: url(../img/overlay-musiknoten-spur-veranstaltungen.png) top -20px left no-repeat, #f5e6e6;
	}
}

@media (max-width: 991px) {

	#news,
	#events {
		background-position: center;
	}
}

@media (min-width: 1200px) {
	#events .tabHeadline {
		padding-right: 30px;
	}
}

#events .vorschau {
	display: none;
}

#events .tab_link_mandat a {
	color: inherit;
}

/* #endregion ------------------------------- news + events ------------------------------------- */

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

footer {
	background: #ffffff;
	border-bottom: 26px solid #a81715;
	padding: 30px 0;
	position: relative;
}

footer hr {
	background: #a81715;
	opacity: 1;
	border: none;
	height: 1px;
	margin: 15px auto;
}

@media (min-width: 768px) {
	body:not(.index) footer {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	}

	body.index footer::before {
		content: "";
		display: block;
		position: absolute;
		top: -92px;
		left: 0;
		right: 0;
		height: 114px;
		width: 100%;
		background: url(../img/footer-overlay.png) bottom left no-repeat;
		pointer-events: none;
	}
}

@media (min-width: 1200px) {
	body.index footer {
		padding-top: 0;
	}

	body.index footer::before {
		background: url(../img/footer-overlay.png) bottom left / 100% auto no-repeat;
	}
}

footer>.row {
	row-gap: 30px;
}

.footerTab .tabHeadline {
	font-size: 1.875rem;
	text-transform: uppercase;
}

.footerTab a {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.footerTab {
		padding-left: 50px;
		border-left: 1px solid rgba(0, 0, 0, 0.2);
	}

	footer>.row>div+div {
		padding-right: 50px;
	}
}

@media (max-width: 1199px) {
	#innerfooter {
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		padding-bottom: 25px;
	}
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: inherit;
	text-decoration: none;
	position: relative;
}

@media (min-width: 768px) {
	#innerfooter a::after {
		content: "";
		background: url(../img/musiknote-hover.png);
		width: 3.8542vw;
		height: 3.4375vw;
		max-width: 74px;
		max-height: 66px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(0);
		transition: transform 300ms;
		position: absolute;
	}
}

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

#innerfooter a:is(:hover, :focus)::after {
	transform: translate(-50%, -50%) scale(1);
}

#innerfooter li+li::before {
	content: "•";
	margin: 0 clamp(6px, 2vw, 16px);
	color: #191919;
}

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

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

#vernetzt {
	font-size: 0.9375rem;
	color: #191919;
	display: inline-block;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span {
	display: block;
}

#vernetzt img {
	margin-bottom: 8px;
}

#vernetzt b {
	color: #a81715;
	font-weight: inherit;
	font-weight: 700;
	font-family: "Asul", serif;
}

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab26 {
	margin: auto;
	width: 100%;
}

#tab26 .tab {
	font-size: 1rem;
	padding: 20px;
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.25rem;
	font-weight: 700;
	color: #444444;
}

#tab26 .tab .btgrid>.row {
	gap: 30px 0;
}

#tab26 img {
	display: block;
	max-width: unset;
	position: relative;
	margin: 0 auto;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
	padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
	background: transparent;
	border: none;
	padding: 5px;
}

#tab26 .slick-button {
	font-size: 0px;
	position: relative;
	top: 4px;
}

#tab26 .slick-prev {
	margin-left: 14px;
}

@media (max-width: 767px) {
	#tab26 .slick-next {
		margin-left: 14px;
	}
}

#tab26 .slick-button::before {
	display: block;
	line-height: 18px;
	height: 20px;
	font-size: 40px;
	color: #000000;
}

#tab26 .slick-button::after {
	content: "";
	position: absolute;
	pointer-events: none;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.05);
	transition: width 200ms linear, height 200ms linear;
	z-index: -1;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
	width: 28px;
	height: 28px;
}

@media (max-width: 767px) {

	#tab26 .slick-button::after,
	#tab26 .slick-button::after {
		width: 28px;
		height: 28px;
	}
}

#tab26 .slick-dots {
	padding: 0 15px;
	list-style: none;
}

#tab26 .slick-dots>li {
	display: inline-block;
	position: relative;
	top: 50%;
	font-size: 0px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #a66408;
	transform: translateY(-50%);
}

#tab26 .slick-dots,
#tab26 .slick-button {
	display: inline-block !important;
}

@media (max-width: 767px) {
	#tab26 .slick-dots {
		display: none !important;
	}
}

#tab26 .slick-dots>li.slick-active {
	background: #a81715;
	transition: background 200ms linear;
}

#tab26 .slick-dots>li+li {
	margin-left: 10px;
}

#tab26 .slick-prev::before {
	content: "\2039";
}

#tab26 .slick-next::before {
	content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#tab26 .slick-animate-control {
	position: relative;
	z-index: 2;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: -5px;
	left: 10px;
	border: 1px solid #ffffff;
	background-color: #000;
	background-size: 16px 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#tab26 .slick-animate-control.slick-pause {
	background-size: 20px 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}

/***********************************SLIDER_ROOT_FILE DO NOT CHANGE OR DELETE************************************/

#tab26 .slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

#tab26 .slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

#tab26 .slick-list:focus {
	outline: none;
}

#tab26 .slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

#tab26 .slick-slider .slick-track,
#tab26 .slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#tab26 .slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#tab26 .slick-track:before,
#tab26 .slick-track:after {
	content: "";
	display: table;
}

#tab26 .slick-track:after {
	clear: both;
}

#tab26 .slick-loading .slick-track {
	visibility: hidden;
}

#tab26 .slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

#tab26 [dir="rtl"] .slick-slide {
	float: right;
}

#tab26 .slick-slide img {
	display: block;
}

#tab26 .slick-slide.slick-loading img {
	display: none;
}

#tab26 .slick-slide.dragging img {
	pointer-events: none;
}

#tab26 .slick-initialized .slick-slide {
	display: block;
}

#tab26 .slick-loading .slick-slide {
	visibility: hidden;
}

#tab26 .slick-vertical .slick-slide {
	display: block;
	height: auto;
}

#tab26 .slick-arrow.slick-hidden {
	display: none;
}

#tab26 .tabWrapper {
	opacity: 0;
}

#tab26 .tabWrapper.slick-initialized {
	opacity: 1;
	transition: opacity 200ms linear;
}

/***********************************ROOT_FILE_END************************************/