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

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

body {
	font-family: "Roboto", sans-serif;
	color: #000;
	background: #fbfaf9;
	font-size: 1rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #267d30;
}

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

b,
strong {
	font-weight: 700;
}

.row {
   max-width: 1170px;
}

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

/* #region ---------------------------------- Topbar ---------------------------------------- */

#topbar {
	background: #267d30;
	padding: 8px 0;
}
#topbar > .row {
	gap: 30px 0;
}

@media (min-width: 992px) {
	#style {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 5px;
	}
	#style button {
		border: none;
		color: #000000;
		display: inline-block;
		width: 2.9375rem;
		height: 2.6875rem;
		font-weight: 400;
		text-align: center;
		background-color: #e4da82;
		position: relative;
		line-height: 1;
		font-size: 1.125rem;
		transition: none;
	}
	#style button + button {
		font-size: 1.25rem;
	}
	#style button + button + button {
		font-size: 1.375rem;
	}
	#style button:hover {
		background: #fff;
		color: #236e2d;
	}
	#style button:focus-visible {
		outline: 2px auto;
	}
}

#search {
	height: 2.0625rem;
	display: inline-block;
	position: relative;
	border-bottom: 1px solid #fff;
}
#search_input {
	color: #bdcdcd;
	font-size: 0.9375rem;
	font-style: normal;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 43px;
	height: 33px;
	width: 100%;
}
#search_submit {
	width: 33px;
	background: transparent url("../img/icon-search.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 33px;
	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;
}
#search_submit:hover {
	background-color: transparent;
}
#search_input::-ms-input-placeholder {
	color: #fff !important;
	opacity: 1;
}
#search_input::-webkit-input-placeholder {
	color: #fff !important;
	opacity: 1;
}
#search_input::-moz-placeholder {
	color: #fff !important;
	opacity: 1;
}
#search_input:-moz-placeholder {
	color: #fff !important;
	opacity: 1;
}

/* #endregion ---------------------------------- Topbar ---------------------------------------- */

/* #region ---------------------------------- 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: #267d30;
		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: 7px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	nav.horizontally .navbar-nav > li {
		flex-grow: 1;
	}

	nav.horizontally .navbar-nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		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: #000;
	font-weight: 400;
	padding: 10px 35px 15px 35px;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	transition: none;
}

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

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 20px 10px;
		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: #e4da82;
	background-color: #206527;
}

/* secondlevel + thirdlevel dropdown-box */

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

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

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

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

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

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

	nav.horizontally [class*="toplevel"] > ul::before {
		height: 10px;
		left: 0;
		right: 0;
		top: -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: #fff;
	font-weight: 400;
	padding: 9px 25px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	transition: none;
}

@media (min-width: 992px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		padding-left: 40px;
	}
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
		content: "";
		position: absolute;
		background: url(../img/subnav-pfeil.png);
		width: 18px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		left: 11px;
	}
}

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus)::before {
	background-image: url(../img/subnav-pfeil-hover.png);
}

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

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

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

@media (min-width: 992px) {
	body.index #slider {
		max-height: clamp(400px, 62vw, 600px);
	}

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

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

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

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

.slider-mask {
	display: none;
}

@media (min-width: 992px) {
	.slider-mask {
		display: block;
		background: url(../img/logo-mit-welle.png);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}

#bannerTab {
	padding: 30px 0;
}

#bannerTab .tab {
	background: url(../img/tab-welle.png), rgba(255, 255, 255, 0.9);
	background-repeat: no-repeat;
	background-position: bottom center;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	padding: 20px;
	padding-bottom: 50px;
	max-width: 374px;
	margin: 0 auto;
}

#bannerTab .tabHeadline {
	font-size: 1.5625rem;
	font-weight: 400;
	color: #000;
}

@media (min-width: 992px) {
	#bannerTab {
		width: 100%;
		position: absolute;
		bottom: 70px;
		z-index: 20;
		pointer-events: none;
		padding: 0;
	}

	#bannerTab .tab {
		pointer-events: all;
	}
}

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

main {
	text-align: left;
}

@media (max-width: 991px) {
	#content {
		padding-top: clamp(30px, 4vw, 60px);
		padding-bottom: clamp(60px, 8vw, 120px);
	}
}

@media (min-width: 992px) {
 main {
		padding-top: clamp(30px, 4vw, 60px);
		padding-bottom: clamp(60px, 8vw, 120px);
	}
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2rem, 4vw, 2.25rem);
}

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

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

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

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

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

/* ----------------------------------------------- #nw12, #ev12 -------------------------------------------- */

#tabsLeft {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px 0;
}

:is(#nw12, #ev12) {
	color: #000;
	font-size: 1rem;
	position: relative;
	padding: 0;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
   max-width: 370px;
   margin: 0 auto;
   hyphens: auto;
}

:is(#nw12, #ev12) .tabHeadline,
#asideButton a {
	text-align: center;
	color: #ffffff;
	font-size: 1.5625rem;
	font-weight: 400;
	margin-bottom: 0;
	padding: 10px 25px;
	background: #267d30;
	width: 100%;
	display: inline-block;
	text-decoration: none;
	transition: none;
   hyphens: auto;
}

#asideButton a {
   max-width: 370px;
   margin: 0 auto;
}

#asideButton a:is(:hover, :focus) {
	background: #236e2d;
}

:is(#nw12, #ev12) .tabContent {
	padding: 30px 20px 45px 20px;
}

:is(#nw12, #ev12) .tab_link_title a {
	font-weight: 700;
	color: #000;
}

:is(#nw12, #ev12) .tab_link_mandat a {
	color: #000;
}

:is(#nw12, #ev12) .tab_date,
:is(#nw12, #ev12) .tab_link_date {
	font-style: normal;
}

:is(#nw12, #ev12) .tab_link_mehr a {
	color: #267d30;
   text-decoration: none;
}
/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: #206527;
}

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

.innerfooter a:hover,
.innerfooter a:focus {
	color: #e4da82;
}

.innerfooter li + li::before {
	content: "|";
	margin: 0 12px;
	color: #fff;
}

@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 {
	gap: 18px;
	text-align: right;
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
}

#vernetzt b {
	color: #e4da82;
}

#vernetzt span span {
	display: block;
}
