@import url("https://fonts.verwaltungsportal.de/import/?family=Work+Sans:400,400i,700,700i%7COswald:500,500i,700,700i");

body {
	font-family: "Work Sans", sans-serif;
	color: #4f4f4f;
	background: #ffffff;
	font-size: 1rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

@media (min-width: 768px) {
	body {
		font-size: 1.125rem;
	}
}

a {
	color: #b33000;
}

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

b,
strong {
	font-weight: 700;
}

.linkUnderline a {
	text-decoration: underline;
}

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

.row {
	max-width: 1600px;
	width: 100%;
}

#over {
	overflow: clip;
	position: relative;
}

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

.logo {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
	text-decoration: none !important;
}

.logo .template-page {
	width: auto;
}

.logo .cleaner {
	display: none;
}

.logoText {
	color: #017e40;
	font-size: 1.125rem;
	align-content: center;
	line-height: 1.3;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
}

.logoText :is(b, strong) {
	display: block;
	font-size: clamp(1.5625rem, 2.5vw, 2.1875rem);
	font-weight: 500;
}

.logoText br {
	display: none;
}

@media (max-width: 575px) {
	.logoText {
		hyphens: auto;
	}
}

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

@media (min-width: 992px) {
   #style {
      margin-right: 30px;
   }
	#style span {
		font-size: 1rem;
		color: #4f4f4f;
	}
	#style button {
		border: none;
		color: #4f4f4f;
		display: inline-block;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		font-weight: 400;
		text-align: center;
		background-color: transparent;
		position: relative;
		line-height: 1;
		transition:
			background 150ms linear,
			color 150ms linear;
		font-size: 1rem;
	}
	#style button + button {
		margin-left: -10px;
	}
	#style button:hover,
	#style button:focus-visible {
		background: #b33000;
		color: #fff;
	}
}

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

@media (max-width: 991px) {
	#topbar {
		padding: 10px 0;
		position: static !important;
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
		box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	}
}

@media (min-width: 992px) {
	#topbar {
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
		box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	}
}

#search {
	position: relative;
	width: 100%;
	display: flex;
	margin-right: 50px;
	border-bottom: 2px solid #017e40;
}

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

@media (min-width: 992px) {
	#search {
		min-width: 240px;
		max-width: 270px;
		width: auto;
		margin-right: 90px;
	}
}

#search_input {
	color: #4f4f4f;
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	background: transparent;
	border: 0;
	width: 100%;
	opacity: 0.5;
	padding: 7px 14px;
	line-height: 1;
}

#search_submit {
	background: url("../img/lupe-icon-v2.png") center / 14px 14px no-repeat;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	aspect-ratio: 1/1;
	min-width: 35px;
	flex-shrink: 0;
	border: none;
	transition: transform 150ms linear;
}

@media (min-width: 768px) {
	#search_submit:is(:hover, :focus) {
		transform: scale(1.2);
	}
}

#search input::placeholder {
	color: #4f4f4f !important;
	opacity: 1 !important;
	font-style: normal !important;
}

/* -------------------------------------------- @nav4 Navigation ------------------------------------------- */

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

#burgerButton {
	font-size: 0;
	border: none !important;
	position: relative;
	z-index: 1002;
	display: block;
	width: 48px;
	height: 48px;
	cursor: pointer;
	background: #017e40;
	border-radius: 50%;
	border: 1px solid #ffffff;
}

@media (max-width: 991px) {
	#burgerButton {
		position: fixed;
		right: 15px;
		top: 15px;
	}
}

@media (min-width: 992px) {
	#burgerButton {
		width: 48px;
		height: 48px;
		border-radius: unset;
		margin-left: auto;
		z-index: 1003;
	}

	#buttonbg {
		color: #017e40;
		font-weight: 500;
		font-size: 1.875rem;
		line-height: 1.2;
		text-transform: uppercase;
		font-family: "Oswald", sans-serif;
		position: absolute;
		right: 60px;
		top: 10px;
	}
}

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

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

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

