
/* 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);
	
  
}




@media (max-width: 991px) {
	body {
		word-wrap: break-word;
		 hyphens: auto; 
	}
	
}

.flex-col {
	flex-direction: column;
}

/* Globale Regel für Transition bei Hover */

  /* 


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

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

#start h1 {
	font-weight: 700;
}
/*h1 {
	padding-left: 70px;
}

h1::after {
	content: '';
	position: absolute;
	background-image: url("../images/background/bg-heading.svg");
	width: 100%;
	height: 100%;
	left: 0;
	background-repeat: no-repeat;
}*/

.site-jobs h4 {
	color: var(--color-jobs-ueberschrift);
}

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

.nowrap {
  white-space: nowrap;
}

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

img[src$=".svg"], img[src$=".icon.svg"] {
  filter: none;
}
#start {
	padding-top: 0px;
}

@media (min-width: 992px) {
	#start {
	padding-top: 100px;
}
}

/* -------------------- 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: 350px;
	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: 1em 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,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 -------------------- */

/* -------------------- Hintergrundbilder BEGINN -------------------- */
.bg-content-front {
  background-image: url("../images/teaser/content_front_image.svg");
  background-size: cover;
}
.bg-content {
  background: var(--background-content, #262626);
  background-size: cover;
}
.bg-review {
  background:var(--background-review-slider, #DDD);
  background-size: cover;
  background-position: center;
}
.bg-kontaktformular {
  background:var(--background-kontaktformular, #fff);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-footer {
  background: var(--background-footer, #193A8F);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
/* -------------------- Hintergrundbilder ENDE -------------------- */

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

@media (min-width: 1500px) {
	.navbar {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	
	nav .navbar-brand img {
		/*position: absolute;*/
		max-width: 230px;
		width: 150px;
		/*top: 3px;*/
		transition: all .15s;
	}
	
	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: 150px;
		top: 0px;
		
		/*padding: 10px;*/
	}
	
	nav .navbar-brand {
		opacity: 1;
		padding: 0px;
		z-index: 9;
	}
}
/* -------------------- Navbar-Brand ENDE -------------------- */

/* -------------------- Navigation Anfang -------------------- */
#mainNav.navbar {
background: var(--background-navi);
border-bottom: 2px solid var(--border-navi);
background-repeat: no-repeat;
background-size: cover;
z-index: 99;
/*box-shadow: 0px 5px 10px #333;*/
	padding: 0;
}

#mainNav .nav-item:not(last-child) {
	border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

#mainNav .navbar-brand img {
	opacity: 1 !important;
}


@media (min-width:992px) {
	#mainNav .navbar-brand img {
	opacity: 0 !important;
}

}
#mainNav.navbar-shrink .navbar-brand img {
	max-width: 300px;
	width: 150px;
	opacity: 1 !important;
}

#mainNav .nav-link {
font-family: var(--font-navigation);
transition: all .35s;
text-transform: uppercase;
font-size: 1.3rem;
font-weight: 700;
padding: 2.3rem 1rem;
color: var(--color-navigation);
}
#mainNav .nav-link svg {
	display: none;
}
@media (max-width: 1470px){
#mainNav .nav-link {
transition: none;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
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 {
transform: scale(1);
border-radius: 3px;
color: var(--color-navigation-hover);
}

@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: 16rem;
	padding: 0;
}

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

.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-dropdown-hover);
	background-color: var(--bg-dropdown-navi) !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 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(--mode-color, #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);
color: var(--links-top-info);
background-repeat: no-repeat;
background-size: cover;
	
}
.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: 2em;
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: 3rem;
/*background-color: var(--color-akzent);*/
padding: 0rem;
/*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 und Footer ANFANG -------------------- */
.kontaktbox {
  background-color: #C6172E;
	padding: 25px;
}

.kontaktbox span {
  font-size: 1.2em;
}

.kontaktbox a {
  color: #fff;
  font-size: 1.2rem;
}

.kontaktbox a:hover {
  color: #351811;
}

.kontaktbox h4 {
	color: #fff;
}

.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 {
  font-size: 1.0em;
  }
}



/*Kontaktbox-Flexslider*/
#kontaktbox-flexslider {
		position:relative;
	}
	
	#kontaktbox-flexslider .container-lg {
		position:static;
		
		
	}
	
	#kontaktbox-flexslider .kontaktbox-content {
		display: flex;
		align-items: center stretch;
		flex-direction: column;
		padding: 20px;
		background-color: rgba(35, 50, 138,0.75);
	}
	#kontaktbox-flexslider svg {
		font-size: 3rem;
		color: #fff;
	}
	#kontaktbox-flexslider h4 {
		color: #fff;
		margin-top: 10px;
	}
	#kontaktbox-flexslider a,
	#kontaktbox-flexslider span {
		color: #fff;
	}

