body#bp-body {
	padding-top: 80px;
}

header.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 10005;
  background-color: #fff;
  padding: 15px 0;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 5px 5px rgba(76, 76, 76, 0.09);
}
header.header.bp-small {
  height: 60px;
  padding: 10px 0;
}


header.header .logo {    
    z-index: 10006;
	float: left;
	transition: all 0.5s ease-in-out;
	height: auto;
	width: 167px;
}
header.header.bp-small .logo {
  width: 95px;
}
header.header .logo a,
header.header .logo a:hover,
header.header .logo a:focus {
    display: block;
	line-height: 0;
	text-decoration: none;	
}






.menu-desktop {
	display: block;
	float: right;
}
#bp-nav-trigger {
	display: none;
}


header.header .menu-desktop ul > li.nav-item {
	display: inline-block;
	margin-left: 60px;
	line-height: 70px;
    font-size: 23px;
	transition: all 0.5s ease-in-out;
}

header.header.bp-small .menu-desktop ul > li.nav-item {
  margin-left: 15px;
  line-height: 40px;
  font-size: 20px;
}


.menu-desktop ul > li.nav-item.current {
  
}
.menu-desktop ul > li.nav-item a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
	color: #707070;
}
.menu-desktop ul > li.nav-item a:hover {
	text-decoration: none;	
	font-weight: 400;
	color: #009b6a;
}
.menu-desktop ul > li.nav-item.current a {
	text-decoration: none;	
	text-transform: uppercase;
	font-weight: 700;
	color: #707070;
}


@media (max-width: 1279px) {
	header.header .menu-desktop ul > li.nav-item {
		margin-left: 50px;
	}
}
@media (max-width: 1023px) {
	body#bp-body {
		padding-top: 60px;
	}
	header.header, 
	header.header.bp-small {
	  height: 60px;
	  padding: 10px 0;
	}
	header.header .logo,
	header.header.bp-small .logo {
	  width: 95px;
	}
	
	header.header .bp-width {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.menu-desktop {
	  display: none;
	}
	#bp-nav-trigger {
	  display: block;
	}
}
@media (max-width: 768px) {

}
@media (max-width: 640px) {

}











/** mobiles Menü **/
#bp-nav-trigger {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 60px;
  width: 60px;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  text-indent: 100%;
}
#bp-nav-trigger span,
#bp-nav-trigger span::before,
#bp-nav-trigger span::after {
  position: absolute;
  height: 3px;
  width: 25px;
  background: #009b6a;
}
#bp-nav-trigger span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background .3s;
}
#bp-nav-trigger span::before,
#bp-nav-trigger span::after {
  content: '';
  top: 0;
  left: 0;
  transition: background .3s, transform .3s;
}
#bp-nav-trigger span::before {
  transform: translateY(-8px);
}

#bp-nav-trigger span::after {
  transform: translateY(8px);
}
#bp-nav-trigger:hover span, 
#bp-nav-trigger:hover span::before,
#bp-nav-trigger:hover span::after {
  background: #0f3b2d;
}
.nav-open #bp-nav-trigger span {
  background: transparent;
}
.nav-open #bp-nav-trigger span::before,
.nav-open #bp-nav-trigger span::after {
  background: #009b6a;
}
.nav-open #bp-nav-trigger span::before {
  transform: rotate(-45deg);
}
.nav-open #bp-nav-trigger span::after {
  transform: rotate(45deg);
}


.bp-mobile-nav-overlay {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.nav-open .bp-mobile-nav-overlay {
  opacity: .8;
  visibility: visible;
}
body.nav-open {
  overflow: hidden;
}


/**
#bp-mobile-navigation.nav-container {
	position: fixed;
	z-index: 10002;
	top: 0;
	right: 0;
	height: 100%;
	width: 90%;
	max-width: 300px;
	background: #F3F3F3;
	transform: translateZ(0);
	transform: translateX(100%);
	transition: transform .5s cubic-bezier(.07,.23,.34,1);
	box-sizing: border-box;
	padding-bottom: 50px;
}
**/
#bp-mobile-navigation.nav-container {
	position: fixed;
	z-index: 10002;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: #009b6a;
	transform: translateZ(0);
	transform: translateY(-100%);
	transition: transform .5s cubic-bezier(.07,.23,.34,1);
	box-sizing: border-box;
	padding-top: 60px;
}
#bp-mobile-navigation.nav-container .bp-nav-inner {
	overflow: auto;
	height: 100%;
	width: 100%;
}
.nav-open #bp-mobile-navigation.nav-container {
  transform: translateY(0);
}