#burgerButtonInner2,
#burgerButton:after,
#burgerButtonInner {
	position: absolute;
	background: #ffffff;
	width: 24px;
	height: 2px;
	left: 12px;
	-webkit-transition:
		transform 200ms linear,
		opacity 200ms linear;
	-moz-transition:
		transform 200ms linear,
		opacity 200ms linear;
	-ms-transition:
		transform 200ms linear,
		opacity 200ms linear;
	-o-transition:
		transform 200ms linear,
		opacity 200ms linear;
	transition:
		transform 200ms linear,
		opacity 200ms linear;
}

@media (min-width: 992px) {
	#burgerButtonInner2,
	#burgerButton:after,
	#burgerButtonInner {
		left: 12px;
	}
}

#burgerButtonInner {
	top: 16px;
}

#burgerButtonInner2 {
	top: 23px;
}

#burgerButton:after {
	top: 30px;
	content: "";
	display: block;
}

@media (min-width: 992px) {
	#burgerButtonInner {
		top: 16px;
	}

	#burgerButtonInner2 {
		top: 23px;
	}

	#burgerButton:after {
		top: 30px;
	}
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	.navbar-collapse {
		top: 0;
		background: #ffffff;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		-webkit-box-shadow: 0 0 150px 0 rgba(0, 0, 0, 1);
		box-shadow: 0 0 150px 0 rgba(0, 0, 0, 1);
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		-webkit-transition:
			left 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			left 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			left 300ms linear,
			opacity 300ms linear;
		-o-transition:
			left 300ms linear,
			opacity 300ms linear;
		transition:
			left 300ms linear,
			opacity 300ms linear;
	}

	.navbar-collapse[aria-expanded="true"],
	.navbar-collapse.in {
		left: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.navbar-toggle::before {
		content: "";
		opacity: 0;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 0;
		z-index: -1;
		display: block;
		-webkit-transition:
			width 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			width 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			width 300ms linear,
			opacity 300ms linear;
		-o-transition:
			width 300ms linear,
			opacity 300ms linear;
		transition:
			width 300ms linear,
			opacity 300ms linear;
	}

	.navbar-toggle[aria-expanded="true"]::before {
		opacity: 1;
		width: 90px;
	}
}

@media (min-width: 575px) and (max-width: 991px) {
	.navbar-collapse {
		width: 60%;
	}

	.navbar-collapse.collapse.in:after,
	.navbar-toggle[aria-expanded="true"]::before {
		width: 40%;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav > .row {
		padding-top: 27px;
		padding-bottom: 27px;
	}

	nav > .row,
	nav > .row > div {
		position: static;
	}

	.navbar-default {
		width: auto;
		margin-left: 35px;
	}

	.navbar-default .navbar-nav {
		width: 100%;
		margin: 0;
		display: block;
		padding: 30px;
		overflow-y: auto;
		position: relative;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		-moz-column-gap: 30px;
		column-gap: 30px;
		max-width: 992px;
		margin-left: auto;
		margin-right: auto;
		background: #ffffff;
	}

	.navbar-default li[class*="toplevel"] {
		float: none;
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		break-inside: avoid;
		display: list-item !important;
	}

	.navbar-nav::after,
	.navbar-nav::before {
		display: none;
	}

	#myNavbar {
		max-height: 70vh;
	}

	#myNavbar.navbar-collapse {
		pointer-events: none;
		position: absolute;
		z-index: 1002;
		top: 50%;
		right: 0;
		opacity: 0;
		width: 600px;
		background: #ffffff;
		border-bottom: 4px solid #017e40;
		border-top: 4px solid #017e40;
		height: auto !important;
		filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
		-webkit-transition:
			opacity 300ms linear,
			top 300ms linear;
		-moz-transition:
			opacity 300ms linear,
			top 300ms linear;
		-ms-transition:
			opacity 300ms linear,
			top 300ms linear;
		-o-transition:
			opacity 300ms linear,
			top 300ms linear;
		transition:
			opacity 300ms linear,
			top 300ms linear;
	}

	#burgerButton::before {
		content: "";
		display: block;
		position: absolute;
		pointer-events: none;
		right: 10px;
		bottom: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 15px 25px 15px;
		border-color: transparent transparent #ffffff transparent;
		opacity: 0;
		-webkit-transition:
			opacity 300ms linear,
			bottom 300ms linear;
		-moz-transition:
			opacity 300ms linear,
			bottom 300ms linear;
		-ms-transition:
			opacity 300ms linear,
			bottom 300ms linear;
		-o-transition:
			opacity 300ms linear,
			bottom 300ms linear;
		transition:
			opacity 300ms linear,
			bottom 300ms linear;
	}

	#burgerButton[aria-expanded="true"]::before {
		opacity: 1;
		bottom: -47px;
	}

	#burgerButton[aria-expanded="true"] + #myNavbar {
		pointer-events: auto;
		opacity: 1;
		top: 120%;
	}

	#myNavbar:focus-within {
		pointer-events: auto;
		opacity: 1;
		top: 120%;
	}

	#myNavbar {
		max-height: 50vh;
		overflow: auto;
		scrollbar-color: #555555 #f1f1f1;
		scrollbar-width: thin;
	}
}

