
/* CSS Document */

body {
  font-size: 18px;
  font-family: var(--font-fliesstext, "futura-pt", sans-serif); /*Für Fließtext immer die Futura PT nehmen*/
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  background-color: var(--bg-body)
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ueberschriften);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  color: var(--color-ueberschriften);
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-ueberschriften);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  color: var(--color-ueberschriften);
}

.subline {
  color: var(--color-subline);
}

a {
  color: var(--color-links);
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

a:hover {
  color: var(--color-links-hover);
}

.bg-kontaktformular a {
	 font-weight: bold;
}

footer a {
	color: var(--color-footer-a);
	font-weight: bold;
}
footer a:hover {
	color:var(--color-footer-a-hover);
}
.footerbox01 {
	color: var(--fb01-color);
}

.footerbox01 a {
	color:var(--fb01-color-a);
}

.nowrap {
  white-space: nowrap;
}

img {
  filter: var(--img-filter);
}

img[src$=".svg"], img[src$=".icon.svg"] {
  filter: none;
}

/* -------------------- Hintergrundbilder BEGINN -------------------- */
.bg-content-front {
  background-image: url("../images/teaser/content_front_image.svg");
  background-size: cover;
}
.bg-content {
  background: var(--background-content, #fff);
  background-size: cover;
}
.bg-review {
  background-image: var(--bg-image-review-slider);
  background-color: var(--bg-color-review-slider);
  background-size: 50%;
  background-position: left;
	background-repeat: no-repeat;
}
.bg-kontaktformular {
  background:var(--background-kontaktformular, #fff);
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-footer {
  background-image: var(--bg-image-footer);
  background-color: var(--bg-color-footer);
  background-size: 30%;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding-bottom: 150px;
}
/* -------------------- Hintergrundbilder ENDE -------------------- */

/* -------------------- Control Center Barrierefreiheit ANFANG -------------------- */
.button-control-center {
  position: fixed;
  bottom: 1.2em;
  left: 1.2em;
  cursor: pointer;
  z-index: 1050;
}
@media (max-width: 991px) {
	.button-control-center {
		bottom: 0.8em;
		left: 0.8em;
	}
}
.button-control-center svg {
	border: 3px solid #fff;
	border-radius: 2em;
	width: 1.5em;
	height: 1.5em;
	background: #fff;
	color: var(--color-akzent);
	outline: 3px solid #000;
	margin: 3px;
}
.access-panel {
	position: fixed;
	bottom: 5.6em;
	left: 1.2em;
	width: 325px;
	background: var(--bg-access-panel);
	border-radius: 0.2em;
	box-shadow: var(--access-panel-bs);
	z-index: 9980;
}
.access-panel-headline {
	background: #3b3b3b;
	border-radius: 0.2em 0.2em 0em 0em;
}
.panel-button {
	background: var(--bg-panel-button);
	border-radius: 0.2em;
	/*cursor: pointer;*/
	padding: 0.8em 0em;
	width: 100%;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.panel-button:hover {
	background: #c7c7c7;
}
.access-panel-close-button {
	background: #fff;
	color: #0c1520;
	border-radius: 0.2em;
	padding: 0.2em 0.5em;
}
.access-panel-close-button:hover {
	background: #E4E4E4;
	color: #0c1520;
}
.access-panel-auswahl span {
	font-size: 0.8em;
	color: var(--color-text);
}
.access-panel-auswahl svg {
	width: 1.4em;
	height: 1.4em;
	color: var(--color-text);
}
.icon-active {
  display: none;
}

/* Start Style Bedienhilfen */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9990;
  backdrop-filter: none;
}
body.font-large {
	font-size: 1.3em !important;
}
body.line-spacing {
	line-height: 1.8 !important;
}
body.underline-links a {
	text-decoration: underline !important;
}
/* Standard-Cursor für alle Elemente */
body.cursor-big * {
  cursor: var(--cursor-color) 10 0, auto;
}
body.cursor-big *[style*="position:fixed"],
body.cursor-big *[style*="position: fixed"],
body.cursor-big .fixed {
  cursor: var(--cursor-color) 10 0, auto;
}
/* Cursor für klickbare Elemente */
body.cursor-big a,
body.cursor-big a *,

body.cursor-big button,
body.cursor-big button *,

body.cursor-big [role="button"],
body.cursor-big [role="button"] *,

body.cursor-big label,
body.cursor-big label * {
  cursor: var(--cursor-pointer) 20 0, pointer !important;
}
body.no-images img {
	opacity: 0 !important;
}
body.no-images * {
	background-image: none !important;
}
@media (max-width: 991px) {
	body.no-images img {
		display: none;
	}
}
#readline {
  position: fixed;
  top: 0;
  height: 2px;
  width: 100vw;
  background: var(--color-readline);
  z-index: 999999;
  pointer-events: none;
  transition: top 0.1s linear;
  display: none;
}
body.readline #readline {
	display: block;
}
/* Tooltip für Icon */
.accessicon-tooltip {
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	background-color: var(--access-icon-tooltip-color);
	color: var(--access-icon-tooltip-text);
	text-align: center;
	border-radius: 5px;
	padding: 0.6em 1.2em;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2000;
	margin-left: 1em;
	font-size: 0.88em;
	width: 180px;
}
.accessicon-tooltip::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 100%;
	border-width: 8px;
	border-style: solid;
	border-color: transparent var(--access-icon-tooltip-color) transparent transparent;
	transform: translateY(-50%);
}
.button-control-center:hover .accessicon-tooltip {
	visibility: visible;
	opacity: 1;
}
/* Ende Style Bedienhilfen */
/* --------------------- Control Center Barrierefreiheit ENDE --------------------- */

/* -------------------- Cookie Modal Styling ANFANG -------------------- */
.cookieModalBrandIcon {
	width: 60px;
	height: 60px;
	background: #ffffff;
	border-radius: 3em;
	padding: 0.6em;
	display: flex;
}
@media (max-width: 767px) {
	#cookieModal .modal-body {
		font-size: 0.72em;
	}
}
#cookieModal .modal-content {
	background-color: var(--bg-modal-content);
	color: var(--modal-content-text-color);
	border-radius: 0.5em;
}
#cookieModal .modal-header {
	background-color: var(--modal-header-bg);
	color: var(--modal-header-text-color);
}
#cookieModal .modal-footer {
	background-color: var(--modal-footer-bg);
}
#cookieModal a {
	color: var(--color-akzent);
	text-decoration: underline;
}
#cookieModal a:hover {
	opacity: 0.9;
}
/* Blur zum Modal Backdrop hinzufügen */
body:has(#cookieModal.show) .modal-backdrop {
	opacity: 1 !important;
	background-color: rgba(0,0,0,.35) !important;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
#a11yOpenBtnInModal {
	height: fit-content;
	width: fit-content;
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
	font-size: 1.5em;
	color: #fff;
}
.consent-placeholder {
	background-color: var(--placeholder-background);
	padding: 1em;
	border: 1px solid #cfcfcf;
	border-radius: 0.2em;
}
.btn-custom-reject {
	background-color: #cdcdcd;
}
.btn-custom-reject:hover, .btn-custom-reject:focus {
	background-color: #ADADAD;
}
.btn-custom-accept {
	background-color: var(--color-btn-custom-accept-normal);
	color: #fff;
}
.btn-custom-accept:hover, .btn-custom-accept:focus {
	background-color: var(--color-btn-custom-accept-hover);
	color: #fff;
}
.consent-icons {
	background-color: var(--bg-consent-icons);
	border-radius: 0.2em;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.24);
}
.consent-icons svg {
	font-size: 1.6em;
}
.consent-icons p {
	font-size: 0.75em;
	margin: 0;
}
.icontrenner {
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ccc;
}
/* -------------------- Cookie Modal Styling ENDE -------------------- */




