/*fonts*/
/* bebas-neue-regular - latin */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bebas-neue-v8-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/bebas-neue-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/bebas-neue-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/bebas-neue-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/bebas-neue-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/bebas-neue-v8-latin-regular.svg#BebasNeue') format('svg'); /* Legacy iOS */
}
/* lobster-regular - latin */
@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lobster-v27-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lobster-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lobster-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lobster-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lobster-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lobster-v27-latin-regular.svg#Lobster') format('svg'); /* Legacy iOS */
}
/*genearl*/
.font-lobster {
	font-family: 'Lobster';
	font-style: normal;
	font-weight: 400;
}

html,body {
	font-family: 'Bebas Neue';
	font-style: normal;
	font-weight: 400;
	font-size: 30px;
}

@media (max-width: 767px) {
	body{
		font-size: 25px;
	}
}
/*links*/
a,
a:visited {
	color: #c79a4a;
}
a:hover,
a:active,
a:focus {
	color: #fff;
}
/* Header */
#sp-header {
	position: fixed !important;
	background-color: transparent !important;
	transition: background-color .25s ease-in-out;
}
#sp-header.scrolled {
	background-color: rgba(2,4,25, .3) !important;
	height: 150px;
}
.d-none {
	display: block !important;
}

/* Navbar */
#sp-logo {
	display: none !important;
}
.sp-megamenu-parent > li:last-child > a {
  padding: 10px 0px 0px 0px;
}
@media (min-width: 768px) {
	.sp-megamenu-wrapper {}
	.sp-megamenu-wrapper .sp-megamenu-parent {}
	.sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item {}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:visited {
		color: #fff;
		font-size: 25px;
	}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:hover,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:active,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:focus {
		color: #c79a4a;
		font-size: 25px;
	}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a.navbar-branding > img {
		max-width: 300px;
		height: auto;
		margin-top: 30px;
	}
	.sp-megamenu-parent li {
		display: inline;
		list-style-type: none;
	}

	.sp-megamenu-parent {
		text-align: center;
	}	
}

@media (max-width: 767px){
	
	#sp-menu > .sp-column.d-flex {
		display: block !important;
	}
	
	.sp-megamenu-wrapper .sp-megamenu-parent {}
	.sp-megamenu-wrapper .sp-megamenu-parent .sp-menu-item {}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:visited {
		color: #fff;
		font-size: 20px;
	}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:hover,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:active,
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a:focus {
		color: #c79a4a;
		font-size: 20px;
	}
	.sp-megamenu-wrapper .sp-megamenu-parent > li.sp-menu-item > a.navbar-branding > img {
		max-width: 150px;
		height: auto;

		
	}
	.sp-megamenu-parent {
		position: relative;
		padding-top: 100px;
		list-style: none;
	}
	.sp-megamenu-parent li {
		display: inline;
	}
		
	.sp-megamenu-parent {
		text-align: center;
	}

	.li-branding {
		position: absolute !important;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);

	}
}

/*first impression*/
@media (max-width: 767px){
	
}

.first-impression-list ul {
	padding-left: 0 !important;
}

.list-star {
	display: inline;
    list-style-type: none;
}

.list-star:not(:first-child)::before {
	display: inline-block;
	padding: 10px;
	content: '\e905';
	font-family: 'icons' !important;
	color: #c79a4a;
}