@media (min-width: 1200px) {
	.navbar-default {
		margin-left: 52px;
	}

	.navbar-default .navbar-nav {
		max-width: 1200px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default li[class*="toplevel"] > a {
	color: #017e40;
	font-weight: 600;
	text-align: left;
	padding: 9px 20px;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	background: #f9f9f9;
	margin-bottom: 2px;
	border: 2px solid #f9f9f9;
}

@media (max-width: 991px) {
	.navbar-default li[class*="toplevel"] > a {
		overflow-wrap: break-word;
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}

	.navbar-default li[class*="toplevel"] {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

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

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-default li[class*="toplevel"]:hover > a:after,
.navbar-default li[class*="toplevel"] > a:hover,
.navbar-default li[class*="toplevel"] > a:focus,
.navbar-default li[class*="toplevel"].open > a,
.navbar-default li[class*="toplevel"].open > a:hover,
.navbar-default li[class*="toplevel"].open > a:focus,
.navbar-default li[class*="toplevel"][class$="_over"] > a,
.navbar-default li[class*="toplevel"][class$="_over"] > a:hover,
.navbar-default li[class*="toplevel"][class$="_over"] > a:focus {
	color: #ffffff;
	background: #b33000;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

@media (max-width: 991px) {
	.navbar-default li[class*="toplevel"] > .dropdown-menu {
		padding: 10px;
	}

	.navbar-default li[class*="toplevel"] > .dropdown-menu,
	.navbar-default li[class*="toplevel"] > .dropdown-menu > li > .dropdown-menu {
		background: rgba(255, 255, 255, 0.5);
	}
}

@media (min-width: 992px) {
	.navbar-default li[class*="toplevel"] > .dropdown-menu,
	.navbar-default li[class*="toplevel"] > .dropdown-menu > li > .dropdown-menu {
		display: block;
	}
}

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

.navbar-default li[class*="secondlevel"] > a,
.navbar-default li[class*="thirdlevel"] > a {
	color: #4f4f4f;
	font-weight: 600;
	text-align: left;
	padding: 8px 35px 8px 15px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	position: relative;
}

@media (max-width: 991px) {
	.navbar-default li[class*="thirdlevel"] > a {
		padding-left: 25px;
	}

	.navbar-default li[class*="secondlevel"] > a,
	.navbar-default li[class*="thirdlevel"] > a {
		overflow-wrap: break-word;
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}
}

@media (min-width: 992px) {
	.navbar-default li[class*="secondlevel"] > a {
		padding: 5px 15px 5px 30px;
	}

	.navbar-default li[class*="thirdlevel"] > a {
		padding: 5px 15px 5px 50px;
	}

	.navbar-default li[class*="secondlevel"] > a::before {
		content: "";
		position: absolute;
		margin-top: -2px;
		top: 50%;
		left: 15px;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: #b33000;
		transition: background 150ms linear;
	}

	.navbar-default li[class*="thirdlevel"] > a::before {
		content: "";
		position: absolute;
		margin-top: -2px;
		top: 50%;
		left: 15px;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: #12874c;
		transition: background 150ms linear;
	}

	.navbar-default li[class*="thirdlevel"] > a::before {
		left: 35px;
	}
}

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

.navbar-nav li[class*="secondlevel"]:hover > a,
.navbar-nav li[class*="secondlevel"] > a:hover,
.navbar-nav li[class*="secondlevel"] > a:focus,
.navbar-nav li[class*="secondlevel"].open > a,
.navbar-nav li[class*="secondlevel"].open > a:hover,
.navbar-nav li[class*="secondlevel"].open > a:focus,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:hover,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:focus {
	color: #b33000;
}

.navbar-nav li[class*="thirdlevel"] > a:hover::before,
.navbar-nav li[class*="thirdlevel"] > a:focus::before,
.navbar-nav li[class*="thirdlevel"].open > a::before,
.navbar-nav li[class*="thirdlevel"].open > a:hover::before,
.navbar-nav li[class*="thirdlevel"].open > a:focus::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:hover::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:focus::before {
	color: #017e40;
}

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

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

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

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

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

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

	#headerpic .nivo-controlNav {
		top: 15px;
		bottom: auto;
	}
}

#headerpic {
	margin: 0 auto;
	position: relative;
	width: 100%;
	margin-top: 50px;
}

#headerpic .slider-wrapper {
	height: auto;
}

.slider-mask {
	display: none;
}

.index .slider-mask {
	display: block;
	background: linear-gradient(0deg, rgba(25, 25, 25, 0.6) 33%, rgba(255, 255, 255, 0) 70%);
	height: 560px;
	max-height: 100%;
	bottom: 0;
}

/* ------------------------------------------------ BannerTab ----------------------------------------------- */
#bannerTab .tab {
	color: #017e40;
	font-size: clamp(1.5625rem, 2.5vw, 2.1875rem);
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	padding: 30px 0;
	background: linear-gradient(0deg, rgba(25, 25, 25, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

#bannerTab .tab :is(b, strong) {
	font-size: clamp(1.875rem, 4vw, 3.125rem);
}

@media (min-width: 992px) {
	#bannerTab {
		position: relative;
	}

	#bannerTab .tab {
		position: absolute;
		width: 100%;
		z-index: 20;
		bottom: clamp(50px, 7vw, 110px);
		color: #fff;
		padding: 0 60px;
	}

	#bannerTab .tab a {
		color: #fff;
		text-decoration: underline;
	}
}

