@import url("https://fonts.verwaltungsportal.de/import/?family=Barlow:300,400,500,600,700,300i,400i,500i,600i,700i");

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

body {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	color: #0d0d0d;
	background: #e6e6e6;
	font-size: clamp(1rem, 2.4vw, 1.25rem);
	line-height: 1.5;
}

a {
	color: #f14646;
}

#content a {
	text-decoration: underline;
}

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

#content a {
	font-weight: 600;
}

b,
strong {
	font-weight: 700;
}

.overflow {
	overflow: clip;
	position: relative;
}

/* ------------------------------------------- logo --------------------------------------------- */
#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo {
		margin: 15px 0;
		position: relative;
	}

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

@media (min-width: 1200px) {
	#logo {
		display: inline-block;
		position: absolute;
		top: -36px;
	}
}

/* ------------------------------------------ contact ------------------------------------------- */

#topbar,
nav address {
	background-color: #21242a;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 400;
}

nav address {
	padding: 10px 15px;
}

@media (max-width: 991px) {
	#topbar {
		padding: 10px 0;
	}
}

#topbar>.row {
	row-gap: 10px;
}

@media (min-width: 992px) {
	#topbar address {
		padding-top: 7px;
		padding-bottom: 7px;
	}

	.contactMail+.contactPhone {
		margin-left: 30px;
	}
}

#topbar a,
nav address a {
	color: #ffffff;
	text-decoration: underline;
}

.contactMail,
.contactPhone {
	padding-left: 20px;
	background-position: center left;
	background-repeat: no-repeat;
}

nav address {
	background-position-x: 7px;
}

.contactMail {
	background-image: url("../img/mail-icon.png");
	text-decoration: none;
}

.contactPhone {
	background-image: url("../img/phone-icon.png");
}

.social {
	line-height: 1;
}

.social a+a,
.social img+img {
	margin-left: 10px;
	max-width: 15px;
}

/* ------------------------------------------ search -------------------------------------------- */

@media (min-width: 992px) {
	*+#search {
		padding-left: 40px;
		margin-left: 40px;
		border-left: 1px solid rgba(255, 255, 255, 0.3);
	}
}

#search label {
	text-transform: uppercase;
	font-weight: 400;
	margin-right: clamp(10px, 2vw, 20px);
	padding: 7px 0;
}

#search {
	display: inline-flex;
}

#search_input {
	color: #ffffff;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 300;
	background: transparent;
	padding: 7px 5px;
	border: 0;
	width: 140px;
}

#search_submit {
	min-width: 30px;
	flex-shrink: 0;
	border: none;
	background: url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	border: solid 1px transparent;
}

#search_submit:is(:hover, :focus) {
	border-color: #fff;
}

#search_input::placeholder {
	color: #ffffff !important;
	opacity: 1 !important;
	font-style: normal !important;
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		position: static !important;
	}

	#burgerButton {
		font-size: 0;
		display: block;
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background: #ffffff;
		border: none !important;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

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

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

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

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

	#burgerButtonInner {
		top: 16px;
	}

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

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

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

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

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		padding: 18px 0;
		background-color: #ffffff;
		box-shadow: 0 0 7px 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 ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
	}

	nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav li {
		position: relative;
	}

	nav.horizontally .navbar-nav li.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;
	}
}

@media (min-width: 1200px) {
	nav.horizontally {
		padding: 37px 0;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #0d0d0d;
	font-weight: 600;
	text-align: left;
	padding: 12px 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Barlow", sans-serif;
}

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

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

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

	nav.horizontally a[class*="toplevel"] {
		padding: 5px 0;
		text-align: center;
	}

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

	nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
		content: "";
		position: absolute;
		display: block;
		right: 0;
		top: 50%;
		margin-top: -5px;
		width: 5px;
		height: 5px;
		border-left: 1px solid #21242a;
		border-bottom: 1px solid #21242a;
		transform: rotate(-45deg);
	}
}

nav.horizontally a:is([class*="toplevel"])::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	bottom: 0;
	height: 2px;
	background: #f14646;
	transition: width 300ms linear;
}

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

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

/* secondlevel + thirdlevel dropdown-box */

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

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

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding-top: 25px;
		padding-bottom: 25px;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
	}

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

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

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

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

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