/* -------------------- Navbar-Brand ANFANG -------------------- */
@media (max-width: 1500px) {
	.navbar {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	nav .navbar-brand {
		opacity: 1 !important;
	}
	
	nav .navbar-brand img {
		max-width: 200px;
		width: 200px;
	}
}

@media (min-width: 1500px) {
	.navbar {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	nav .navbar-brand img {
		position: absolute;
		max-width: 230px;
		width: 230px;
		top: 3px;
	}
	
	nav .navbar-brand {
		opacity: 1;
		padding: 0px;
		z-index: 9;
	}
}

@media (min-width: 1700px) {
	.navbar {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	nav .navbar-brand img {
		position: absolute;
		max-width: 300px;
		width: 190px;
		/*top: 24px;*/
	}
	
	nav .navbar-brand {
		opacity: 1;
		padding: 0px;
		z-index: 9;
	}
}



/* -------------------- Navbar-Brand ENDE -------------------- */

/* -------------------- Navigation Anfang -------------------- */
#mainNav.navbar {
background: var(--background-navi);
background-repeat: no-repeat;
background-size: cover;
box-shadow: 0px 10px 15px rgba(0,0,0,0.25);
z-index: 99;
	border-bottom: 5px solid var(--logo-color-2);
}
#mainNav.navbar-shrink {
padding: 0;
}
#mainNav .nav-link {
font-family: var(--font-navigation);
transition: none;
text-transform: uppercase;
font-size: 1.3rem;
font-weight: bold;
padding: 1.3rem;
color: var(--color-navigation);
}
@media (max-width: 1470px){
#mainNav .nav-link {
transition: none;
text-transform: uppercase;
font-size: 1rem;
font-weight: normal;
padding: 1.3rem;
color: var(--color-navigation);
}}
#mainNav .nav-link:hover,
#mainNav .nav-link:focus,
#mainNav .nav-link:hover .svg,
#mainNav .nav-link:focus .svg,
#mainNav .nav-item.active .nav-link {
background-color: var(--color-akzent);
transform: scale(1);
border-radius: 3px;
padding: 1em;
color: var(--color-navigation-hover);
}
.sticky-top {
position: static;
}
@media (min-width: 992px) {
.sticky-top {
position: sticky;
top: 0;
width: 100%;
}
}

