@import url("https://fonts.verwaltungsportal.de/css/?family=Work+Sans:400,400i,600,600i");

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

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

a {
	color: #815e0e;
}

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

.linkUnderline a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: text-decoration 300ms;
}

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

b,
strong {
	font-weight: 600;
}

#overflow {
   overflow: hidden;
}

/* ----------------------------------------------- @1tp topbar ----------------------------------------------- */

.contact >.row>div {
   flex-wrap: wrap;
   gap: 5px 30px;
}

.contact {
	background-color: #eab844;
	font-size: 0.875rem;
	font-weight: 400;
   padding: 10px 0;
}

.contact a {
	color: #191919;
}

@media (max-width: 991px) {
	.contact {
		padding: 10px;
	}

	.contact > * + * {
		margin-top: 7px;
	}
}

.contactMail,
.contactPhone {
	padding-left: 20px;
	background-position: center left;
	background-repeat: no-repeat;
}

.contactMail {
	background-image: url("../img/icon-mail.png");
}

.contactPhone {
	background-image: url("../img/icon-telefon.png");
	/*Replace url with ("../img/YOUR-IMAGE.png")*/
}

/* ----------------------------------------------- @tp2 topbar ----------------------------------------------- */

.optionsbar h2 {
	display: inline-block;
	font-size: 0.875rem;
	margin: 0;
   width: fit-content;
}

.optionsbar {
	margin-left: auto;
   flex-wrap: wrap;
   gap: 30px 0;
}

/* -------------------------------------------- contrast_style -------------------------------------------- */

#contrast_style {
	padding-left: 25px;
	padding-right: 17px;
}

#contrast_style button {
	display: inline-block;
	color: #000000;
	position: relative;
	z-index: 1;
	padding: 0;
	font-size: 0;
	width: 1.3125rem;
	height: 1.3125rem;
	font-weight: 400;
	border-radius: 50%;
	text-align: center;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.6);
	transition: background 300ms linear;
	flex-shrink: 0;
}

#contrast_style * + * {
	margin-left: 10px;
}

#contrast_style button:hover,
#contrast_style button:focus {
	background-color: rgba(255, 255, 255, 0.8);
}

/* -------------------------------------------- styler -------------------------------------------- */

@media (min-width: 992px) {
	#style {
		padding-left: 15px;
		padding-right: 15px;
		border-left: 1px solid rgba(0, 0, 0, 0.5);
	}

	#style button {
		font-size: 1.25rem;
		background: transparent;
		padding: 0;
		border: none;
		color: #191919;
		display: inline-block;
		font-weight: 400;
		text-align: center;
		position: relative;
		width: 1.5625rem;
		height: 1.25rem;
		line-height: 1;
		margin: 0 6px;
		-webkit-transition: color 150ms linear;
		-moz-transition: color 150ms linear;
		-ms-transition: color 150ms linear;
		-o-transition: color 150ms linear;
		transition: color 150ms linear;
	}

	#style button + button::before {
		content: "";
		position: absolute;
		pointer-events: none;
		display: inline-block;
		left: -6px;
		top: 0;
		bottom: 0;
		width: 2px;
		height: 100%;
		background: #191919;
	}

	#style button:hover {
		color: #191919;
		text-decoration: underline;
	}

	#style button:focus-visible {
		outline: 2px auto;
	}
}

/* -------------------------------------------- @nav1 Navigation ------------------------------------------- */

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

#logoBox {
	padding: 5px 0;
}

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (min-width: 992px) {
	#logo img {
		max-width: 340px;
		width: 100%;
	}
}

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

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

/* -------------------------------------------- search -------------------------------------------- */

#searchContainer {
	padding-left: 15px;
	font-size: 0;
	line-height: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

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

#search {
	color: #ffffff;
	width: 25px;
	height: 25px;
	background: url("../img/icon-suche.png") center no-repeat;
	transition: transform 300ms linear;
}

