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

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

body {
	font-family: "Arial", "Roboto", sans-serif;
	font-weight: 400;
	color: #435560;
	background: #ffffff;
	font-size: 1rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #5c1b1b;
}

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

#content a {
	font-style: italic;
}

b,
strong {
	font-weight: 700;
}

:not(.cc_banner-wrapper):focus-visible,
#vernetzt:focus-visible span {
	background-color: #67795d !important;
	color: #fff !important;
	z-index: 100;
	text-decoration: none;
	outline: 2px solid #fff;
}

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

/* ------------------------------------------- header ------------------------------------------- */

header {
	background: #5c6b52;
	position: relative;
}

@media (min-width: 992px) {
	header {
		color: #ffffff;
	}

	#header-position {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
}

#logo-bar {
	padding-top: clamp(20px, 4vw, 40px);
	padding-bottom: clamp(20px, 4vw, 60px);
}

/* LOGO MIT TEXT -------------------------------------------------------- */

#logo {
	display: inline-block;
}

#logo img {
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	background: linear-gradient(to right, rgba(103, 121, 93, 0) 0%, rgba(103, 121, 93, 0.75) 10%, rgba(103, 121, 93, 0.8) 50%, rgba(103, 121, 93, 0.75) 90%, rgba(103, 121, 93, 0) 100%);
	padding: 15px 100px;
}

@media (max-width: 991px) {
	#logo-bar {
		padding: 15px;
	}

	#logo img {
		max-width: 320px;
		width: 100%;
		padding: 15px;
	}
}

@media (max-width: 375px) {
	#logo img {
		max-width: 350px;
		width: 100%;
		padding: 5px;
	}
}

/* LOGO MIT TEXT -------------------------------------------------------- */

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

/* burgermenu for tablet */

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

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

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #ffffff;
		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: #5f6f65;
		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: 35px;
		right: 15px;
		z-index: 101;
	}

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

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		right: 0;
		top: 0;
		max-width: 1930px;
		width: 100% !important;
		z-index: 101;
		transition: background 150ms linear, border 150ms linear;
		border-top: 1px solid transparent;
		border-bottom: 1px solid transparent;
	}

	.is-sticky nav.horizontally {
		border-color: rgba(255, 255, 255, 0.5);
		background: #67795d;
	}

	nav.horizontally .navbar-nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		background: linear-gradient(to right,
				rgba(103, 121, 93, 0) 0%,
				rgba(103, 121, 93, 0.75) 10%,
				rgba(103, 121, 93, 0.94) 50%,
				rgba(103, 121, 93, 0.75) 90%,
				rgba(103, 121, 93, 0) 100%);
		padding: 0 100px;
	}

	.is-sticky nav.horizontally .navbar-nav {
		border: none;
		background: transparent;
		padding: 0 0;
	}

	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: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: #ffffff;
	font-weight: 700;
	text-align: left;
	padding: 10px 10px;
	padding-right: 10px;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

nav.horizontally a[class*="toplevel"]::before {
	content: "";
	width: 0;
	height: 2px;
	display: block;
	position: absolute;
	left: 0;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	background-color: #ffffff;
	opacity: 0;
	-webkit-transition: opacity 300ms linear, width 300ms linear;
	-moz-transition: opacity 300ms linear, width 300ms linear;
	-ms-transition: opacity 300ms linear, width 300ms linear;
	-o-transition: opacity 300ms linear, width 300ms linear;
	transition: opacity 300ms linear, width 300ms linear;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav>li>a::before {
		left: 50%;
		bottom: 10px;
	}
}

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

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

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 22px 6px;
		text-align: center;
	}
}

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

@media (min-width: 992px) {

	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:is(:hover, :focus)::after,
	nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::after {
		content: "";
		position: absolute;
		display: block;
		height: 150px;
		left: 0;
		right: 0;
		top: 0;
	}
}

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