/*Effekt*/
.from-center:before {
top: 0;
left: 50%;
height: 100%;
width: 0;
border: 1px solid var(--color-akzent);
border-left: 0;
border-right: 0;
}
.from-center:after {
bottom: 0;
left: 0;
height: 0;
width: 100%;
background: var(--color-akzent);
}
.from-center:hover:before {
left: 0;
width: 100%;
}
.from-center:hover:after {
top: 0;
height: 100%;
}

/* -------------------- Navbar Toggler BEGINN -------------------- */
.navbar-toggler {
  border: 1px solid transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  position: relative;
  background-image: none !important;
  border: 1px solid transparent !important;
}

.line {
	position: absolute;
	left: 0px;
	height: 3px;
	width: 100%;
	background-color: var(--color-navigation);
	border-radius: 8px;
	transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.45s;
}

.top {
	top: 18%;
}

.middle {
	top: 48%;
}

.bottom {
	top: 78%;
}

.navbar-toggler-icon.close .top {
	transform: rotate(45deg);
top: 48%;
}

.navbar-toggler-icon.close .middle, .navbar-toggler-icon.close .bottom {
	transform: rotate(-45deg);
	top: 48%;
}
/* -------------------- Navbar Toggler ENDE -------------------- */

/* -------------------- Dropdown Animation Fade BEGINN -------------------- */
@media (min-width: 992px) {
.dropdown-menu-end {
position: absolute;
margin-top: 0rem;
left: auto;
right: 0;
}
.dropdown-menu-start {
position: absolute;
margin-top: 0rem;
left: auto;
right: 0;
} 
}



@-webkit-keyframes fadeIn {
0% {
    opacity: 0;
    transform: translate(0, 50px);
}
100% {
    opacity: 1;
    transform: translate(0, 0);
}
}
@keyframes fadeIn {
0% {
    opacity: 0;
    transform: translate(0, 50px);
}
100% {
    opacity: 1;
    transform: translate(0, 0);
}
}
/* -------------------- Dropdown Animation Fade ENDE -------------------- */

/* -------------------- Dropdown BEGINN -------------------- */
.dropdown-menu {
	border: none;
	border-radius: 0px;
	background-image: none;
	box-shadow: inset 1px 1px rgb(255 255 255 / 20%), inset -1px -1px rgb(255 255 255 / 10%), 1px 3px 24px -1px rgb(0 0 0 / 15%);
	background-color: var(--dropdown-menu);
	min-width: 45rem;
	padding: 0;

}