/* ------------------------------------------------ Kontakt ----------------------------------------------- */
#kontakt {
	font-size: clamp(1.25rem, 1.5vw, 1.5rem);
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	color: #017e40;
	isolation: isolate;
	pointer-events: none;
}

@media (min-width: 992px) {
	#kontakt {
		margin-top: -44px;
		position: relative;
		z-index: 20;
	}
}

#kontakt > div {
	pointer-events: all;
}

#kontakt > div:first-of-type {
	padding: 25px 0 25px 47px;
}

@media (max-width: 767px) {
	#kontakt > div:first-of-type {
		padding: 25px 33px;
	}
}

#kontakt > div:last-of-type {
	padding: 20px;
}

#kontakt > div::after {
	content: "";
	position: absolute;
	background: #fff;
	border-top: 4px solid #017e40;
	z-index: -1;
}

@media (max-width: 767px) {
	#kontakt > div::after {
		border: 4px solid #017e40;
		border-top: none;
	}
}

#kontakt > div:first-of-type::after {
	inset: 0 -15px 0 15px;
}

@media (max-width: 767px) {
	#kontakt > div:first-of-type::after {
		inset: 0 15px 0 15px;
	}
}

#kontakt > div:last-of-type::after {
	inset: 0 15px 0 15px;
	background: #017e40;
	color: #fff;
}

#kontakt > div .tabHeadline {
	color: #fff;
	font-size: clamp(1.5625rem, 2vw, 1.875rem);
	text-align: center;
	text-transform: uppercase;
	background: #017e40;
	margin: 0;
	display: block;
}

