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

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

body {
	font-family: "Mulish", sans-serif;
	color: #222222;
	background: #ffffff;
	font-size: clamp(1rem, 3vw, 1.125rem);
	line-height: 1.5;
	font-weight: 300;
}

@media (min-width: 1200px) {
	body {
		background: #ffffff url("../img/nahaufnahme-gitarre.jpg") top left no-repeat;
		background-position: top left;
		background-size: auto;
	}
}

a {
	color: #0056b3;
}

a:focus,
a:hover {
	color: #0056b3;
	text-decoration: underline;
}

b,
strong {
	font-weight: 600;
}

#overflow {
	overflow: hidden;
}

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

#topbar {
	padding: 9px 0;
	background: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

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

form[id^="search"] {
	height: 30px;
	background: #ffffff;
	display: inline-block;
	position: relative;
	max-width: 230px;
	width: 100%;
}

@media (max-width: 991px) {
	form[id^="search"] {
		max-width: 100%;
	}
}

input[id^="search_input"] {
	color: #222222;
	font-size: 16px;
	font-style: italic;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 30px;
	padding-left: 10px;
	padding-right: 50px;
	height: 30px;
	width: 100%;
}

input[id^="search_submit"] {
	width: 30px;
	background: #ffffff url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 30px;
	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;
}

input[id^="search_submit"]:hover {
	background-color: #f8f8f8;
}

input[id^="search_input"]::-ms-input-placeholder {
	color: #222222 !important;
}

input[id^="search_input"]::-webkit-input-placeholder {
	color: #222222 !important;
}

input[id^="search_input"]::-moz-placeholder {
	opacity: 0.6;
}

input[id^="search_input"]:-moz-placeholder {
	opacity: 0.6;
}

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

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

/* ----------------------------------------------- logo Menü ----------------------------------------------- */

@media (min-width: 992px) {
	.tabLogoMenu {
		text-align: right;
		margin-top: 15px;
	}
}

@media (max-width: 991px) {
	.tabLogoMenu {
		text-align: center;
		margin: 15px 0;
	}
}
/* ------------------------------------ navigation ----------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 60px;
		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: #0056b3;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 10px;
		transition:
			transform 200ms linear,
			opacity 200ms linear;
		display: block;
	}

	#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;
		padding: 0 10px;
		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: 2px;
		z-index: 5;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	#navBox {
		position: relative;
		z-index: 10;
		margin-top: 60px;
	}

	nav.navbar {
		background: #ffffff;
		padding: 20px;
		min-width: 356px;
		width: 100%;
		border-radius: 3px;
		position: relative;
		padding-bottom: 10px;
	}

	nav.navbar::after {
		content: "";
		position: absolute;
		left: 30px;
		right: 30px;
		bottom: 0;
		height: 30px;
		z-index: -1;
		-webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.45);
		box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.45);
	}

	nav.navbar .navbar-nav > li {
		display: block !important;
		width: 100%;
		float: none;
	}

	.navbar-default .navbar-nav li:is([class*="toplevel"], [class*="secondlevel"]):focus-within > ul {
		display: block;
	}

	.navbar-header {
		padding: 5px 0 20px 0;
	}

	.navbar-header span {
		font-weight: 600;
		font-size: 1.5rem;
		color: #0056b3;
		background: linear-gradient(to right, #c92222, #89279b, #0056b3);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		-moz-background-clip: text;
		-moz-text-fill-color: transparent;
	}
}

@media (min-width: 1200px) {
	#navBox::before {
		content: "";
		position: absolute;
		pointer-events: none;
		top: -30px;
		right: -88px;
		width: 49px;
		height: 86px;
		background: url("../img/icon-note1.png") center no-repeat;
		z-index: 11;
	}
}

/* toplevel */

nav.navbar a[class*="toplevel"] {
	color: #222222;
	font-weight: 600;
	text-align: left;
	padding: 8px 15px 8px 15px;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	z-index: 1;
	border-radius: 3px;
	background-color: #f3f3f3;
}

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

nav.navbar li[class*="toplevel"]:not(:first-child) {
	border-top: 2px solid #ffffff;
}

nav.navbar a[class*="toplevel"]::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, #c92222, #89279b, #0056b3);
	border-radius: 3px;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
}

/* toplevel-over */

nav.navbar li[class*="toplevel"]:is(:hover, :focus-within) > a,
nav.navbar li[class*="toplevel"] > a:is(:hover, :focus),
nav.navbar li[class*="toplevel"].open > a,
nav.navbar li[class*="toplevel"].open > a:is(:hover, :focus),
nav.navbar li[class*="toplevel"][class*="_over"] > a,
nav.navbar li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus) {
	color: #ffffff;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.navbar [class*="toplevel"] ul {
	padding: 0;
	background-color: rgba(255, 255, 255, 0.8);
}