#bp-mobile-navigation #bp-close-the-nav {
	display: none;
	position: absolute;
	left: 10px;
	bottom: 10px;
	width: 30px;
	height: 30px;
}
.nav-open #bp-mobile-navigation #bp-close-the-nav {
	display: block;
}

#bp-mobile-navigation #bp-close-the-nav span::before,
#bp-mobile-navigation #bp-close-the-nav span::after {
  content: '';
}
#bp-mobile-navigation #bp-close-the-nav:hover span::before,
#bp-mobile-navigation #bp-close-the-nav:hover span::after {
  background: #000;
}
#bp-mobile-navigation #bp-close-the-nav span {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.nav-open #bp-mobile-navigation #bp-close-the-nav span::before,
.nav-open #bp-mobile-navigation #bp-close-the-nav span::after {
  position: absolute;
  height: 3px;
  width: 30px;
  background: #3E3E3E;
  top: 14px;
}
.nav-open #bp-mobile-navigation #bp-close-the-nav:hover span::before,
.nav-open #bp-mobile-navigation #bp-close-the-nav:hover span::after {
  background: #000;
}
.nav-open #bp-mobile-navigation #bp-close-the-nav span::before {
  transform: rotate(-45deg);
}
.nav-open #bp-mobile-navigation #bp-close-the-nav span::after {
  transform: rotate(45deg);
}

.nav-open #bp-mobile-navigation .cookie-einstellungen ul > li span {
  padding: 15px;
  display: block;
  border-bottom: 1px solid #0f3b2d;
  color: #fff;
}
.nav-open #bp-mobile-navigation .cookie-einstellungen ul > li span:hover {
  background-color: #0f3b2d;
  color: #fff;
  cursor: pointer;
}




.main-slider-wrapper {
	position: relative;
}

.main-slider-wrapper .bp-slider-main .ein-slide {
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center;
}
.main-slider-wrapper .slider-grunge {
	position: absolute;	
	bottom: 0;
	left: 0;
	height: 40px;
	width: 100%;
	display: block;
/**	background-image: URL('/images/grafiken/bilderrahmen_grunge.svg'); **/
	background-image: URL('/images/grafiken/bilderrahmen_grunge.png'); 
	background-size: inherit;
	background-repeat: repeat-x;
	background-position: bottom left;
}


@media (max-width: 1279px) {
	.main-slider-wrapper .bp-slider-main .ein-slide {
		height: 600px;
	}
}
@media (max-width: 1023px) {
	.main-slider-wrapper .bp-slider-main .ein-slide {
		height: 500px;
	}
}
@media (max-width: 768px) {
	.main-slider-wrapper .bp-slider-main .ein-slide {
		height: 400px;
	}
}
@media (max-width: 640px) {
	.main-slider-wrapper .bp-slider-main .ein-slide {
		height: 300px;
	}
}
@media (max-width: 480px) {
	.main-slider-wrapper .bp-slider-main .ein-slide {
		height: 250px;
	}
}




main.content {
	position: relative;
}


@media (max-width: 1279px) {

}
@media (max-width: 1023px) {

}
@media (max-width: 768px) {

}
@media (max-width: 640px) {

}








footer.footer {
	background-image: URL('/images/grafiken/footer_reifenspuren.webp');
	background-size: cover;
	background-repeat: no-repeat;
}
footer.footer a,
footer.footer a:hover,
footer.footer a:focus{	
	text-decoration: none;
}

footer.footer .footer-main-wrapper > div {
  float: left;
  width: 33.333333%;
  text-align: center;
}
footer.footer .footer-main-wrapper > div > .inner {
  display: inline-block;
  text-align: left;
}


footer.footer .footer-main-wrapper .logo {
	width: 240px;
	margin-top: 18px;
}
footer.footer .sbr-logo .gruen {
  fill: #fff;
}