@media (max-width: 991px) {
	.dropdown-menu {
		min-width:16em;
	}
}

.dropdown-menu a {
	color: var(--color-dropdown-navigation);
	font-size: 1.2rem;
	position: relative;
	padding: 1rem 2rem;
	font-weight: normal;
	text-align: right;
}

.dropdown-item {
	font-family: var(--font-navigation);
	white-space:normal;
}



.dropdown-menu > li:not(:last-child) {
	border-bottom: 1px dotted rgba(255, 255, 255, 0.50);
}

.dropdown-menu a:hover, .dropdown-menu a:focus  {
	color: var(--color-navigation-hover);
	background-color: var(--color-akzent) !important;
}

/*Dropdown Hover muss im Media min 992px stehen, damit sich die Navigation auf mobil durch klicken wieder schließen lässt!*/
@media (min-width: 200px) {
	li.dropdown:hover .dropdown-menu, li.dropdown:focus .dropdown-menu {
		opacity: 1;
	}
	
	li.dropdown:hover .dropdown-menu:not(.megasubmenu), li.dropdown:focus .dropdown-menu:not(.megasubmenu) {
		display: block;
		-webkit-animation: fadeIn 0.5s;
		animation: fadeIn 0.5s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
}

#mainNav.fixed-top {
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

.dropdown-menu li a svg {
	transform: scale(1);
}

.dropdown-menu li:hover a svg {
	transform: scale(1.3);
	animation: scalesvg 1s infinite;
}

.dropdown-menu li a.dropdown-item svg {
	position: relative;
    top: 2px;
}



@keyframes scalesvg {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	} 
}


/* -------------------- Dropdown ENDE -------------------- */