nav.navbar [class*="secondlevel"] > ul {
	background-color: rgba(255, 255, 255, 0.5);
}

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

nav.navbar li:is([class*="_over"], [class*="open"]) > .dropdown-menu {
	display: block !important;
}

/* secondlevel + thirdlevel */

nav.navbar a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #222222;
	font-weight: 600;
	text-align: left;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	padding: 8px 15px 8px 30px;
}

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

nav.navbar a[class*="thirdlevel"] {
	padding: 8px 15px 8px 45px;
}

nav.navbar a[class*="thirdlevel"]::before {
	left: 30px;
}

/* secondlevel + thirdlevel over */

nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
	color: #c92222;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.navbar [class*="toplevel"] ul,
nav.navbar [class*="secondlevel"] > ul {
	padding: 0;
	background-color: #ffffff;
}

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

nav.navbar li:is([class*="_over"], [class*="open"]) > .dropdown-menu {
	display: block !important;
}

/* secondlevel + thirdlevel */

nav.navbar a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #222222;
	font-weight: 600;
	text-align: left;
	position: relative;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
	padding: 8px 15px 8px 30px;
}

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

nav.navbar a[class*="thirdlevel"] {
	padding: 8px 15px 8px 45px;
}

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

nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.navbar li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
	color: #c92222;
}

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

#headerpic .nivo-imageLink,
#headerpic .nivo-main-image {
	height: 250px !important;
	width: 100%;
	overflow: hidden;
}

#slider {
	overflow: visible;
}

@media (max-width: 991px) {
	#slider {
		height: 300px !important;
	}
}

@media (min-width: 576px) {
	#headerpic .nivo-imageLink,
	#headerpic .nivo-main-image {
		height: 300px !important;
	}
}

@media (min-width: 768px) {
	#headerpic .nivo-imageLink,
	#headerpic .nivo-main-image {
		height: 400px !important;
	}
}

@media (min-width: 992px) {
	#headerpic .nivo-imageLink,
	#headerpic .nivo-main-image {
		height: 500px !important;
	}

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

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

@media (min-width: 1200px) {
	#headerpic .nivo-imageLink,
	#headerpic .nivo-main-image {
		height: 670px !important;
	}
}

@media (min-width: 992px) {
	#headerpic .slider-wrapper,
	#headerpic::after {
		margin-left: 0;
		margin-right: calc(-50vw + 561px);
	}
}

@media (min-width: 1200px) {
	#headerpic .slider-wrapper,
	#headerpic::after {
		margin-right: calc(-50vw + 570px);
	}
}

@media (max-width: 991px) {
	.theme-nivo,
	.theme-nivo .bg-slider :is(div:not(.slick-slide), .nivo-imageLink) {
		height: 100% !important;
	}
}

.slider-mask {
	display: none;
}

@media (max-width: 991px) {
	.slider-mask {
		display: block;
		background: url("../img/banner-overlay.svg") bottom -2px center / 100% auto no-repeat;
	}
	#slider > .slick-slider,
	#slider > .slick-slider * {
		height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
	}
}

@media (min-width: 992px) {
	#headerpic .slider-wrapper::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -20px;
		z-index: 9;
		background: url("../img/banner-overlay.svg") bottom right no-repeat;
		pointer-events: none;
		height: 150px;
	}
}

@media (min-width: 1200px) {
	#headerpic .slider-wrapper::after {
		height: 210px;
		bottom: -70px;
	}
}

/* ----------------------------------- banner dots ------------------------------------ */

@media (max-width: 991px) {
	#headerpic .nivo-controlNav {
		top: 20px;
		bottom: unset;
	}
}

@media (min-width: 992px) {
	#headerpic .nivo-controlNav {
		display: flex;
		justify-content: end;
		flex-wrap: wrap;
		align-items: center;
	}

	#headerpic .nivo-controlNav button:not(#nivo-crtlbtn),
	#headerpic .nivo-controlNav a {
		background: transparent;
		border: 1px solid #ffffff;
		border-radius: 50%;
		width: 14px;
		height: 14px;
		position: relative;
		padding: 0;
	}

	#headerpic .nivo-controlNav > ul > li {
		height: 16px;
		width: 16px;
	}

	#headerpic .nivo-controlNav button:not(#nivo-crtlbtn)::after,
	#headerpic .nivo-controlNav a::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: 0;
		margin-top: 0;
		display: block;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: #ffffff;
		-webkit-transition:
			width 200ms linear,
			height 200ms linear,
			margin 200ms linear;
		-moz-transition:
			width 200ms linear,
			height 200ms linear,
			margin 200ms linear;
		-ms-transition:
			width 200ms linear,
			height 200ms linear,
			margin 200ms linear;
		-o-transition:
			width 200ms linear,
			height 200ms linear,
			margin 200ms linear;
		transition:
			width 200ms linear,
			height 200ms linear,
			margin 200ms linear;
	}

	#headerpic .nivo-controlNav li.slick-active button:not(#nivo-crtlbtn)::after,
	#headerpic .nivo-controlNav li:hover button:not(#nivo-crtlbtn)::after,
	#headerpic .nivo-controlNav a.active::after,
	#headerpic .nivo-controlNav a:hover::after {
		margin-top: -4px;
		margin-left: -4px;
		width: 8px;
		height: 8px;
	}

	#headerpic .nivo-controlNav li + li,
	#headerpic .nivo-controlNav a + a {
		margin-left: 10px;
	}

	#headerpic .nivo-controlNav {
		z-index: 60;
		font-size: 0;
		text-align: right;
		min-height: 40px;
		bottom: calc(18px + (38 - 30) * (100vw - 992px) / (1199 - 992)) !important;
		right: 210px;
	}
}