#kontakt > div .tabHeadline a {
	color: #fff;
	display: block;
}

/* ------------------------------------------------ @17ev ----------------------------------------------- */

#ev17 {
	padding: clamp(30px, 5vw, 70px) 0 clamp(30px, 5vw, 70px) 0;
}

#ev17 .specialHeadline {
	margin: 0 30px clamp(30px, 5vw, 70px) 15px;
	width: 100%;
}

#ev17 .tabHeadline {
	margin: 0px;
}

#ev17 .specialHeadline a:not(.has-image):not([rel]) {
	position: relative;
	background: #017e40;
	color: #fff;
	display: inline-block;
	padding: 15px 15px;
	text-decoration: none;
	text-align: center;
}

#ev17 .specialHeadline a:not(.has-image):not([rel]) {
	font-size: clamp(1.25rem, 2vw, 1.3125rem);
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}

#ev17 .specialHeadline a:not(.has-image):not([rel]):hover,
#ev17 .specialHeadline a:not(.has-image):not([rel]):focus {
	background: #b33000;
}

@media (max-width: 768px) {
	#ev17 .specialHeadline {
		padding: 0px;
	}

	#ev17 .specialHeadline .tabHeadline {
		margin-bottom: 10px;
		margin-top: 10px;
	}

	#ev17 .specialHeadline a:not(.has-image):not([rel]) {
		max-width: unset;
		margin-top: 20px;
	}
}

#ev17 .tab_link_entries {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

#ev17 .tab_link_entry {
	width: 100%;
	padding: 15px 30px;
	background: #ffffff;
	-webkit-box-shadow: 0 7px 10px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 7px 10px 3px rgba(0, 0, 0, 0.05);
	border-top: 4px solid #017e40;
	border-bottom: 4px solid #017e40;
}

@media (min-width: 575px) and (max-width: 991px) {
	#ev17 .tab_link_entry {
		max-width: calc(50% - 15px);
	}
}

@media (min-width: 992px) {
	#ev17 .tab_link_entry {
		max-width: calc(50% - 25px);
	}
}

.tab_link_title a {
	font-size: clamp(1.125rem, 2vw, 1.625rem);
	font-weight: 700;
	color: #017e40;
	margin-bottom: 25px;
	display: inline-block;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
}

.tab_link_date {
	color: #4f4f4f;
	font-size: 1rem;
}

#ev17 .tab_link_mandat {
	display: none;
}

#ev17 .tab_spacer,
#ev17 .vorschau {
	display: none;
}

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

#ev17 .tab_link_mehr a,
.buttonStyle a {
	background: #b33000;
	color: #fff;
	max-width: unset;
	width: auto;
	padding: 12px 20px;
	margin-top: 20px;
	font-size: 0.875rem;
	position: relative;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	line-height: 1;
}

#ev17 .tab_link_mehr {
	font-size: 0px;
	text-align: right !important;
}

#ev17 .tab_link_mehr a:is(:hover, :focus),
.buttonStyle a:is(:hover, :focus) {
	background: #017e40;
	color: #fff;
}

#nw23 .buttonStyle a {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(1rem, 3vw, 1.25rem);
	background: #017e40;
}

#nw23 .buttonStyle a:is(:hover, :focus) {
	background: #b33000;
}

/* ------------------------------------------------ News Slider ----------------------------------------------- */

#nw23 {
	max-width: 1570px;
	width: 100%;
	margin: auto;
	padding: clamp(40px, 4vw, 60px) 0;
	margin-top: 30px;
	background-color: #f2f2f2;
}

#nw23 .specialHeadline {
	padding: 0 15px 30px 15px;
}

#nw23 .tabHeadline.headline50 {
	margin-bottom: 0;
}

#nw23 .newsTab h3,
#ev17 .newsTab h3 {
	font-size: clamp(1.75rem, 4vw, 2.375rem);
	margin-bottom: 0;
}

