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

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

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #191919;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.25rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #735a1d;
}

#content a,
.footerTab a,
a:is(:hover, :focus) {
	color: #735a1d;
	text-decoration: underline;
}

b,
strong {
	font-weight: 500;
}

:root {
	--sidePaddingMin: 40px;
	--sidePaddingMax: calc((1920px - var(--gridSize)) / 2);
	--gridSize: 1200px;
	--sidePaddingMarginOuter: 20px;
}

@media (min-width: 992px) {
	:root {
		--sidePadding: calc((100vw - 992px) / 2);
	}
}
@media (min-width: 1200px) {
	:root {
		--sidePadding: calc((100vw - var(--gridSize)) / 2);
	}
}
@media (min-width: 1920px) {
	:root {
		--sidePadding: var(--sidePaddingMax);
	}
}

#overflow {
   overflow: hidden;
}

/* 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: #515e3e;
	font-size: clamp(1.125rem, 3vw, 1.5625rem);
	align-content: center;
   font-weight: 500;
   text-transform: uppercase;
	line-height: 1.1;
}

.logoText :is(b, strong) {
   text-transform: none;
	display: block;
   font-weight: 400;
   color: #191919;
	font-size: clamp(1.25rem, 3vw, 2.25rem);
	font-family: "Caveat", cursive;
}

.logoText br {
	display: none;
}

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

@media (max-width: 991px) {
   .logoText {
      margin-block: 10px;
      
   }
}

.logo img {
	display: block;
	max-width: 30vw;
}

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


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

nav.horizontally {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

/* burgermenu for tablet */

@media (max-width: 991px) {
   #menu {
      min-height: 80px ;
      align-content: center;
   }
	#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: #515e3e;
		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: #fff;
		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;
	}

	.is-sticky nav.horizontally {
		left: auto !important;
	}

	#menu > .row {
		max-width: 1440px;
		width: 100%;
	}

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #515e3e;
	font-weight: 500;
	text-align: left;
	padding: 10px 15px 15px 15px;
	position: relative;
	font-size: 1.1875rem;
	line-height: 1.2;
	text-decoration: none;
   hyphens: auto;
}

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

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

/* 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: #191919;
	background-color: #faf3ea;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: rgba(244, 244, 244, 0.9);
	box-shadow: 0px 5px 15.52px 0.48px rgba(19, 23, 14, 0.21);
}

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

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

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

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

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

	nav.horizontally [class*="secondlevel"] > ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 30px;
		top: 0;
		bottom: 0;
		left: -30px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #505d3e;
	font-weight: 400;
	text-align: center;
	padding: 8px 25px;
	font-size: 1.125rem;
	line-height: 1.2;
   hyphens: auto;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		text-align: left;
	}

	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) {
	color: #191919;
}

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

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

#slider {
	padding: 0;
	position: relative;
	max-height: clamp(300px, 46vw, 500px);
}

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

	.slider-wrapper {
		margin-right: calc(var(--sidePadding) * -1 - 15px);
	}

	body:not(.index) .slider-wrapper {
		margin-left: calc(var(--sidePadding) * -1 - 15px);
	}

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

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

#headerpic {
	position: relative;
	background: #515e3e;
}

#headerpic .slick-dots * {
	color: #fff !important;
}

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

.slider-mask {
	display: none;
}

@media (min-width: 992px) {
	.index .slider-mask {
		display: block;
		background: linear-gradient(to right, #515e3e, rgba(81, 94, 62, 0.5) 30%, transparent 100%);
	}
}

#bannerTab {
	padding: 50px 0;
}

#bannerTab :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(2rem, 4vw, 3.4375rem);
}

.buttonStyle a {
	background: #515e3e;
	border: 3px solid #fff;
	box-shadow: 0px 3px 15.52px 0.48px rgba(19, 23, 14, 0.8);
	border-radius: 30px;
	color: #fff !important;
	text-transform: uppercase;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	font-weight: 700;
	display: inline-block;
	padding: 8px 30px;
}

.buttonStyle a:is(:hover, :focus) {
	background: rgba(248, 249, 245, 0.85);
	color: #505d3e !important;
	text-decoration: none;
}

#bannerTab * {
	color: #faf3ea;
}

.buttonStyle a {
	background: transparent;
}
/* ------------------------------------------------ content ----------------------------------------------- */

#content {
	text-align: left;
	padding-bottom: 30px;
	padding-top: 30px;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

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

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #515e3e;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Caveat", cursive;
}

h1,
.h1,
.legacy_h1,
.like-h1 :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(2.5rem, 5.5vw, 3.875rem);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(2.2rem, 5vw, 3.4375rem);
}