footer.footer .footer-main-wrapper .rechtliche-links ul > li {
  display: inline-block;
  text-transform: uppercase;
  margin-top: 15px;
}
footer.footer .footer-main-wrapper .rechtliche-links ul > li::before {
	content: "| "
}
footer.footer .footer-main-wrapper .rechtliche-links ul > li:first-child::before {
	content: ""
}




footer.footer .footer-main-wrapper > div > .inner .kontakte {
	text-transform: uppercase;
	font-size: 20px;
	line-height: 1.4;
	margin-top: 18px;
}
footer.footer .footer-main-wrapper > div > .inner .kontakte > li {
  position: relative;
  padding-left: 60px;
}
footer.footer .footer-main-wrapper > div > .inner .kontakte > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  font-size: 50px;
  line-height: 1;
  font-family: icomoon;
  color: #0f3b2d;
}
footer.footer .footer-main-wrapper > div > .inner .kontakte > li.adresse::before {
  content: "\e905";
}
footer.footer .footer-main-wrapper > div > .inner .kontakte > li.telefon::before {
  content: "\e906";
}
footer.footer .footer-main-wrapper > div > .inner .kontakte > li.telefon {
  line-height: 50px;
  margin-top: 38px;
}





footer.footer .footer-main-wrapper > div > .inner .zeiten {
	text-transform: uppercase;
	font-size: 20px;
	line-height: 1.4;
}
footer.footer .footer-main-wrapper > div > .inner .zeiten h6 {
  color: #0f3b2d;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: none;
}
footer.footer .footer-main-wrapper > div > .inner .zeiten li.oeffnung {
  margin-top: 20px;
}



@media (max-width: 1279px) {
	footer.footer .footer-main-wrapper .logo {
		width: 200px;
	}
	footer.footer .footer-main-wrapper .rechtliche-links {
		font-size: 16px;
	}
	footer.footer .footer-main-wrapper > div > .inner .kontakte {
		font-size: 16px;
	}
	footer.footer .footer-main-wrapper > div > .inner .kontakte > li::before {
		font-size: 45px;
	}
	footer.footer .footer-main-wrapper > div > .inner .zeiten {
		font-size: 16px;
	}

}
@media (max-width: 1023px) {
	footer.footer .footer-main-wrapper > div {
	  float: none;
	  width: 100%;
	}
	footer.footer .footer-main-wrapper > div > .inner .kontakte {
		margin-top: 50px;
	}
	footer.footer .footer-main-wrapper > div > .inner .zeiten {
		margin-top: 50px;
	}
}
@media (max-width: 768px) {

}
@media (max-width: 640px) {

}
@media (max-width: 480px) {
	footer.footer .parallelogram {
	  padding-left: 0;
	  padding-right: 0;
	}
	footer.footer .parallelogram::before, 
	footer.footer .parallelogram::after	{
		display: none; 
	}
	footer.footer .footer-main-wrapper .logo {
		width: 100%;
	}
	footer.footer .footer-main-wrapper > div > .inner .kontakte > li {
		padding-left: 45px;
	}
	footer.footer .footer-main-wrapper > div > .inner .kontakte > li::before {
		font-size: 40px;
	}
}












.parallelogram {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}

.parallelogram::before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 100%;
    background: #cccccc;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path:         polygon(100% 0, 100% 100%, 0 100%);	
}
.parallelogram::after {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 100%;
    background: #cccccc;
    -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%);
    clip-path:         polygon(0 0, 100% 0%, 0 100%);	
}
.parallelogram > .inner {
  position: relative;
  background: #cccccc;
}


.parallelogram.gruen::before {
    background: #009b6a;
}
.parallelogram.gruen::after {
    background: #009b6a;
}
.parallelogram.gruen > .inner {
  background: #009b6a;
}

@media (max-width: 1279px) {

}
@media (max-width: 1023px) {

}
@media (max-width: 768px) {

}
@media (max-width: 640px) {

}






/** 357 Web **/
#cpnb a#cpnb-decline-btn {
    display: none !important;
}
@media (max-width: 1023px) {
	.cpnb-m-cookies-floatButton.cpnb-m-cookies-floatButtonPosition_bottom_left {
	  display: none;
	}
}