/*Arrow*/
.btn-arrow {
	color: #fff;	
}
.bounce {
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-8px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-20px);
  }
  60% {
    -moz-transform: translateY(-8px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-20px);
  }
  60% {
    -o-transform: translateY(-8px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/*Service section*/
@media (max-width: 767px) {
	
	#sppb-addon-1648621314848 img {
		margin: 0 auto;
	}
	.service-icon > .sppb-addon-content  {
		font-size: 70px !important;
		
	}
}
.service-icon {
	display: flex;
	flex-direction: column;
	color: #fff;
}
.service-icon > .sppb-addon-title {
	order: 2;
}
.service-icon > .sppb-addon-content {
	order: 1;
}
.service-icon > .sppb-addon-content  {
	font-size: 130px;
}
.service-icon > .sppb-addon-content p  {
	font-size: 12px;
}


.sppb-addon-raw-html {
	transition: color .25s linear;	
}
.fx-hover .sppb-container-inner .sppb-row > [class*="sppb-col"] .sppb-column:not(.empty) {
	transition: all .25s linear;
	padding: 15px;
}
.fx-hover .sppb-container-inner .sppb-row > [class*="sppb-col"]:hover .sppb-column:not(.empty) {
	transform: scale(1.1);
	background-color: #020419;
}
.fx-hover .sppb-container-inner .sppb-row > [class*="sppb-col"]:hover .service-icon {
	color: #c79a4a !important;
}

/*
.service-icon:hover {
	color: #c79a4a !important;	

}
.service-icon {
	transition: all .25s linear;	
}
.service-icon:hover {
	transform: scale(1.1);	
} 
*/

/*Contact*/
/*
* BTN Custom
*/

@media (min-width: 768px) {
	.btn-custom {
		min-width: 264px;
		height: 51px;
		line-height: 51px;
		padding-top: 0;
		padding-bottom: 0;
		display: inline-block;
		background-image: url(../images/btn-message.png);
		background-repeat: no-repeat;
		background-position: 50% 0;
		background-size: 100% auto;
		font-size: 25px;
	}
}

@media (max-width: 767px) and (min-width: 576px) {
	.btn-custom {
		min-width: 120px;
		height: 23px;
		line-height: 23px;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 10px;
		padding-right: 10px;
		display: inline-block;
		background-image: url(../images/btn-message.png);
		background-repeat: no-repeat;
		background-position: 50% 0;
		background-size: 100% auto;
		font-size: 16px;
	}
	#sppb-addon-1648629231245 {
		padding: 10px 15px 0px 15px;
	}
	#sppb-addon-1648629231232{
		padding: 0px 15px 10px 15px;
	}
}
@media (max-width: 575px) {
	.btn-custom {
		min-width: 100px;
		height: 20px;
		line-height: 20px;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 10px;
		padding-right: 10px;
		display: inline-block;
		background-image: url(../images/btn-message.png);
		background-repeat: no-repeat;
		background-position: 50% 0;
		background-size: 100% auto;
		font-size: 15px;
		}
	#sppb-addon-1648629231245 {
		padding: 10px 15px 0px 15px;
	}
	#sppb-addon-1648629231232{
		padding: 0px 15px 10px 15px;
	}
}
.btn-custom:hover {
	background-position: 50% 100%;
	color: #fff !important;
}


/*Team Grid*/
.team-image {
	position: relative;
	border: 13px solid #f3f3f3;
}

.team-image > .sppb-addon-title {
	position: absolute;
	z-index: 106;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	opacity: 0;
	transition: opacity .25s ease-in-out;
}
.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(7,20,46,0.6);
	z-index: 105;
	opacity: 0;
	transition: opacity .25s ease-in-out;
}
.team-image:hover > .sppb-addon-title ,
.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container:hover:after {
	opacity: 1;
}