/* secondlevel + thirdlevel */

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	bottom: 0;
	height: 2px;
	background: #f14646;
	transition: width 300ms linear;
}

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

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

	nav.horizontally a[class*="secondlevel"].dropdown-toggle2::before {
		content: "";
		position: absolute;
		display: block;
		right: 20px;
		top: 50%;
		margin-top: -4px;
		width: 4px;
		height: 4px;
		border-radius: 1px;
		border-right: 1px solid #21242a;
		border-bottom: 1px solid #21242a;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		transition: border 300ms linear;
	}
}

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::after {
	width: calc(100% - 60px);
}

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

	body.intro #slider {
		max-height: clamp(400px, 82vw, 877px);
	}
}

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

@media (min-width: 992px) {
	#headerpic {
		background: #21242a;
	}
}

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

body.intro .slider-mask {
	display: block;
	display: block;
	background: linear-gradient(-65deg, rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5) 44%, rgba(26, 26, 26, 0.85) 44%);
}

.slider-mask {
	display: block;
	background: linear-gradient(-65deg, rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5) 50%, rgba(26, 26, 26, 0.85) 50%);
}

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

	#headerpic .nivo-directionNav a {
		background: #ffffff;
		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: #f14646;
	}

	#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: #21242a;
		transition: background 300ms linear;
	}

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

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

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

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

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

#overlay {
	font-weight: 700;
	font-style: italic;
	font-size: clamp(3.125rem, 6vw, 7.125rem);
	text-transform: uppercase;
	line-height: 1;
	position: relative;
}

#overlay>.row {
	position: relative;
}

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

@media (min-width: 992px) {
	#overlay {
		color: #ffffff;
		position: absolute;
		z-index: 60;
		right: 0;
		bottom: 100px;
		left: 0;
	}
}

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

#overlay :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.1;
}

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

@media (min-width: 1200px) {
	body.index #overlay::before {
		content: "";
		position: absolute;
		background: url(../img/miteinander_v2.png) no-repeat;
		width: 324px;
		height: 114px;
		bottom: 110px;
		z-index: 14;
		pointer-events: none;
		left: 19%;
		display: block;
	}

	body.index #overlay {
		letter-spacing: -7px;
	}

	body.intro .slogan::before {
		content: "";
		position: absolute;
		background: url(../img/herzlich_v2.png) no-repeat;
		width: 324px;
		height: 114px;
		bottom: -87px;
		z-index: 14;
		pointer-events: none;
		left: 60%;
		display: block;
	}

	#overlay::after {
		content: "";
		position: absolute;
		background: url(../img/SV1914-weis.png) no-repeat;
		width: 151px;
		height: 832px;
		bottom: 0;
		top: 0;
		margin: auto;
		z-index: 14;
		pointer-events: none;
		left: -367px;
		display: block;
	}
}

body.intro #overlay .slogan {
	font-weight: 700;
	font-size: clamp(3.125rem, 6vw, 6rem);
	margin-bottom: 65px;
}

@media (max-width: 1200px) {
	body.intro #overlay {
		bottom: 0px;
	}
}

/* #region -------------------------------- button design --------------------------------------- */

.buttonStyle a {
	color: #0d0d0d;
	font-style: normal;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	display: inline-block;
	line-height: 1;
	padding: 10px clamp(20px, 2vw, 35px);
	text-decoration: none;
	border: 2px solid transparent;
	transition: all 300ms linear;
	background: #f14646;
	border-color: #f14646;
	color: #0d0d0d;
}

#team .buttonStyle a:is(:hover, :focus):first-of-type,
body.index #overlay.buttonStyle a:is(:hover, :focus):last-of-type,
.buttonStyle a:is(:hover, :focus) {
	background: #0d0d0d;
	border-color: #0d0d0d;
	color: #fff;
}

body.index #overlay.buttonStyle a {
	margin-top: 140px;
	letter-spacing: normal;
}


@media (max-width: 1200px) {
	body.index #overlay.buttonStyle a {
		margin-top: 40px;
	}
}

body.index #overlay.buttonStyle a:last-of-type {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