#nw23 .tab_link_entry {
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
	padding: 30px 35px;
	font-size: 1rem;
	background-color: #ffffff;
	border-top: 4px solid #017e40;
	border-bottom: 4px solid #017e40 !important;
}

#nw23 .tab_link_entry {
	padding-left: 385px;
	min-height: 285px;
	position: relative;
	display: flex !important;
	flex-direction: column;
	color: #4f4f4f;
	font-size: 1rem;
	height: 100%;
}

#nw23 .tab_link_entry #nw23 .tab_preview_picture {
	background: #fff;
}

#nw23 .tab_link_title a::before,
#nw23 .tab_preview_picture {
	max-width: 350px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

@media (max-width: 767px) {
	#nw23 .tab_link_entry {
		padding-left: 35px;
		padding-right: 35px;
		padding-top: 280px;
	}

	#nw23 .tab_link_title a::before,
	#nw23 .tab_preview_picture {
		max-width: 100%;
		max-height: 250px;
	}
}

#nw23 .tab_date {
	font-size: 1rem;
	margin-bottom: clamp(20px, 3vw, 40px);
}

#nw23 .tab_preview_picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#nw23 .tab_link_title a::before {
	content: "";
	background: no-repeat center / contain;
	background-color: #f2f2f2;
}

#nw23 .tab_link_title {
	order: -1;
}

#nw23 .tab_spacer {
	display: none;
}

#nw23 .tab_link_title a {
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 500;
	color: #017e40;
	line-height: 1.2;
	margin-bottom: 0;
	font-family: "Oswald", sans-serif;
}

#nw23 .tab_link_mehr {
	font-size: 0px;
}

#nw23 .tab_link_mehr a {
	background: #b33000;
	color: #ffffff;
	padding: 7px 15px;
	font-size: 1rem;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
}

#nw23 .tab_link_mehr a:hover,
#nw23 .tab_link_mehr a:focus {
	background: #017e40;
	color: #fff;
}

#nw23 .slick-slide {
	padding: 15px;
	display: flex;
	align-items: stretch;
}

#nw23 .noPadding {
	padding: 0px;
}

#nw23 .slick-track {
	display: flex;
}

#nw23 .slick-track > .slick-slide {
	height: auto;
	display: flex;
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
	#nw23 .slick-button::after,
	#nw23 .slick-button::after {
		width: 28px;
		height: 28px;
	}
}

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

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

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

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

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

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

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

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

/* slider 1 stop/play button for accessibility -------------------- */

#nw23 .slick-animate-control {
	position: relative;
	z-index: 2;
	border-radius: 50%;
	border: 1px solid #ffffff;
	width: 30px;
	height: 30px;
	top: -5px;
	left: 10px;
	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");
}

#nw23 .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");
}

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

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

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

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

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

.index #contenttop_right,
.index #breadcrumbincontent,
.index #content_footer {
	display: none;
}

.index #aboveContent {
	margin: 0;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
	color: #017e40;
	font-weight: 500;
	line-height: 1.2;
	font-family: "Oswald", sans-serif;
	hyphens: auto;
}

.tabHeadline.headline50 {
	font-size: clamp(1.875rem, 4vw, 3.125rem);
}

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

@media (min-width: 768px) {
	h1,
	.h1,
	.legacy_h1 {
		font-size: 2.5rem;
	}
}

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

@media (min-width: 768px) {
	h2,
	.h2,
	.legacy_h2 {
		font-size: 2.1875rem;
	}
}

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

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

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

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

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

/* ----------------------------------------------- imgTabs ----------------------------------------------- */

#imgTabs > .row {
	gap: 30px 0;
}

#imgTabs .banner {
	height: 100%;
	background-size: cover;
	background-position: center;
	padding: 45px clamp(20px, 3vw, 50px);
}

#imgTabs .banner .tab {
	background: #fff;
	padding: 30px clamp(20px, 3vw, 40px);
	border-top: 4px solid #017e40;
	border-bottom: 4px solid #017e40;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
	color: #017e40;
	height: 100%;
	max-width: 320px;
	font-size: 1rem;
}

#imgTabs .banner .tabHeadline {
	margin-bottom: 30px;
}