/* secondlevel + thirdlevel dropdown-box */

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

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

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

	nav.horizontally [class*="secondlevel"]>ul {
		margin-top: -18px;
		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: #435560;
	font-weight: 400;
	text-align: left;
	padding: 8px 25px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

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

/* 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: #67795d;
	color: #ffffff;
	text-decoration: underline;
}

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

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

#slider {
	max-height: 300px;
	overflow: hidden;
	position: relative;
}

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

	body.index #slider {
		max-height: 400px;
	}

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

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

.slider-wrapper {
	height: 100% !important;
}

.slider-mask {
	display: none;
}

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

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

#content {
	text-align: left;
	overflow: hidden;
	padding-top: clamp(30px, 6vw, 95px);
	padding-bottom: clamp(30px, 6vw, 110px);
}

.index #content {
	padding-top: 0;
	padding-bottom: 0;
}

@media (min-width: 992px) {
	.index #content {
		padding-bottom: 5px;
	}
}

#tickerWrapper {
	padding-top: 20px;
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: 2rem;
}

h2,
.h2,
.legacy_h2 {
	font-size: 1.75rem;
}

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

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

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

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

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

:is(#ev10, #nw10, #sg10) .tab {
	margin-left: auto;
	margin-right: auto;
	margin-top: 32px;
	margin-bottom: 50px;
	position: relative;
	background: #ffffff;
	font-size: 0.9375rem;
	-webkit-box-shadow: 0 0 5px 0 rgba(10, 9, 9, 0.1);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	padding: 0;
	max-width: 270px;
}

:is(#ev10, #nw10, #sg10) .tab a {
	font-style: normal !important;
}

#nw10 {
	position: relative;
}

#nw10 .tabContent {
	padding: 0 20px;
}

#sg10 .tabContent {
	padding: 0 20px 30px 20px;
}

:is(#ev10, #nw10, #sg10) .tabSpecial {
	padding: 30px 10px 20px 10px;
}

:is(#ev10, #nw10, #sg10) .tabSpecial .tabHeadline {
	text-align: center;
	font-size: 1.25rem !important;
	font-weight: 700;
	color: #5f6f65;
	margin: 0;
}

#ev10 .tab_link {
	padding-left: 20px;
	padding-right: 20px;
}

:is(#ev10, #nw10) #clr-events-hide {
	margin-top: 25px;
	padding-left: 20px;
	padding-right: 20px;
}

:is(#ev10, #nw10) .tab .eventclndr-tab {
	margin-bottom: 0;
}

:is(#ev10, #nw10) .tab .tab_link_title a {
	color: #435560;
	font-weight: 600;
}

:is(#ev10, #nw10) .tab .tab_link_mandat a {
	color: #435560;
	font-weight: 600;
}

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

:is(#ev10, #nw10) .tab .tab_spacer {
	height: 15px;
}

:is(#ev10, #nw10) .tab .tab_link_mehr {
	color: transparent;
	font-size: 0;
	padding-bottom: 30px;
	padding-right: 20px;
}

#nw10 .tab .tab_link_mehr {
	padding-right: 0px;
}

:is(#ev10, #nw10, #sg10) .tab .tab_link_mehr a {
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	font-size: 0.9375rem;
	color: #fff;
	font-weight: 600;
	border-radius: 2px;
	padding: 3px 11px;
	background: #5f6f65;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

:is(#ev10, #nw10, #sg10) .tab .tab_link_mehr a:hover,
:is(#ev10, #nw10, #sg10) .tab .tab_link_mehr a:focus {
	color: #ffffff;
	background: #67795d;
}

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

#breaker {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 200px;
}

@media (min-width: 992px) {
	#breaker {
		min-height: 400px;
	}
}

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

footer {
	background-color: #67795d;
	color: #ffffff;
	padding: 20px 0;
	font-size: 0.875rem;
}

@media (max-width: 991px) {
	footer>.row {
		row-gap: 30px;
	}
}

footer :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 10px;
}

footer a {
	color: #fff;
	text-decoration: underline;
}

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

#f5>.row {
	padding-top: 25px;
}

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

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

@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 {
	color: #fff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	font-size: 0.8125rem;
}

#vernetzt span {
	display: block;
}

#vernetzt strong {
	color: #ffffff;
}

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

/* #region -------------------------------------- scroll top ------------------------------------ */

#scrollTop {
	color: #ffffff;
	display: block !important;
	font-size: 0;
	opacity: 1 !important;
	background: #71745d url(../img/scroll-top.png);
	background-position: center;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	position: relative;
	margin: 0 auto;
	border-radius: 50%;
	outline: 2px solid #fff;
}

@media (min-width: 992px) {
	#scrollTop {
		position: fixed;
		bottom: 34px;
		right: clamp(5px, 17vw, 260px);
		z-index: 55;
	}
}

#scrollTop:is(:hover, :focus) {
	background-color: #5c1b1b;
}

/* #endregion ----------------------------------- scroll top ------------------------------------ */