h3,
.h3,
.legacy_h3 {
	font-size: clamp(2.1rem, 4.5vw, 3.125rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: clamp(2rem, 4vw, 2.5rem);
}

h5,
.h5,
.legacy_h5 {
	font-size: clamp(1.8rem, 3.5vw, 1.875rem);
}

h6,
.h6,
.legacy_h6 {
	font-size: clamp(1.5rem, 3vw, 1.5625rem);
}

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab26 {
	margin: auto;
	width: 100%;
	max-width: 1200px;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

#tab26 .slick-dots > li.slick-active {
	background: #515e3e;
	transition: background 200ms linear;
}

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

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

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

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

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

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

/* #region ------------------------------------- feedback --------------------------------------- */

.feedback-tabs {
	row-gap: 30px;
}

#feedback {
	position: relative;
	padding-top: 50px;
   padding-bottom: 35px;
	background: #fff center / cover no-repeat;
}

#feedback .like-h1 strong {
   font-size: 1.5625rem;
   display: inline-block;
}

#feedback > * {
	position: relative;
	z-index: 2;
}

#feedback,
#feedback :is(h1, h2, h3, h4, h5, h6, a) {
	color: #515e3e;
}
#feedback :is(h1, h2, h3, h4, h5, h6) {
	margin-top: -15px;
}

#feedback .tab {
	font-size: 1rem;
	padding: 25px clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px);
	background: #515e3e;
	height: 100%;
	min-height: 100%;
	color: #fff;
}

#feedback .tab :is(h1, h2, h3, h4, h5, h6, a) {
	color: #fff;
}

#feedback .tab hr {
	margin: 22px 0 clamp(22px, 3vw, 40px) 0;
	background: #ffffff;
	opacity: 0.2;
   border: none;
   height: 1px;
}

/* #endregion ---------------------------------- feedback --------------------------------------- */

/* #region --------------------------------------- deco ----------------------------------------- */

:is(#feedback) > .row::after,
:is(#feedback) > .row::before {
	content: "";
	display: block;
	position: absolute;
}

:is(#feedback) > .row::after {
	bottom: 160px;
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
}

#feedback > .row::after {
	top: 0;
	right: -80px;
}

:is(#feedback) > .row::before {
	bottom: 100px;
	width: 40px;
	height: 40px;
	opacity: 0.6;
}


#feedback > .row::before {
	right: -100px;
	background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16.55 40q-1.15 0-1.95-.825t-.8-1.925v-17.9q0-.55.225-1.075.225-.525.575-.925L24.65 7.1q.4-.4.95-.525.55-.125 1 .125.4.2.625.725.225.525.075 1.175l-1.9 9.55h15.85q1.05 0 1.9.85.85.85.85 1.95v2.5q0 .4-.075.875t-.225.825l-5.4 12.6q-.4.95-1.375 1.6-.975.65-1.975.65ZM8.7 40q-1.1 0-1.9-.8-.8-.8-.8-1.9V20.85q0-1.05.8-1.875t1.9-.825h.85q1.1 0 1.9.825.8.825.8 1.875v16.5q0 1.1-.8 1.875-.8.775-1.9.775Z' fill='%23fff'/%3E%3C/svg%3E") center no-repeat;
}

/* #endregion ------------------------------------ deco ----------------------------------------- */

/* ----------------------------------------------- Breaker ----------------------------------------------- */

#breaker {
	color: #fff;
	font-family: "Caveat", cursive;
	text-shadow: 0px 3px 15.52px rgba(19, 23, 14, 0.8);
	font-size: clamp(1.75rem, 5vw, 3.4375rem);
	padding: 50px 0;
	background: rgba(81, 94, 62, 0.82);
	background-size: cover;
	background-position: center;
}

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

/* ----------------------------------------------- @1f footer ----------------------------------------------- */

#f1 {
	color: #191919;
	font-size: 1.125rem;
	background-color: #f5eae0;
	background-position: center;
	background-size: cover;
}

#footer {
	background: rgba(245, 234, 224, 0.85);
}

#footer > .row {
	row-gap: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
}

#f1 .footerTab {
	font-size: 1.125rem;
}

#f1 .tabHeadline {
	font-size: clamp(2rem, 4vw, 2.8125rem);
}

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

#innerfooter ul {
	padding: 0;
}

#innerfooter a {
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 1rem;
	font-weight: 400;
	color: #191919;
}

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

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

#vernetzt {
	gap: 12px;
	font-size: 1rem;
	color: #191919;
	line-height: 1.3;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

#vernetzt span span {
	display: block;
}

#vernetzt strong {
	font-weight: 500;
	color: #735a1d;
}