#imgTabs > .row > div + div + div .banner .tab {
	margin-left: auto;
}

@media (max-width: 991px) {
	#imgTabs .banner .tab {
		margin: 0 auto;
	}
}

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

#partner {
	padding: clamp(40px, 6vw, 90px) 0 clamp(40px, 7vw, 110px) 0;
}

#partner .tabHeadline {
	margin-bottom: 45px;
}

/* ----------------------------------------------- Footer ----------------------------------------------- */

#footerTabsBG {
	background: #f2f2f2;
	isolation: isolate;
}

#footerTabsBG hr {
	height: 1px;
	opacity: 1;
	background: #fff;
	border: none;
}

#footerTabsBG h3 {
	font-size: clamp(1.625rem, 2.5vw, 2.1875rem);
}

#footerTabsBG h4 {
	font-size: clamp(1.5rem, 1.7vw, 1.625rem);
}

#footerTabsBG :is(h5, h6) {
	font-size: 1rem;
}

@media (min-width: 992px) {
	#footerTabsBG > .row > div:last-of-type .tabHeadline {
		margin-bottom: 60px;
	}
}

#footerTabsBG .tab {
	padding: clamp(40px, 5vw, 80px) 0 clamp(40px, 5vw, 75px) 0;
	font-size: 1rem;
}

@media (min-width: 992px) {
	#footerTabsBG > .row > div:first-of-type .tab {
		padding-left: 130px;
		padding-right: 130px;
	}

	#footerTabsBG > .row > div:last-of-type .tab {
		padding-left: 30px;
		padding-right: 60px;
	}
}

@media (max-width: 991px) {
	#footerTabsBG .tab {
		padding-left: 30px;
		padding-right: 30px;
	}
}

#footerTabsBG > .row > div:first-of-type::after {
	content: "";
	position: absolute;
	inset: 0 15px;
	background: #017e40;
	z-index: -1;
}

#footerTabsBG > .row > div:first-of-type > .tab {
	background: #017e40;
	color: #fff;
}

#footerTabsBG > .row > div:first-of-type > .tab :is(a, .tabHeadline, h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

#footerTabs .tabHeadline {
	text-transform: uppercase;
}

#footerTabsBG .btgrid {
	padding-bottom: 30px;
}

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

#footerTabsBG .btgrid .content {
	height: 100%;
	border-bottom: 2px solid #fff;
	padding-bottom: 30px;
}

/* ----------------------------------------------- newsletter ----------------------------------------------- */

#newsletter label {
	font-size: 0;
}

#newsletterInputs {
	display: inline-block;
	position: relative;
	margin-top: clamp(20px, 4vw, 60px);
	margin-bottom: 20px;
}

#newsletter_input {
	color: #017e40;
	font-size: 16px;
	font-style: normal;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 43px;
	height: 33px;
	width: 100%;
	border-bottom: 2px solid #017e40;
}

#newsletter_submit {
	width: 33px;
	background: url("../img/icon-mail.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	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;
	border-bottom: 2px solid #017e40;
}

#newsletter_submit:hover {
	background-color: #fff;
}

#newsletter_input::-ms-input-placeholder {
	color: #017e40 !important;
	opacity: 1;
}

#newsletter_input::-webkit-input-placeholder {
	color: #017e40 !important;
	opacity: 1;
}

#newsletter_input::-moz-placeholder {
	color: #017e40 !important;
	opacity: 1;
}

#newsletter_input:-moz-placeholder {
	color: #017e40 !important;
	opacity: 1;
}

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

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

/* --------------------------------------------- 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 li a {
	color: #4f4f4f;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

#innerfooter li a:hover,
#innerfooter li a:focus {
	color: #017e40;
	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 {
	text-align: right;
	font-size: 0.9375rem;
	color: #4f4f4f;
	line-height: 1.3;
	margin: 0 auto;
	text-decoration: none;
}

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

#vernetzt span {
	color: #4f4f4f;
}

#vernetzt b {
	color: #b33000;
}

#vernetzt span span {
	display: block;
}

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