/* -------------------- Megamenu BEGINN -------------------- */
.megasubmenu > a {
color: var(--color-05);
font-size: 1.2rem;
position: relative;
padding: 1rem 2rem;
font-weight: normal;
}
@media all and (min-width: 992px) {
.dropdown-menu .dropdown-toggle::after {
border-top: .3em solid transparent;
border-right: 0;
border-bottom: .3em solid transparent;
border-left: .3em solid;
}
/*Wird benötigt wenn das dropdown-menu Fenster rechtsbündig ist*/
.dropdown-menu.dropdown-menu-end .dropdown-toggle::after {
position: absolute;
left: 15px;
top: 22px;
border-top: .3em solid transparent;
border-right: .3em solid;
border-bottom: .3em solid transparent;
border-left: 0;
}
.megasubmenu {
left: 100%;
top: 0;
min-height: 100%;
min-width: 13rem;
}
.megasubmenu-end {
right: 100%;
left: auto;
text-align: right !important;
}
.dropdown-menu > li:hover .megasubmenu {
display: block;
-webkit-animation: fadeIn 0.5s;
animation: fadeIn 0.5s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.megasubmenu a:not(:last-child) {
border-bottom: 1px dotted rgba(255, 255, 255, 0.50);
}
}	
/* -------------------- Megamenu ENDE -------------------- */

/* -------------------- Theme Switch ANFANG -------------------- */
.checkbox {
opacity: 0;
position: absolute;
}
#colorMode.switch {
background: #212529;
width: 70px;
height: 40px;
border: solid 2px var(--color-navigation, #000);
border-radius: 50px;
position: relative;
padding: 9px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
#language_switch.switch {
background: var(--background-navi, #fff);
width: 75px;
height: 40px;
border: solid 2px var(--color-navigation, #000);
border-radius: 50px;
position: relative;
padding: 7px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.fa-moon {color: #f1c40f;}
.fa-sun {color: #f39c12;}

.switch .ball {
background: rgba(255,255,255,0.8);
width: 30px;
height: 30px;
position: absolute;
left: 2px;
top: 3px;
border-radius: 50%;
transition: transform 0.2s linear;
}
#language_switch.switch .ball {
background: rgba(255,255,255,0.8);
width: 33px;
height: 33px;
position: absolute;
left: 2px;
top: 1px;
border-radius: 50%;
transition: transform 0.2s linear;
}
.checkbox:checked + .switch .ball {
transform: translateX(30px);
}
.checkbox:checked + #language_switch.switch .ball {
transform: translateX(33px);
}
/* -------------------- Theme Switch ENDE -------------------- */

/* -------------------- Navigation ENDE -------------------- */

/* -------------------- Topinfo ANFANG -------------------- */
.top-info {
background: var(--background-top-info, #565756);
}
.tinfo {
display: flex;
place-content: center space-around;
align-items: flex-start;
flex-direction: column;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
.tinfo {
display: flex;
flex-direction: row;
place-content: center space-evenly;
align-items: center;
font-size: smaller;
}
}
@media (min-width: 1200px) {
.tinfo {
display: flex;
flex-direction: row;
place-content: center space-evenly;
align-items: center;
}
}
/* -------------------- Topinfo Main Anfang -------------------- */
.wrappertinfo a {
  color: var(--links-top-info);
}

.wrappertinfo a:hover {
  color: var(--links-top-info-hover);
  text-decoration: underline;
}
/* -------------------- Topinfo Mobil Anfang -------------------- */
.wrappertinfo {
display: inline-flex;
margin: 0.5em 0em 0.5em 0em;
}

.wrapinner {
display: inline-flex;
font-size: 0.8em;
text-align: start;
}

.wrapout {
display: inline-flex;
flex-direction: column;
justify-content: center;
margin-left: 0.5em;
}

.tinfoicon {
display: inline-flex;
align-items: center;
}

.icon {
font-size: 1.2em;
background-color: var(--color-akzent);
padding: 0.4em;
border: 2px solid #fff;
border-radius: 2em;
width: 1em;
color: #fff;
}
/* -------------------- Topinfo Mobil ENDE -------------------- */

/* -------------------- Topinfo Desktop AnFANG -------------------- */
@media (min-width: 992px) {
.wrappertinfo {
display: inline-flex;
margin: 0em;
}

.wrapinner {
display: inline-flex;
font-size: 1em;
}

.wrapout {
display: inline-flex;
flex-direction: column;
justify-content: center;
margin-left: 0.5em;
}

.tinfoicon {
display: inline-flex;
align-items: center;
}

.icon {
font-size: 1.8em;
background-color: var(--color-akzent);
padding: 0.4em;
border: 3px solid #fff;
border-radius: 2em;
width: 1em;
color: #fff;
}
}
/* -------------------- Topinfo Desktop ENDE -------------------- */
/* -------------------- Topinfo ENDE -------------------- */

/* -------------------- Scroll Top BEGINN -------------------- */
.scroll-top {
display: none !important;
color: #fff;
font-weight: bold;
background-color: rgba(43, 43, 43, 0.60);
right: 140px;
bottom: 4.5%;
position: fixed;
transition: all .35s;
box-shadow: 1px 0px 2px #333;
font-size: 0.7rem;
z-index: 9;
}
.scroll-top:hover {
color: #fff;
text-decoration: none;
background-color: var(--color-akzent); 
}
@media (min-width: 992px) {
.scroll-top {
display: block !important;
}
}
/* -------------------- Scroll Top ENDE -------------------- */

/* -------------------- Kontaktbox ANFANG -------------------- */
#kontaktbox {
	 background-color: var(--bg-color-kontaktbox); /* Grüne Hintergrundfarbe */
    background-image: var(--bg-image-kontaktbox); /* PNG-Hintergrundbild */
	border-top: 2px solid var(--border-top-kontaktbox);
	border-bottom: 2px solid var(--border-bottom-kontaktbox);
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: left;
}



@media (min-width: 992px) {
#kontaktbox {
  /*margin-top: -7vh;*/
}
}

#kontaktbox span {
  font-size: 1.2em;
	color: var(--color-kontaktbox-text);
}

#kontaktbox h4 {
	color: var(--color-kontaktbox-h4);
}



#kontaktbox a {
  color: #FBBB21;
  font-weight: bold;
	font-size: 1.2rem;
}

#kontaktbox a:hover {
  color: var(--color-links-hover);
}

#kontaktbox ul {
  list-style: none;
  padding: 0;
}

#kontaktbox ul li {
  padding: 0.2em 0em;
}

#kontaktbox ul svg {
  font-size: 1em;
  margin-right: 0.5em;
}