@media (min-width: 1200px) {
	#headerpic .nivo-controlNav {
		right: 210px;
		bottom: calc(-20px + (46 - 10) * (100vw - 1200px) / (1920 - 1200)) !important;
	}
}

/* ---------------------------------- banner arrows ----------------------------------- */

@media (min-width: 992px) {
	#headerpic .nivo-directionNav {
		position: absolute;
		z-index: 60;
		right: 60px;
		bottom: calc(18px + (26 - 18) * (100vw - 992px) / (1199 - 992)) !important;
		text-align: right;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#headerpic .nivo-directionNav {
		bottom: calc(-20px + (56 - 20) * (100vw - 1200px) / (1920 - 1200)) !important;
	}
}

#headerpic .nivo-directionNav a {
	background: #ffffff;
	width: 40px;
	height: 40px;
	display: inline-block;
	text-indent: 0;
	font-size: 0;
}

@media (min-width: 992px) {
	#headerpic .nivo-directionNav a {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		opacity: 1;
		-webkit-transition: background 200ms linear;
		-moz-transition: background 200ms linear;
		-ms-transition: background 200ms linear;
		-o-transition: background 200ms linear;
		transition: background 200ms linear;
	}
}

#headerpic .nivo-directionNav a:hover {
	background: rgba(255, 255, 255, 0.7);
}

#headerpic .nivo-directionNav a::after {
	font-size: 2.5rem;
	position: absolute;
	line-height: 1;
	top: -4px;
	color: #0056b3;
}

#headerpic .nivo-directionNav a.nivo-prevNav::after {
	content: "\2039";
	left: 12px;
}

#headerpic .nivo-directionNav a.nivo-nextNav::after {
	content: "\203A";
	right: 12px;
}

#headerpic .nivo-directionNav a + a {
	margin-left: 30px;
}

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

main {
	position: relative;
}

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

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

/* ------------------------------------------------ kalender ----------------------------------------------- */

#kalender {
	padding-top: 90px;
	padding-bottom: 35px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

@media (min-width: 992px) {
	#kalender {
		padding-top: 200px;
	}
}

#kalender::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		url("../img/welle-oben.png") top center / 100% auto no-repeat,
		url("../img/welle-unten.png") bottom center / 100% auto no-repeat;
}

#kalender .tabCalendar {
	background: #ffffff;
	border-radius: 3px;
	padding: 15px;
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {
	#kalender .tabCalendar {
		padding-bottom: 30px;
	}
}

#kalender .tabCalendar > .row,
#kalender .tabCalendar > .row > div {
	position: static;
}

#clr-events-hide,
#clr-events-hide + div {
	display: none;
}

#kalender .eventclndr-tab {
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	#kalender .eventclndr-tab {
		margin-bottom: 0;
	}
}

#kalender .tabHeadline {
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

#kalender .tab_link_title a {
	color: #222222;
	font-weight: 600;
}

#kalender .tab_link_mandat a {
	color: #222222;
}

#kalender .tab_link_mehr {
	color: transparent;
	font-size: 0;
}

#kalender .tab_link_mehr a {
	padding-top: 32px;
	padding-left: 40px;
	text-align: left;
	display: block;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.125rem;
	width: 99px;
	height: 89px;
	clip-path: polygon(100% 0, 0 56%, 77% 100%);
	background: #0056b3;
	position: absolute;
	right: -14px;
	bottom: -45px;
}

#kalender .tab_link_mehr a:focus,
#kalender .tab_link_mehr a:hover {
	background: #89279b;
}

@media (min-width: 992px) {
	#kalender .tab_link_mehr a {
		right: -35px;
		bottom: 15px;
	}
}

#kalender .tab_link_entries {
	padding-left: 70px;
	background: url("../img/icon-note4.png") center left no-repeat;
}