@media (max-width: 767px){
	.team-row .sppb-column-addons .sppb-addon-wrapper:not(:first-child) .sppb-addon-single-image  {
		margin-top: 30px;
	}
}
@media (min-width: 768px){
	.team-row .sppb-column-addons {
		display: grid; 
		grid-template-columns: 1.2fr 0.8fr; 
		grid-template-rows: 460px 460px 460px; 
		gap: 45px 45px; 
	}

	.team-row .sppb-column-addons .sppb-addon-wrapper {
		position: relative;
		z-index: 99;	
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image {
		position: absolute;
		height: 100%;
		width: 100%;
		overflow: hidden;
		z-index: 101;
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .column-2 {
		transform: translate(-100px, 80px);
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .column-3 {
		max-width: 460px;
		left: 50%;
		transform: translateX(-50%);
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .column-4 {
		transform: translate(-150px, 80px) rotate(-8deg);
		aspect-ratio: 1 / 1;
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .column-5{
		max-width: 460px;
		height: 460px;
		left: 20%;
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .column-6{
		max-width: 460px;
		height: 460px;
		top: 30%;
		left: -20%;
		transform: rotate(6deg);
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image .sppb-addon-content,
	.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container {
		height: 100%;
		width: 100%;
	}
	.team-row .sppb-column-addons .sppb-addon-wrapper .sppb-addon-single-image .sppb-addon-content .sppb-addon-single-image-container img {
		position: absolute;
		width: 100%; 
		height: 100%; 
		left: 0; 
		right: 0; 
		top: 0; 
		bottom: 0; 
		object-fit: cover;
	}
}

.team-element:after {
	z-index: 101;
	content:'Läuft!';
	color: #c79a4a;
	font-family: 'Lobster';
	position: absolute;
	line-height: 1;
	transform: rotate(-20deg);
	bottom: 2%;
	right: 10%;
	font-size: 60px;
	text-shadow:3px 5px 2px #474747;
}

/*Öffnungszeiten*/
.star-icon::before {
	display: inline-block;
	padding: 10px;
	content: '\e905';
	font-family: 'icons' !important;
	color: #052b35;
}
@media (min-width: 768px) {
	.opening li {
		display: flex;
		list-style-type: none;
		color: #052b35;
		justify-content: center;
		align-items: center;	
	}
	.opening li > div {
		flex: 1;
		max-width: 300px;
	}	
}


@media (max-width: 767px) {
	.opening > div {
		display: block !important;
	}
	.opening li {
		list-style: none;
		text-align: center;
		padding: 0 !important;
		margin: 0 !important;
	}
	ul.opening  {
		padding: 0 !important;
		margin: 0 !important;
	}
}

/*Kontakt*/
@media (max-width: 767px) {
	.route-btn {
		max-width: 200px !important;
		margin: 0 auto;
	}
}


/*footer*/
.footer {

}

@media (max-width: 767px){
	#sppb-addon-1648477065962 img {
		max-width: 300px !important;
	}
	.social-links > li {
		font-size: 30px !important ;
	}
	.icon-icon-facebook,
	.icon-icon-instagram{	
		padding: 10px !important;
	}
	.footer-links > li {
	font-size: 10px !important;
	}
	#sp-footer .container-inner {
		padding: 0px !important;
	}
	.sp-page-builder .page-content #kontakt{
		padding-bottom: 0px !important;
	}
}

#sp-footer {
	background: #020419 !important;
	color: #fff !important;
}
#sp-footer .container-inner {
	border: 0;
}

.footer-social {
	font-size: 20px !important;
	text-align: center;
}

/*social Icons*/
ul.social-links {
	text-align: center;
	padding-left: 0 !important;
}

.social-links > li {
	display: inline;
    list-style-type: none;
	font-size: 65px ;
}

.icon-icon-facebook,
.icon-icon-instagram{
	color: #fff !important;	
	padding: 30px;
	transition: all .25s linear;
}
.icon-icon-facebook:hover,
.icon-icon-instagram:hover {
	color: #c79a4a !important;
}

/**/
ul.footer-links {
	text-align: right;
    list-style: none;
}
.footer-links > li {
	display: inline;
	font-size: 20px;
	transition: all .25s linear;
}
.footer-links > li a {
	color: #fff !important;
}
.footer-links > li a:hover {
	color: #c79a4a !important;	
}


/*
* Icons
*/
@font-face {
  font-family: 'icons';
  src:  url('../fonts/icons.eot?q9wb8g');
  src:  url('../fonts/icons.eot?q9wb8g#iefix') format('embedded-opentype'),
		url('../fonts/icons.ttf?q9wb8g') format('truetype'),
		url('../fonts/icons.woff?q9wb8g') format('woff'),
		url('../fonts/icons.svg?q9wb8g#icons') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues width browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-icon-huau:before {
  content: "\e900";
}
.icon-icon-inspection:before {
  content: "\e901";
}
.icon-icon-karosserieinstandsetzung:before {
  content: "\e902";
}
.icon-icon-motorinstandsetzung:before {
  content: "\e903";
}
.icon-icon-reifen:before {
  content: "\e904";
}
.icon-icon-star:before {
  content: "\e905";
}
.icon-icon-facebook:before {
  content: "\e906";
}
.icon-icon-instagram:before {
  content: "\e907";
}
.icon-icon-arrow-bottom:before {
  content: "\e908";
}
.icon-icon-arrow-top:before {
  content: "\e909";
}
.icon-icon-arrow-right:before {
  content: "\e90a";
}
.icon-icon-arrow-left:before {
  content: "\e90b";
}


/* Background images */
.bg-fill {
	background-size: 100% !important;
}


/*
 * Page rights
 */
#sp-header {
	box-shadow: none !important;
}
body.page-rights .body-wrapper {
	background-color: #000000;
	color: #ffffff;
}
body.page-rights #sp-component {
	padding-top: 200px;
	text-align: center;
}
body.page-rights #sp-component h1,
body.page-rights #sp-component h2,
body.page-rights #sp-component h3,
body.page-rights #sp-component h4 {
	font-family: 'Lobster';
	font-style: normal;
	font-weight: 400;
}