#kontaktbox button {
  background-color: #FDA620;
  border: none;
  border-radius: 0.5em;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  padding: 0.5em 0em;
  transition: 0.2s;
  margin: 0.9em;
}

#kontaktbox button:hover {
  transition: 0.2s;
  background-color: #351811;
  color: #fff;
  width: 100%;
}

@media (min-width: 992px) {
  #kontaktbox span,
	#kontaktbox a {
  font-size: 1.2em;
  }
}

.serviceberaterin {
  max-width: 220px;
  margin-top: -120px;
}

@media (min-width: 992px) {
.serviceberaterin {
  max-width: 160px;
  margin-top: 0px;
}
}

/* -------------------- Kontaktbox ENDE -------------------- */

/* -------------------- Footer BEGINN -------------------- */
.footer-title {
  text-align: center;
  color: var(--color-footer-text);
  padding: 2.5rem 0 0;
}

.copyright {
  color: var(--color-footer-text);
  font-style: italic;
  text-align: center;
  margin: auto;
  display: block;
}

.logo-footer {
  width: 100%;
  margin: auto;
  display: block;
  padding: 2.5rem 6rem 0;
}

@media (min-width: 992px) {
  .logo-footer {
    /*width: 70%;*/
  }
}

.footer-icon {
  width: 18px !important;
  height: 18px !important;
  border: 3px solid var(--color-akzent);
  border-radius: 50%;
  padding: 0.6rem;
  color: var(--footer-icon-color);
}

.footer-list-1 a:hover .footer-icon {
  border: 3px solid var(--color--links-hover);
  color: var(--color-links-hover);
}

ul.footer-list-1 {
  color: var(--color-footer-text);
  list-style-type: none;
  padding: 1rem 0 0;
  text-align: center;
}

ul.footer-list-1 li {
  display: inline-block;
  text-align: center;
}

ul.footer-list-1 a {
  color: var(--color-footer-link);
  padding: 0 0.5rem;
  text-decoration: none;
}

ul.footer-list-1 a:hover {
  color: var(--color-links-hover);
}