#search:hover,
#search:focus {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	#menu {
		position: static !important;
		background-color: #eab844;
		-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);
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		position: relative;
		z-index: 1002;
		display: block;
		width: 46px;
		height: 40px;
		border-radius: 2px;
		cursor: pointer;
		background-color: #eab844;
		padding: 3px;
	}

	#burgerButton:before,
	#burgerButton:after,
	#burgerButtonInner {
		background-color: #191919;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 2px;
		-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;
	}

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

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

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

	#burgerButtonInner {
		top: 10px;
	}

	#burgerButton:before {
		top: 18px;
	}

	#burgerButton:after {
		top: 26px;
	}

	#burgerButton:before,
	#burgerButton:after {
		content: "";
		display: block;
	}

	.navbar-nav {
		margin: 20px 0;
	}

	.navbar-collapse {
		top: 0;
		background: #eab844;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		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.collapse.in {
		left: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.navbar-header {
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		background-color: #eab844;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
		-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	.navbar-collapse.in:after {
		content: "";
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		display: block;
		width: 90px;
		background-color: rgba(0, 0, 0, 0.5);
	}
}

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

	.navbar-collapse.collapse.in:after {
		width: 40%;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	#searchContainer {
		border-left: 1px solid rgba(25, 25, 25, 0.5);
		margin: 10px 0;
	}

	#menu {
		background-color: #eab844;
	}

   .is-sticky #menu {
      left: auto !important;
   }

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

	nav.horizontally .navbar-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		flex-wrap: wrap;
		flex-grow: 1;
	}

	nav.horizontally .navbar-collapse {
		display: flex;
	}

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

	nav.horizontally .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
	}

	nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav > li,
	nav.horizontally .navbar-nav > li > .dropdown-menu > li {
		position: relative;
	}

	.navbar-default .navbar-nav li[class*="toplevel"] > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul {
		display: block !important;
		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;
	}

	.navbar-default .open > .dropdown-menu,
	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
	}

	.navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
		pointer-events: auto !important;
		opacity: 1 !important;
	}

	.navbar-default .nav .open > .dropdown-menu {
		pointer-events: none !important;
		opacity: 0 !important;
	}

	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > u {
		z-index: 1003;
	}
}

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

.navbar-default .navbar-nav > li > a {
	color: #191919;
	font-weight: 600;
	text-align: left;
	padding: 15px 35px 15px 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li {
		border-bottom: 1px solid rgba(68, 68, 68, 0.2);
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		padding: 34px 5px 36px 5px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 100%;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		display: block;
	}
}

.navbar-default .navbar-nav > li > a::after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	top: 0;
	height: 10px;
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #f1cade;
	-webkit-transition: width 300ms linear;
	-moz-transition: width 300ms linear;
	-ms-transition: width 300ms linear;
	-o-transition: width 300ms linear;
	transition: width 300ms linear;
	border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px;
}

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

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

.navbar-nav > li:focus-within > a {
	color: #191919;
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
	width: 100%;
}

.navbar-nav > li:focus-within > a::after {
	width: 100%;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li > .dropdown-menu {
		padding: 10px;
	}
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		margin: 10px;
	}
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu {
		left: 50%;
		-moz-transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		margin-top: 10px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu::after {
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%) scale(0);
		top: 0;
		width: 0;
		height: 0;
		width: 24px;
		height: 12px;
		border: 1px solid #191919;
		border-top: none;
		border-bottom-right-radius: 100px;
		border-bottom-left-radius: 100px;
		transition: transform 150ms linear;
		transform-origin: top center;
	}

	.navbar-default .navbar-nav > li:hover > .dropdown-menu::after {
		transform: translateX(-50%) scale(1);
	}

	.navbar-default .navbar-nav > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		height: 10px;
		left: 0;
		right: 0;
		top: -10px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		margin-top: -30px;
		margin-left: 10px;
	}

	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

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

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	color: #191919;
	font-weight: 400;
	text-align: left;
	padding: 8px 25px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
		text-align: center;
		padding: 13px 25px;
	}
}

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

.navbar-nav > li > .dropdown-menu > li:hover > a,
.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
	background: #d9edc4;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
	background: #d9edc4;
}