@media (min-width:992px) {
	#kontaktbox-flexslider .container-lg {
		position: absolute;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	#kontaktbox-flexslider .kontaktbox-content {
		padding: 50px;
	}
}



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

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



.modal-header {
	background-color: var(--modal-header-bg-color);
}
.modal-title {
	color: var(--modal-header-color);
	font-size: 2rem;
}

.btn-close {
	color: #fff;
	background: transparent url("../images/btn-close.svg");
	background-repeat: no-repeat;
	padding-right: 30px !important;
}




.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%; /* Rundes Element */
	background-color: #333; /* Gelber Hintergrund */
	border: 3px solid #fff;
    outline: 3px solid #000;
	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 */
}

.address-icon {
	width: 70px;
	margin-right: 20px;
}



.glass {
	/* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
overflow: hidden;
}


.glass-border {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.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");
}
.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");
}
	/* -------------------- Kontaktbox und Footer ENDE -------------------- */

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

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

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

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

.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: left;
    margin: 0;
  }
  ul.footer-list-1 {
    text-align: left;
  }
  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);
	text-align: center;
}
.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) 20%, rgba(255, 255, 255, 0) 20%, rgba(255, 255,255, 0) 80%, rgba(255, 255, 255, 1) 80%);
}
@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: #fff!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-datenschutz-button);
background-color: var(--color-hauptfarbe);
border-color: var(--color-text);
}
.btn-success:hover, .btn-success:focus {
color: var(--color-datenschutz-button);
background-color: var(--color-hauptfarbe-hover);
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 -------------------- */
.maps {
  filter: var(--map);
}

.mapsiframe {
  /*border: 4px solid #fff;*/
  width:100%;
  filter: var(--mapsiframe-filter);
	margin-bottom: -7px;
}
.bg-map {
	background-color: var(--background-map);
}

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

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

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






/*
#main-flexslider::after {
	position: absolute;
	top: 0;
	content: '';
	height: 100%;
	width: 100%;
	z-index: 1;
	background: linear-gradient(180deg, rgba(31,31,31,0.75) 0%, rgba(0,0,0,0) 30%);
}*/

.tooltip-highlighter {
	border-bottom: 1px dotted #b1b1b1;
	cursor: help;
}
/*.content-flexslider {
	position: relative;
	z-index: 3;
}*/

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

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

.bg-footer-spezial {
  background: url("../images/background/bg-footer-163875557.jpg");
  background-size: 50%;
  background-repeat: no-repeat;
  background-color: #e9eceb;
  background-position-x: 50vw;
  background-position-y: center;
}

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

.bg-footer-verlauf {
  background: linear-gradient(180deg, rgba(233,236,235,1) 0%, rgba(233,236,235,0) 40%, rgba(233,236,235,0) 80%, rgba(155,155,155,1) 100%);
}

.footerbox01 {
  background: #fff;
}

.footerbox02 {
  background: #9f9f9f;
  color: #fff;
}

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


.trenner {
	border-bottom: dotted 10px #23328A;
    border-top: 0px;
    width: 50%;
    opacity: 1;
}






/* -------------------- Service Cards -------------------- */
#service-cards {
	background: var(--bg-service-cards);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 10px;
}
.card-container {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
	border: 0px;
}

.card .front-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	
 background-size: cover;
}

.card .front-content p {
     font-size: 32px;
    font-weight: 700;
    opacity: 1;
    /* background: linear-gradient(-45deg, #C6172E 0%, #8B1020 100%); */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    color: #fff;
	text-shadow: 3px 3px #333;

}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #C6172E 0%, #8B1020 100% );
  color: #e8e8e8;
  padding: 20px;
  line-height: 1.5;
  pointer-events: none;
  transform: translateY(-96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content .heading {
  font-size: 32px;
  font-weight: 700;
}

.card:hover .content {
  transform: translateY(0);
}

.card:hover .front-content {
  transform: translateY(30%);
}

.card:hover .front-content p {
  opacity: 0;
}

#service-cards .btn.btn-primary {
	background-color: #BC101E;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0px;
    border: 1px solid #333;
}
#service-cards .btn.btn-primary:hover {
	background-color: #920C17;
	color: #fff;
}

#service-cards .card-title {
	color: var(--cards-heading-color);
	font-weight: bold;
}

/* -------------------- Service Cards Ende -------------------- */

/* -------------------- Images Anfang -------------------- */
.img-custom {
	box-shadow: 15px 0px 0px 10px #7674B3;
	border-radius: 50%;
	border: 20px solid transparent;
}

.img-custom.shadow-01 {
	box-shadow: 15px 0px 0px 10px #282B81;
	box-shadow: var(--img-shadow);
}