ul.footer-list-2 {
  color: var(--color-footer-text);
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.footer-list-2 li {
  display: flex;
  justify-content: center;
  padding-bottom: 7px;
  align-items: center;
}

.footer-list-2 a {
  color: var(--color-footer-links);
  text-decoration: none;
}

.footer-list-2 a:hover {
  color: var(--color-links-hover);
}

.footer-end {
  text-align: center;
}

.footer-end a {
  color: var(--color-footer-links);
  text-decoration: none;
}

.footer-end a:hover {
  color: var(--color-links-hover);
}

.footer-position {
  position: fixed;
  bottom: 0;
}

@media (min-width: 992px) {
  .footer-title {
    text-align: left;
  }
  .logo-footer {
    margin: 0;
  }
  .copyright {
    text-align: center;
    margin: 0;
  }
  ul.footer-list-1 {
    text-align: center;
  }
  ul.footer-list-2 {
    text-align: left;
  }
  .footer-list-2 li {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 7px;
    align-items: center;
  }
}
/* -------------------- Footer ENDE -------------------- */

/* -------------------- Social Media Start -------------------- */
.effect:nth-child(2) {
margin-top: 50px;
}
.effect .buttons {
margin-top: 15px;
display: flex;
justify-content: center;
}
.effect a:last-child {
margin-right: 0px;
}
.effect a {
text-decoration: none !important;
color: #fff;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
margin-right: 20px;
font-size: 25px;
overflow: hidden;
position: relative;
}
.effect a i {
position: relative;
z-index: 3;
}
.effect a.fb {
background-color: #3b5998;
}
.effect a.insta {
background: linear-gradient(35deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}
.effect a.tik {
background-color: #000;
border: solid 2px var(--color-footer-text);
}
.effect a.twitter {
background-color: #000;
border: solid 2px var(--color-footer-text);
}
.effect a.whatsapp {
background-color: #25D366;
}
.effect.social-media a {
transition: transform 0.2s linear 0s, border-radius 0.2s linear 0.2s;
}
.effect.social-media a i {
transition: transform 0.2s linear 0s;
}
.effect.social-media a:hover {
transform: rotate(-90deg);
border-top-left-radius: 50%;
border-top-right-radius: 50%;
border-bottom-left-radius: 50%;
color: #fff;
}
.effect.social-media a:hover svg {
transform: rotate(90deg) !important;
}
.effect .title-social-media {
display: flex;
justify-content: center;
text-transform: uppercase;
color:var(--color-footer-text);
}
.effect .title-social-media-kontakt {
display: flex;
justify-content: center;
text-transform: uppercase;
color: var(--color-footer-text);
}
.line-social {
position: relative;
width:  100%; /* Breite der Linie */
height: 4px; /* Höhe der Linie */
bottom: 13px;
border-top: none;
margin-top: 0;
background: linear-gradient(to right, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255,255, 0) 70%, rgba(255, 255, 255, 1) 70%);
}
@media (min-width: 992px) {
.effect:before {
width: 80%;
}
}

@media (prefers-reduced-motion) {
.effect.social-media a {
transition: transform 0.2s linear 0s, border-radius 0.2s linear 0.2s;
}
.effect.social-media a i {
transition: transform 0.2s linear 0s;
}
.effect.social-media a:hover {
transform: none;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
border-bottom-left-radius: 50%;
color: #fff;
}
.effect.social-media a:hover svg {
transform: none !important;
}
@media (min-width: 992px) {
.effect:before {
width: 80%;
}
}}
/* -------------------- Social Media Ende -------------------- */

/* -------------------- Slidershow Multiple Items BEGINN -------------------- */
.carousel-inner .carousel-item .card .card-img a {
width: 100%;
height: 250px;
object-fit: cover;
}
@media (max-width: 767px) {
.carousel-inner .carousel-item > div {
display: none;
}
.carousel-inner .carousel-item > div:first-child {
display: block;
}
}
.carousel-inner .carousel-item.active, .carousel-inner .carousel-item-next, .carousel-inner .carousel-item-prev {
display: flex;
}
/* medium and up screens */
@media (min-width: 768px) {
.carousel-inner .carousel-item-end.active, .carousel-inner .carousel-item-next {
transform: translateX(25%);
}
.carousel-inner .carousel-item-start.active, .carousel-inner .carousel-item-prev {
transform: translateX(-25%);
}
}
.carousel-inner .carousel-item-end, .carousel-inner .carousel-item-start {
transform: translateX(0);
}
/* -------------------- Slidershow Multiple Items BEGINN -------------------- */

/* -------------------- Öffnungszeiten Tabelle BEGINN -------------------- */
.table {
  border-color: #9b9b9b;
}

.table .table {
  background-color: transparent;
  color: #fff;
}

.table-success, .table-success > th, .table-success > td {
  background-color: var(--color-akzent)!important ;
  color: #000!important;
  font-weight: 400;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 1rem;
  padding: .4rem .4rem;
  color: var(--color-text);
  background-color: transparent;
}
/* -------------------- Öffnungszeiten Tabelle ENDE -------------------- */

/* -------------------- Datenschutz Button BEGINN -------------------- */
.btn-success {
color: var(--color-text);
background-color: var(--color-hauptfarbe);
border-color: var(--color-text);
}
.btn-success:hover, .btn-success:focus {
color: var(--color-text);
background-color: var(--color-akzent);
border-color: var(--color-text);
}
.btn-check:active + .btn-success, .btn-check:checked + .btn-success, .btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
color: var(--color-text);
background-color: #999;
border-color: #ddd;
}
.btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 .25rem rgba(176,158,128,0.50);
}
.btn-success.disabled, .btn-success:disabled {
color: var(--color-text);
background-color: #999;
border-color: #ddd;
}
/* -------------------- Datenschutz Button ENDE -------------------- */

/* -------------------- Bildstapel ANFANG -------------------- */

.bild02 {
  float: right;
  margin-top: -6em;
  position: relative;
}

.bild03 {
  margin-top: -6em;
}

@media (min-width: 768px) and (max-width: 991px) {
  .bild01 {
    position: relative;
    left: 15%;
  }
  .bild02 {
    float: right;
    margin-top: 7em;
    position: relative;
    right: 12%;
  }
  .bild03 {
    margin-top: 3em;
    position: relative;
    left: 4.5em;
  }
}

/* -------------------- Bildstapel Ende -------------------- */

/* -------------------- Custom CSS ANFANG -------------------- */