/* ----------------------------------------------- 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, 710px);
		border-bottom-left-radius: 80px;
		border-bottom-right-radius: 80px;
	}

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

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

#headerpic {
	position: relative;
}

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

.slider-mask {
	display: none;
}

#bannerTab {
	padding: 30px 0;
}

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

#bannerTab .template-page {
	padding: 10px;
	border-radius: 20px;
	border: 8px solid #c1e8fa;
	background: #fff;
	pointer-events: all;
	max-width: 600px;
	margin: 0 auto;
   box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

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

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

main {
	text-align: left;
	padding-top: clamp(30px, 4vw, 60px);
	padding-bottom: clamp(30px, 4vw, 60px);
   position: relative;
}

#content>.row::after {
   content: '';
   position: absolute;
   top: 0;
   background: url(../img/deko-figur-winken.png);
   width: 119px;
   height: 172px;
   left: -77px;
   transform: translateX(-100%);
}

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

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

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

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

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

/* #region --------------------------------------- news ----------------------------------------- */

#galerie {
	padding-top: clamp(40px, 6vw, 80px);
}

#galerie>.row::after {
   content: '';
   position: absolute;
   bottom: clamp(-60px, -4vw, -30px);
   background: url(../img/deko-figur-schnappschuesse.png);
   width: 135px;
   height: 205px;
   right: -160px;
   transform: translateX(100%);
}

#galerie :is(h1, h2, h3, h4, h5, h6) {
	font-size: clamp(1.875rem, 3.5vw, 2.8125rem);
}

#galerie :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	font-style: normal;
	font-weight: normal;
}

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

#galerie > .row::before {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
	#galerie > .row::before {
		top: 145px;
		right: 200px;
		bottom: 20px;
		left: 15px;
	}
}

#galerie :is(.tab, .button-design) {
	margin-left: clamp(20px, 2vw, 30px);
	background: #ffffff;
}

@media (max-width: 767px) {
	#galerie :is(.tab, .button-design) {
		margin-right: clamp(20px, 2vw, 30px);
	}
}

#galerie .tab {
	padding: 0 clamp(20px, 2vw, 30px) clamp(20px, 2vw, 30px) clamp(20px, 2vw, 30px);
}

@media (min-width: 768px) {
	#galerie .tab {
		padding-top: 95px;
	}
}

#galerie .button-design {
	display: inline-block;
	padding: 0 clamp(20px, 4vw, 30px);
}

#galerie > .row::before {
	border-radius: 50px;
}

#galerie #schnappschuss .banner {
	border: 15px solid #c1e8fa;
	border-radius: 30px;
	line-height: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	background: #c1e8fa;
   text-align: center;
}

#galerie #schnappschuss img {
	border-radius: 20px;
	background: #c1e8fa;
}

@media (max-width: 991px) {
   #galerie #schnappschuss {
      margin-top: 40px;
   }
}

/* #endregion ------------------------------------ news ----------------------------------------- */

/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image) {
	display: inline-block;
	line-height: 1.2;
	color: #191919;
	border-radius: 40px;
	font-size: 1.125rem;
	font-weight: 600;
	background: #f1cade;
	padding: 12px 48px 10px 20px;
	position: relative;
	text-decoration: none !important;
	transition: transform 300ms;
}

.button-design a:not(.has-image)::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	background: url(../img/icon-pfeil.png);
	width: 10px;
	height: 15px;
}

.button-design a:not(.has-image):is(:hover, :focus) {
	transform: translateX(10px);
}

/* #endregion ------------------------------------ buttons -------------------------------------- */
/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#breaker {
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
}

#breaker .tab {
	padding: 30px 50px;
	border-radius: 20px;
	border: 8px solid #c1e8fa;
	background: #fff;
	pointer-events: all;
	max-width: 600px;
	margin: 0 auto;
   font-size: 1rem;
   margin: 30px 0;
}

@media (min-width: 992px) {
   #breaker .tab {
      padding-right: 140px;
      background-image: url(../img/deko-figur-kontakt.png);
      background-position: bottom 2px right 5px;
      background-repeat: no-repeat;
   }
}

#breaker .tabHeadline {
   font-size: 1.875rem;
}

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

#f5 .row {
   gap: 30px 0;
}

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

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #191919;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
	color: #191919;
	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;
	}
}

/* --------------------------------------------- counter -------------------------------------------- */

#counter {
   border: 1px solid rgba(0, 0, 0, 0.5);
   display: flex;
   justify-content: space-between;
   padding: 5px 20px;
   border-radius: 20px;
   margin: 0 15px;
   font-size: 1rem;
}

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

#vernetzt {
	gap: 12px;
	text-align: right;
	font-size: .8125rem;
	color: #191919;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt span span {
	display: block;
}