#team .buttonStyle a:first-of-type {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

@media (max-width: 991px) {
	body.index #overlay.buttonStyle a:last-of-type {
		background: transparent;
		border-color: #0d0d0d;
		color: #0d0d0d;
	}

	#team .buttonStyle a:first-of-type {
		background: transparent;
		border-color: #0d0d0d;
		color: #0d0d0d;
	}
}

#news .tab_link_mehr a,
#events .tab_link_mehr a {
	color: #0d0d0d;
	font-style: normal;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	display: inline-block;
	line-height: 1;
	padding: 10px clamp(20px, 2vw, 35px);
	text-decoration: none;
	border: 2px solid transparent;
	transition: all 300ms linear;
	background: #f14646;
	border-color: #f14646;
	color: #0d0d0d;
}

#events .tab_link_mehr a {
	z-index: 15;
	color: #fff;
	background: #0d0d0d;
	border-color: #0d0d0d;
}

#news .tab_link_mehr a:is(:hover, :focus) {
	background: #0d0d0d;
	border-color: #0d0d0d;
	color: #fff;
}

#events .tab_link_mehr a:is(:hover, :focus) {
	background: #f14646;
	border-color: #0d0d0d;
	color: #0d0d0d;
}

#news .tab_link_entry {
	color: #fff !important;
}

/* #endregion ----------------------------- button design --------------------------------------- */

/* #region ------------------------------------ news -------------------------------------------- */

#news {
	margin-top: 2px;
}

#news .tab_link_entries {
	display: grid;
	gap: 2px;
}

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

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

.news .tab_link_entry {
	overflow: hidden;
	position: relative;
	background: #222326;
	min-height: clamp(150px, 25vw, 250px);
	padding: 45px 50px 45px 20px;
	border-bottom: none !important;
}

@media (min-width: 992px) {
	.news .tab_link_entry {
		padding-right: 36%;
	}
}

.news .tab_link_entry::before {
	content: "";
	pointer-events: none;
	position: absolute;
	z-index: 3;
	top: 0;
	left: -50vw;
	bottom: 0;
	right: 50px;
	background: rgba(34, 35, 38, 0.85);
	transform: skewX(-25deg);
	transition: right 200ms linear;
}

@media (min-width: 992px) {
	.news .tab_link_entry::before {
		right: 36%;
	}
}

.news .tab_link_entry:is(:hover, :focus-within) :is(.tab_date, .tab_link_title) {
	opacity: 0;
}

.news .tab_link_entry:is(:hover, :focus-within)::before {
	right: 125%;
}

.news .tab_link_entry::after,
.news .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 2;
}

.news .tab_link_entry::after {
	content: "";
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.news .tab_preview_picture img {
	margin: 0 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news :is(.tab_date, .tab_link_title) {
	position: relative;
	z-index: 3;
	transition: opacity 200ms linear;
}

.news .tab_link_title a {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	display: block;
	font-family: "Barlow", sans-serif;
}

.news .tab_date {
	color: #ffffff;
	font-size: 1rem;
	pointer-events: none;
	font-weight: 400;
}

.news :is(.vorschau, .tab_spacer) {
	display: none;
}

.news .tab_link_mehr {
	padding-top: 2px;
}

.news .tab_link_entry .tab_link_mehr {
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	transition: opacity linear 200ms;
	font-size: 0;
}

.news .tab_link_entry:is(:hover, :focus-within) .tab_link_mehr {
	opacity: 1;
}

/* #endregion --------------------------------- news -------------------------------------------- */

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

@media (min-width: 1200px) {
	body:not(.intro) #content::before {
		content: "";
		position: absolute;
		background: url(../img/bg-brush_v2.png) no-repeat;
		width: 100%;
		height: 204px;
		top: -130px;
		z-index: 14;
		pointer-events: none;
		left: 0;
		right: 0;
		display: block;
	}
}

#content {
	text-align: left;
	padding-bottom: clamp(40px, 11vw, 115px);
	position: relative;
	padding-top: 40px;
}

body:not(.index) #content {
	padding-top: 40px;
}

@media (min-width: 1200px) {
	#content {
		padding-top: 80px;
	}

	body:not(.index) #content {
		padding-top: 80px;
	}
}