@media (max-width: 1024px) {
	.img-custom.shadow-01 {
	box-shadow: none;
}
}

 /* Parallax Container */
.bg-parallax {
/* Die Höhe des Containers definieren */
height: auto;
background-image: url("../images/background/parallax_111804783.jpg");
background-attachment: fixed; /* Parallax-Effekt */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.bg-parallax h2 {
	font-weight: bold;
	font-size: 5vw;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 5px 5px 0px #23328A;
}


@media (min-width:1024px) {
	.bg-parallax h2 {
	font-size: 4vw;
}
}
@media (min-width:1440px) {
	.bg-parallax h2 {
	font-size: 3vw;
}
}


/*-------------- Icon Cards --------------------*/

.project-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  font-family: var(--font-ueberschriften);
	
}

.project-title {
  font-weight: 700;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--cards-heading-color);
	text-transform: uppercase;
}

.lighter {
  font-size: 1em;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  font-weight: lighter;
  color: grey;
}

/*DELETE THIS TWO LINE*/
.delete {
  background: var(--background-icon-card);
}

#service-cards .card-img div {
  width: 90%;
}
/*IF USING IMAGES*/

#service-cards .card {
  background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
  color: black;
  color: var(--cards-text-color);
  width: auto;
  border-radius: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
	border: 1px solid #fff;
	transition: all .35s;
	transform: scale(1);
}

#service-cards .card:hover {
	transform: scale(1);
}

@media (min-width: 992px) {
  #service-cards .card:hover {
	transform: scale(1.1);
}
}

#service-cards .card-footer {
	border-top: 0px;
	background-color: transparent;
}

#service-cards .card-img {
  position: relative;
  top: -35px;
  height: 100px;
  display: flex;
  justify-content: center;
}

/* Change the .card-img div to .card-img img to use img*/
#service-cards .card-img a,
#service-cards .card-img div {
  height: 150px;
  width: 150px;
  /* Change this width here to change the width of the color/image */
  object-fit: cover;
  border-radius: 50%;
  box-shadow: rgba(28,28,28,0.50) 10px 5px 0px;
	overflow: hidden;
}

.card-imgs {
  transition: all 0.5s;
  display: flex;
  justify-content: center;
}
.card-imgs img {
	width: 90px;
}

/* Gradient transparent - color - transparent */

hr.style-two {
    border: 0;
    height: 1px;
    background-image: var(--hr-trenner);
}

/*Navigation Button Jobs*/

.nav-link.btn.btn-jobs,
.btn-jobs {
	background: var(--bg-nav-btn-jobs) !important;
	
	color: var(--color-nav-btn-jobs);
	border-radius: 0px;
}

.nav-link.btn.btn-jobs:hover,
.btn-jobs:hover {
	background: var(--bg-nav-btn-jobs-hover) !important;
	color: var(--color-nav-btn-jobs-hover) !important; 
}



.jobs-teaser {
  position: absolute;
  z-index: 999;
  right: 4vw;
  top: 7vw;
  transform: rotate(17deg);
  width:30vw;
	
}


@media (min-width: 992px) {
  .jobs-teaser {
    position: absolute;
    z-index: 999;
    right: 4vw;
    top: 3vw;
    transform: rotate(17deg);
    width:20vw;
  }
  .jobs-teaser .highlight {
    animation: highlight 2s infinite alternate;
	
  }
}

@keyframes highlight {
    0% { transform: scale(1); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1.1); }
}

.impressum a,
.barrierefrei a{
	color: var(--color-imp-a) !important;
}

.impressum a:hover,
.barrierefrei a:hover {
	color: var(--color-imp-a-hover) !important;
}


.btn.btn-jobs {
	background-color: var(--bg-btn-jobs) !important;
	color: var(--color-btn-jobs) !important;
	transition: all .35s;
	transform: scale(1);
}


@media (min-width: 1440px) {
	.btn.btn-jobs {
	background-color: var(--bg-btn-jobs) !important;
	color: var(--color-btn-jobs) !important;
	transition: all .35s;
	transform: scale(1);
}

.btn.btn-jobs:hover {
	transform: scale(1) !important;
}
}


.pq-box {
  background: var(--bg-pq-box);
  color: var(--color-pq-box);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.pq-img {
  width: 100px;
  height: auto;
  border-radius: 6px;
}

/* -------------------- Image Stretch Anfang -------------------- */
.image-stretch {
	border: 2px solid #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
/* -------------------- Image Stretch Ende -------------------- */


.btn-secondary {
  background-color: #BB111F;
}


iframe {
	color-scheme: light !important;
}

.accordion-button:not(.collapsed) {
	background-color: #282B81;
	color: #FFF;
}
.accordion-button:not(.collapsed)::after {
	background-color: var(--bg-acc-arrow);
	border-radius: 2px;
}