@media (min-width: 992px) {
	#kalender .tab_link_entries {
		padding-right: 55px;
	}
}

#kalender .tab_link_entries > div:last-child .tab_spacer {
	height: 0;
}

#kalender .shadow {
	position: relative;
	z-index: 1;
}

#kalender .shadow::after {
	content: "";
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	height: 30px;
	z-index: -1;
	-webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.45);
}

/* ------------------------------------------ h1, #content .legacy_h1, .legacy_h1 - h6, #content .legacy_h6, .legacy_h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:visited,
h6,
#content .legacy_h6,
.legacy_h6,
h5,
#content .legacy_h5,
.legacy_h5,
h4,
#content .legacy_h4,
.legacy_h4,
h3,
#content .legacy_h3,
.legacy_h3,
h2,
#content .legacy_h2,
.legacy_h2,
h1,
#content .legacy_h1,
.legacy_h1 {
	color: #c92222;
	font-weight: 600;
	line-height: 1.2;
	font-family: "Mulish", sans-serif;
}

h1,
#content .legacy_h1,
.legacy_h1 {
	font-size: calc(22px + (42 - 22) * (100vw - 320px) / (1920 - 320));
}

h2,
#content .legacy_h2,
.legacy_h2,
.h2 {
	font-size: calc(22px + (38 - 22) * (100vw - 320px) / (1920 - 320));
}

h3,
#content .legacy_h3,
.legacy_h3,
.h3 {
	font-size: calc(22px + (34 - 22) * (100vw - 320px) / (1920 - 320));
}

h4,
#content .legacy_h4,
.legacy_h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:visited {
	font-size: calc(22px + (32 - 22) * (100vw - 320px) / (1920 - 320));
}

h5,
#content .legacy_h5,
.legacy_h5,
.h5 {
	font-size: calc(22px + (28 - 22) * (100vw - 320px) / (1920 - 320));
}

h6,
#content .legacy_h6,
.legacy_h6,
.h6 {
	font-size: calc(22px + (24 - 22) * (100vw - 320px) / (1920 - 320));
}

#newslinks,
#newsmandate {
	border: 1px solid #c92222;
}

/* ----------------------------------------------- contactFooter ----------------------------------------------- */

#contactFooter {
	padding-top: 30px;
	padding-bottom: 30px;
}

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

@media (min-width: 768px) {
	.tabSponsorBox {
		margin-bottom: 40px;
		padding-bottom: 25px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
}

@media (min-width: 992px) {
	#contactFooter {
		padding-top: 80px;
		padding-bottom: 50px;
	}

	.tabSponsorBox {
		margin-bottom: 60px;
	}
}

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

@media (min-width: 992px) {
	.iframetab {
		max-width: 324px;
	}
}

#contactFooter .tabHeadline {
	font-size: 1.5rem;
}

#contactFooter .tabButton a {
	margin-top: 10px;
	text-decoration: none;
	display: inline-block;
	padding: 6px 12px;
	font-size: 0.875rem;
	color: #ffffff;
	background: linear-gradient(to right, #c92222, #89279b, #0056b3);
	transition: transform 300ms linear;
}

#contactFooter .tabButton a:hover,
#contactFooter .tabButton a:focus {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

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

#footer {
	padding-top: 16px;
	padding-bottom: 16px;
	color: #ffffff;
	background-color: #0056b3;
	position: relative;
}

@media (min-width: 1200px) {
	#footer > .row::after {
		content: "";
		position: absolute;
		pointer-events: none;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 430px;
		width: 56px;
		height: 71px;
		background: url("../img/icon-note2.png") center no-repeat;
	}
}

/* --------------------------------------------- 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;
	font-weight: 300;
	position: relative;
	z-index: 1;
}

#innerfooter a::after {
	content: "";
	position: absolute;
	pointer-events: none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 38px;
	height: 69px;
	background: url("../img/icon-note3.png") center no-repeat;
	z-index: -1;
	opacity: 0;
	transition: opacity 300ms linear;
}

#innerfooter a:hover::after,
#innerfooter a:focus::after {
	opacity: 1;
}

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

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

@media (min-width: 992px) {
	#innerfooter li + li::before {
		margin: 0 20px;
	}
}

@media (max-width: 767px) {
	#innerfooter li {
		display: block;
		text-align: center;
		padding: 5px;
		margin: 0;
	}

	#innerfooter li + li::before {
		display: none;
	}
}

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

#vernetzt {
	text-align: right;
	font-size: 0.9375rem;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 auto;
	font-weight: 300;
	text-decoration: none;
}

@media (min-width: 768px) {
	#vernetzt {
		margin: 0;
		font-size: 1rem;
	}
}

#vernetzt span {
	color: #ffffff;
}

#vernetzt span span {
	display: block;
}

#vernetzt img {
	margin-left: 15px;
}