body.intro #content {
	padding: 0;
}

body.intro #aboveContent,
body.intro #contentbottom_left,
body.intro #contentbottom_right {
	display: none;
}

body.intro #content_footer {
	margin-top: 0;
}

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

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

h1,
.h1,
.legacy_h1,
:is(#tabs, #events) .tabsHeadline :is(h1, h2) {
	margin-bottom: clamp(20px, 3vw, 40px);
}

h1,
.h1,
.legacy_h1,
:is(#overlay, #team) :is(h1, h2),
#slogan,
:is(#tabs, #events) .tabsHeadline :is(h1, h2) {
	font-size: clamp(1.875rem, 5vw, 3.75rem);
	text-transform: uppercase;
}

@media (min-width: 1200px) {

	:is(#overlay, #team) :is(h1, h2),
	#tabs .tabsHeadline :is(h1, h2) {
		font-size: 5rem;
	}
}

:is(h1, h2) :is(i, em) {
	font-size: 66%;
	display: block;
}

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

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

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

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

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

/* #region ------------------------------------ events ------------------------------------------ */

#events {
	padding: clamp(40px, 11vw, 105px) 0 clamp(40px, 11vw, 120px) 0;
	background-color: #e5e5e5;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
}

#events .tabsHeadline,
#events .tabsHeadline :is(h1, h2, h3, h4, h5, h6, a) {
	color: #0d0d0d;
}

#events .tabsHeadline a {
	text-decoration: underline;
}

#events .tab_link_entries {
	display: grid;
	gap: 30px;
	counter-reset: section;
}

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

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

#events .tab_link_entry {
	background: #ffffff;
	padding: 45px 20px;
	overflow: hidden;
	position: relative;
	z-index: 15;
}

#events .tab_link_entry::before {
	counter-increment: section;
	content: "0"counter(section);
	font-size: 11.25rem;
	font-style: italic;
	font-weight: 700;
	opacity: 0.1;
	pointer-events: none;
	position: absolute;
	right: 15px;
	bottom: -50px;
	color: rgb(13, 13, 13);
	line-height: 1;
}

#events .tab_link_entry a {
	color: #0d0d0d;
}

#events .tab_link_title a {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
	display: block;
	margin-bottom: 6px;
	color: #0d0d0d;
}

#events .tab_link_date {
	font-size: 1rem;
	color: #0d0d0d;
}

#events .tab_link_mehr {
	margin-top: 30px;
	font-size: 0;
}

@media (min-width: 1200px) {
	#events::after {
		content: "";
		position: absolute;
		background: url(../img/SV1914-grau.png) no-repeat;
		width: 151px;
		height: 832px;
		bottom: -3px;
		z-index: 0;
		pointer-events: none;
		left: 0;
		display: block;
	}

	#events>.row::after {
		content: "";
		position: absolute;
		background: url(../img/ball.png) no-repeat;
		width: 647px;
		height: 454px;
		top: -73px;
		pointer-events: none;
		right: -310px;
		display: block;
	}
}

/* #endregion --------------------------------- events ------------------------------------------ */

/* --------------------------------------------- team ------------------------------------------- */

#team {
	padding-top: clamp(40px, 6vw, 115px);
	padding-bottom: clamp(80px, 11vw, 210px);
	background-color: #1a1a1a;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	position: relative;
}

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

#team :is(h1, h2, h3) {
	color: #ffffff;
	font-size: clamp(3.125rem, 5vw, 5rem);
	margin-bottom: 0px;
	text-transform: uppercase;
}

#team :is(h4, h5, h6) {
	color: #ffffff;
	font-size: clamp(1.875rem, 5vw, 3.125rem);
	text-transform: uppercase;
	margin-bottom: 0px;
}

@media (min-width: 768px) {
	#team .btgrid>.row {
		display: flex;
		align-items: flex-end;
		align-content: flex-end;
	}
}

#team>.row {
	position: relative;
	z-index: 2;
}

#team::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: -10vw;
	bottom: 0;
	width: 56vw;
	background: rgba(26, 26, 26, 0.5);
	transform: skewX(-25deg);
}