.mapsiframe {
  border: 0px solid #fff;
  width:100%;
  filter: var(--mapsiframe-filter);
}

.flex-control-nav {
  bottom: -30px;
}

.title-review {
  color: var(--title-review);
}

#main-flexslider {
  background-color: var(--background-content, #fff);
}

.tooltip-highlighter {
	border-bottom: 1px dotted #b1b1b1;
	cursor: help;
}

/* -------------------- Custom CSS Ende -------------------- */

/* -------------------- Footer Special ANFANG -------------------- */

.bg-footer-spezial {
  background: var(--bg-footer-spezial);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--bg-color-footer-spezial);
  background-position-x: 50vw;
  background-position-y: center;
}

@media (max-width: 1199px) {
  .bg-footer-spezial {
    background: #e9eceb;
  }
}

.bg-footer-verlauf {
	background: var(--bg-footer-verlauf);
 
}

.footerbox01 {
  background: #FBB70C;
}

.footerbox02 {
  background: #555756;
  color: #fff;
}

.footerbox03 {
  background: #008930;
  color: #fff;
}
/* -------------------- Footer Special Ende -------------------- */

/* -------------------- Custom Design ANFANG -------------------- */

.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%; /* Rundes Element */
	background-color: var(--logo-color-1); /* Gelber Hintergrund */
	border: 3px solid #fff;
    outline: 3px solid var(--logo-color-3);
	padding: 10px;
	
	/* Weißer Zwischenrand */
	box-shadow: 0 0 0 2px white; /* Fügt einen weißen Zwischenrand hinzu */
	
	margin-right: 20px;
}

.icon-circle svg {
	color: #fff; /* Farbe des Icons */
	font-size: 24px; /* Größe des Icons */
}



.glass {
	/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
	overflow: hidden;
}

.glass::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	right: -15px;
	bottom: -10px;
	opacity: 0.1;
	background-repeat: no-repeat;
}

.glass.phone::after {
	background-image: url("../images/phone.svg");
}
.glass.mail::after {
	background-image: url("../images/mail.svg");
}
.glass.map::after {
	background-image: url("../images/map.svg");
	right: -30px;
}
.glass.time::after {
	background-image: url("../images/time.svg");
}
.glass.mapgoogle::after {
	background-image: url("../images/map-google.svg");
}
.glass.copyright::after {
	background-image: url("../images/copyright.svg");
}
.glass.mobile::after {
	background-image: url("../images/mobile-solid.svg");
	right: -30px;
}
.trenner {
	border-bottom: dotted 10px var(--logo-color-1);
	border-top: 0px;
	width: 30%;
	opacity: 1;
}
article a {
	font-weight: bold;
}



/*Logo Slider*/
.image-container {
	position: relative;
	height: 100%; /* Bild füllt den Bildschirm */
	width: 100%; /* Bild füllt den Bildschirm */
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 9;
	/*left: 50px;*/
	padding: 10px;
	/*background: rgba(255, 255, 255, 0.6);
	border-radius: 0px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);*/
			}

.image-container img {
	width: 500px;
	height: auto;
	opacity: 1; /* Anfangs volle Sichtbarkeit */
	transition: opacity 0.2s ease; /* Sanfter Übergang beim Verblassen */
}




.logo-background {
	background-color: var(--bg-logo);
}


.modal-fullscreen .modal-content {
	background-color: var(--bg-modal-content);
}

.modal-header .btn-close {
	background: var(--button-close);
}

.accordion-item {
	background-color: var(--bg-accordion-item);
}
.accordion-button {
	background-color: var(--bg-accordion-button);
	color: var(--color-accordion-button);
	font-weight: bold;
	
}
.accordion-button:not(.collapsed) {
	background-color: var(--bg-accordion-button-coll);
	color: var(--color-accordion-button-coll);
	font-weight: bold;
}
.accordion-body {
	color: var(--color-accordion-body);
}


.accordion-button:not(.collapsed)::after {
	background-image: var(--bg-accordion-icon-coll);
}
.accordion-button::after {
	background-image: var(--bg-accordion-icon);
}


.list-group-item {
	background-color: var(--bg-list-group-item);
}

#recipeCarousel .card {
	background-color: var(--bg-card);
}