@media (min-width: 1200px) {
	#team>.row::after {
		content: "";
		position: absolute;
		background: url(../img/komm-zu-uns_v2.png) no-repeat;
		width: 269px;
		height: 116px;
		bottom: 60px;
		z-index: 0;
		pointer-events: none;
		left: 482px;
		display: block;
	}
}

/* -------------------------------------------- partner ----------------------------------------- */

#partner {
	padding: clamp(40px, 5vw, 85px) 0 20px 0;
	font-size: 1rem;
	position: relative;
}

#partner hr {
	margin: clamp(40px, 4vw, 60px) 0 20px 0;
	background: #21242a;
	opacity: 0.2;
}

@media (min-width: 1200px) {
	body:not(.intro) #partner::before {
		content: "";
		position: absolute;
		background: url(../img/bg-brush.png) no-repeat;
		width: 100%;
		height: 204px;
		top: -204px;
		z-index: 14;
		pointer-events: none;
		left: 0;
		right: 0;
		display: block;
	}
}

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

#footer {
	background: #21242a;
	padding: clamp(40px, 11vw, 80px) 0;
	color: #ffffff;
	font-size: 1rem;
}

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

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

.footerTab :is(h1, h2, h3, h4, h5, h6) {
	color: #ffffff;
	font-size: clamp(1.25rem, 2vw, 1.5625rem);
	font-style: normal;
}

.footerTab :is(iframe, .iframe-wrapper-manual-enabling) {
	max-width: 100% !important;
	width: 100%;
}

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

#vernetzt {
	gap: 18px;
	text-align: right;
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.3;
	text-decoration: none;
	font-weight: 400;
}

#vernetzt span span {
	display: block;
}

/* --------------------------------------------- counter ---------------------------------------- */

#counter {
	background-color: #f14646;
	margin-top: 30px;
	display: block;
	width: 100%;
	padding: 9px 15px;
	text-align: justify;
	text-align-last: justify;
	color: #0d0d0d;
}

/* ------------------------------------------- lastFooter -------------------------------------- */

#lastFooter {
	padding: 8px 0;
	font-size: 0.875rem;
	background-color: #181a1f;
}

#lastFooter>.row {
	row-gap: 18px;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #ffffff;
	display: inline-block;
	text-transform: uppercase;
}

#innerfooter li+li::before {
	content: "•";
	margin: 0 clamp(15px, 2vw, 30px);
	color: #ffffff;
}

/* -------------------------------------------- scrollTopBtn -------------------------------------- */

#scrollTopBtn {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.875rem;
	color: #ffffff;
	display: inline-block;
	padding: 4px 12px;
	text-decoration: none;
	border: 1px solid #ffffff;
	transition: border 300ms linear;
}

#scrollTopBtn:is(:hover, :focus) {
	border-color: #f14646;
}

#scrollTopBtn::after {
	content: "";
	margin-left: 15px;
	position: relative;
	bottom: -2px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 1px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(135deg);
}

/* -------------------------------------------- INTRO -------------------------------------- */

@media (max-width: 1200px) {
	body.intro #overlay {
		bottom: 0px;
	}
}

body.intro .social .tab .tabContent a {
	width: 86px;
	height: 86px;
	vertical-align: middle;
	text-align: center;
	background: #ffffff;
	border: 2px solid #ffffff;
	padding: 10px 10px;
	transition: all 300ms;
	display: inline-block;
	margin-bottom: 25px;
	align-content: center;
	align-items: center;
}

body.intro .social .tab .tabContent a:is(:hover, :focus) {
	color: #000000;
	background-color: #f14646;
	border-color: #f14646;
}

body.intro .social {
	font-size: 1rem;
}

body.intro .widget .tab {
	color: #000000;
	text-transform: none !important;
	background-color: #fff;
}

.widget iframe,
.widget .iframe-wrapper-manual-enabling {
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}

@media (min-width: 1501px) {
	body.intro #overlay {
		bottom: 0;
		top: 0;
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

@media (max-width: 1500px) {
	body.intro #overlay {
		bottom: 0px;
	}

	body.intro .social .tab .tabContent a {
		margin-bottom: 0px;
	}
}

body.intro #partner {
	padding: 15px 0;
}