@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700');
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot');
  src:  url('fonts/icomoon.eot#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf') format('truetype'),
    url('fonts/icomoon.woff') format('woff'),
    url('fonts/icomoon.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
	box-sizing: border-box;
}
:root {
	font-size: 18px;
}
body {
	background: none #fff;
	color: #1a171b;
	font-family: 'Ubuntu', Arial, icomoon, sans-serif;
	line-height: 1.4;
	overflow-x: hidden;
}
body.loading, body.loading a {
	cursor: progress !important;
}
h1, h2, h3 {
	font-weight: 500;
	line-height: 1.2;
	margin: 0.6em 0;
}
h1 {
	font-size: 2.5em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.3em;
}
h1 span,
h2 span {
	color: #ff0028;
}
a {
	color: currentColor;
	text-decoration: none;
}
a:focus {
	text-decoration: underline;
}
hr {
	border-color: #ccc;
	border-style: solid;
	border-width: 1px 0 0;
	margin: 1em 0;
}
p {
	margin: 0.5em 0;
}
small {
	font-size: 0.85em;
}
body.js .no-js,
body.no-js .js {
	display: none;
}
.clear{ clear: both; }
.inner {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}
.mobile {
	display: none !important;
}
img, svg {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
.lazy img, img.lazy {
	min-width: 1px;
	min-height: 1px;
}

ul.nav li {
	display: inline-block;
}
ul.nav a {
	text-decoration: none;
}

/* BUTTONS */
button, .button {
	background: #ff0028;
	border: 0 none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: 1.2rem;
	font-weight: 500;
	padding: 10px 30px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
button.ghost, .button.ghost {
	background: transparent;
	border: 2px solid currentColor;
	color: #282b32;
	padding: 8px 28px;
}
button.light, .button.light {
	background: #fff;
	color: #282b32;
}
.fw::before, .bw::before {
	font-size: 1.2em;
	line-height: 1;
	vertical-align: middle;
}
.fw::before {
	content: '\2771';
	float: right;
	margin: 6px .3em 0;
}
.bw::before {
	content: '\2770';
	margin-right: .3em;
}
button::after, .button::after {
	content: '';
	background-color: transparent;
	background-image: none;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	transition: background-color .4s, background-size .4s;
}
button:hover::after, .button:hover::after {
	background-color: rgba(0,0,0,0.08);
	background-size: 20% 100%;
}
button.ghost:hover::after, .button.ghost:hover::after {
	z-index: -1;
}
button:active::after, .button:active::after {
	background-color: rgba(0,0,0,0.15);
}
button:focus::after, .button:focus::after {
	background-image: radial-gradient(circle, rgba(95,210,255,0.12) 70%, transparent 73%);
	background-size: 200% 100%;
}

/* GRID-LAYOUT */
.row {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.row:after {
	content: '';
	clear: both;
	display: block;
}
.row.boxed > *[class^="col-"] {
	border: 0 none;
	margin: 0;
	padding: 20px 30px;
	position: relative;
}
.row.boxed > *[class^="col-"]::before {
	border: 2px solid #e6e6e6;
	content: '';
	position: absolute;
	top: 5px;
	right: 15px;
	bottom: 5px;
	left: 15px;
	pointer-events: none;
}
*[class^="col-"] {
	flex: 0 0 auto;
	padding: 0 15px;
}
.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3, .col-1-4 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-1-5 { width: 20%; }
.col-2-5 { width: 40%; }
.col-3-5 { width: 60%; }
.col-4-5 { width: 80%; }
.col-12, .col-5-5 { width: 100%; }

/* HEAD */
header {
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	height: 6.5em;
	position: sticky;
	top: -2em;
	text-align: right;
	z-index: 10;
}
header .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
header .top {
	color: #aaa;
	font-size: 0.8em;
	min-width: 100%;
	padding: 10px 0;
}
header .top span {
	padding-left: 50px;
}
header .top span::before {
	padding-right: 5px;
}
header .icon-phone {
	color: #ff0028;
}
header .icon-phone strong {
	color: #fff;
}
header .logo img {
	width: 200px;
}

/* NAVIGATION */
.lang-nav { float: right; height: 24px; position: relative; z-index: 10; }
.lang-nav li { background: #fff; }
.lang-nav:not(:hover) li:not(:first-child) { display: none; }
.lang-nav li img { width: 32px; height: 20px; }

.main-nav {
	padding-top: 1em;
	text-transform: uppercase;
	transition: .2s;
	z-index: 20;
}
.main-nav .nav > li {
	margin-left: 1em;
}
.main-nav .nav a {
	color: currentcolor;
	display: inline-block;
	letter-spacing: 0.06em;
	line-height: 1;
	padding-bottom: 0.4em;
	width: 100%;
}
.main-nav .nav a:hover {
	box-shadow: inset 0 -1px 0 #547dd1;
}
.main-nav .nav a.active {
	box-shadow: inset 0 -3px 0 #547dd1;
}
.main-nav .nav ul {
	background: rgba(255,255,255,0.95);
	max-height: 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	width: 300px;
	transition: max-height 0.4s;
}
.main-nav .nav li:hover ul {
	max-height: 300px;
}
.main-nav .nav ul li {
	display: block;
}
.main-nav .nav ul a {
	color: #282b32;
	display: block;
	padding: 5px 10px;
}

/* SLIDER */
.banner {
	position: relative;
	z-index: 6;
}
.banner .slide {
	position: relative;
	height: 222px;
	width: 100vw;
}
.banner .image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.banner .image img {
	height: 100%;
	width: 100vw;
	object-fit: cover;
	object-position: center 85%;
}
.banner .inner {
	position: relative;
	margin-top: 45px;
	z-index: 2;
}
.banner .text {
	color: #fff;
	max-width: 550px;
	text-shadow: 0 0 10px #000;
}
.banner .text h1,
.banner .text h2 {
	font-size: 2.5em;
}
.banner .text .button {
	text-shadow: none;
}
.banner .title:empty {
	display: none;
}
.banner .desc {
	line-height: 1.2;
}
.banner .provenexpert {
	position: absolute;
	top: 40%;
	left: 10%;
}
button.slick-arrow {
	font-size: 0;
	background: no-repeat transparent center;
	background-size: contain;
	border: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 74px;
	z-index: 1;
	cursor: pointer;
}
button.slick-prev {
	background-image: url("arr_left.png");
	left: 0;
}
button.slick-next {
	background-image: url("arr_right.png");
	right: 0;
}
.banner a.scrolldown {
	color: #fff;
	font-size: 100px;
	line-height: 0;
	text-decoration: none !important;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.5em;
	width: 100%;
	text-align: center;
}
.slick-dots {
	text-align: center;
}
.slick-dots li {
	display: inline-block;
	margin: 0 8px;
}
.slick-dots button {
	background: #e5e5e5;
	border-radius: 50%;
	font-size: 0;
	padding: 5px;
}
.slick-dots .slick-active button {
	background: #1a171b;
}

/* BREADCRUMB */
.breadcrumb {
	font-size: 0.93em;
	font-weight: 500;
	padding: 15px 0;
	text-align: left;
}
.breadcrumb a {
	color: currentColor;
	margin-right: 10px;
	text-decoration: none;
}
.breadcrumb a:not(:first-child)::before {
	content: '»  ';
}
.breadcrumb a:last-child {
	font-weight: 500;
}

/* CONTENT */
body > main {
	margin-bottom: 100px;
}
body > main a {
	color: #ff0028;
}
body > main .parallax {
	background-attachment: fixed;
	background-size: cover;
}
body > main .textblock {
	position: relative;
	z-index: 7;
}
.textblock button,
.textblock .button {
	margin-top: 1.5em;
}
.textblock li {
	list-style-position: outside;
	padding-left: 1.3em;
	position: relative;
}
.textblock ul li::before {
	content: '\2713';
	color: #547dd1;
	position: absolute;
	top: 0.1em;
	left: 0;
}
.oeffnungszeiten span:first-child {
	display: inline-block;
	width: 120px;
	max-width: 50%;
}


/* FOOTER */
body > footer {
	background-color: #232628;
	color: #ccc;
	font-size: 0.93em;
	margin-top: 50px;
	padding: 25px 0;
	text-align: center;
}
body footer .row > * {
	margin-bottom: 30px;
}
body > footer .titel {
	font-size: 1.15em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.social a {
	font-size: 0;
}
.social a::before {
	font-size: 24px;
}

body > footer .copyright {
	float: left;
}
body > footer .social {
	float: right;
}
body > footer .social a {
	margin-left: 10px;
}
body > footer .nav li {
	margin: 0 5px;
}
  body > footer .nav a {
	  color: #ff0028;
  }
  body > footer .nav a:hover {
	  color: #fff;
  }

/* Cookie-Hinweis */
.cookie-hinweis {
	background-color: rgba(0,0,0,0.9);
	box-shadow: 0 0 10px 0 #000;
	color: #fff;
	padding: 15px;
	font-size: 0.85em;
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
	text-align: center;
	z-index: 99999;
}
.cookie-hinweis .buttons {
	display: block;
	margin-top: 1em;
}
.cookie-hinweis button,
.cookie-hinweis .button {
	font-size: 0.9rem;
	margin: 0 3px;
	padding: 10px 0;
	width: 100px;
}

/* Whatsapp-Icon */
/*.fixed .icon-whatsapp {
	background: linear-gradient(to bottom, #9f9, #0c0);
	border-radius: 10px;
	box-sizing: content-box;
	color: #fff;
	height: 2.3rem;
	width: 2.3rem;
	padding: 7px;
	position: fixed;
	bottom: 10px;
	left: 10px;
	z-index: 99;
}
.fixed .icon-whatsapp:hover {
	box-shadow: inset 1px 2px 8px rgba(0,0,0,0.4);
}
.fixed .icon-whatsapp::before {
	display: block;
	font-size: 2.3rem;
	width: 1em;
	height: 1em;
}*/


/* FORMULARE */
div.success {
    background-color: #85C058;
    color: #666666;
}
div.error {
    background-color: #C30E21;
    color: #FFFFFF;
}
div.success, div.error {
    padding: 7px 7px 7px 10px;
    margin-bottom: 3px;
	clear: both;
}
form, form div {
	position: relative;
}
form .short {
	width: 31.33%;
	float: left;
}
form .half {
	width: 48%;
	float: left;
}
form .half:last-of-type {
	float: right;
}
form .medium {
	float: right;
	width: 64.67%;
}
form input:not([type="checkbox"]):not([type="radio"]), form select, form textarea {
	color: #262d33;
	padding: 10px 4px 4px;
	width: 100%;
}
form input:not([type="checkbox"]):not([type="radio"]) + label,
form textarea + label, form select + label {
	color: #333;
	display: block;
	height: 3.2rem;
	margin-top: -2.75rem;
	pointer-events: none;
	transition: .2s;
}
form textarea + label {
	height: 9.6rem;
	margin-top: -9.35rem;
}
form input[type="checkbox"] + label {
	float: left;
	margin-left: 30px;
}
form input:placeholder-shown + label,
form textarea:placeholder-shown + label,
form select.empty + label {
	font-size: 1em;
	padding-top: 10px;
	opacity: 1;
}
form label.lbl-chk,
form input + label,
form textarea + label,
form select + label,
form input:focus + label,
form textarea:focus + label {
	font-size: 0.7em;
	opacity: 0.8;
	padding: 0 5px;
}
form textarea {
	height: 9.1em;
}
main form input::-webkit-input-placeholder,
main form textarea::-webkit-input-placeholder {
	text-align: right;
}
main form input::-ms-input-placeholder,
main form textarea::-ms-input-placeholder {
	text-align: right;
}
main form input::-moz-placeholder,
main form textarea::-moz-input-placeholder {
	text-align: right;
}
main form input::placeholder,
main form textarea::placeholder {
	text-align: right;
}
form label.lbl-chk {
	display: block;
	font-size: 0.8em;
	line-height: 1.25;
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
}
form label.lbl-chk input {
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
}
form small.help {
	clear: both;
	display: block;
	line-height: 0.5;
	padding-bottom: 1em;
	text-align: right;
}
form div.send {
	text-align: right;
}


/* Startseite */
@media (min-width: 1025px) {
	.startseite::after {
		content: '';
		background: rgba(0, 0, 0, 0.9);
		height: 4.5em;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 5;
	}
	.startseite header {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
	}
	.startseite .banner {
		margin-top: -6.5rem;
	}
}
.startseite .banner .slide {
	height: auto;
	min-height: 100vh;
}
.startseite .banner .image img {
	min-height: 100vh;
}
.startseite .banner .inner {
	margin: 170px auto 70px;
}
.startseite main {
	z-index: 7;
}
.startseite .textblock {
	text-align: center;
}
.startseite .inner:first-child .textblock:first-child {
	font-size: 0.85em;
	position: relative;
	text-align: left;
}
.startseite .inner:first-child .textblock:first-child::before {
	content: '';
	background: linear-gradient(to top, #fff 0, #edf1f7 170px);
	position: absolute;
	top: 0;
	bottom: -170px;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	z-index: -1;
	pointer-events: none;
}
.startseite .textblock:first-child .row > div {
	padding: 2em 60px;
	position: relative;
	top: -50px;
}
.startseite .textblock:first-child .row > div::before {
	content: '';
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 30px;
	right: 30px;
	top: 0;
	bottom: 0;
	pointer-events: none;
	z-index: -1;
}
.startseite .textblock:first-child .row > div > p:first-child > strong {
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 500;
	color: #000;
}
.startseite .textblock:first-child .icon-phone {
	font-size: 1.4rem;
	font-weight: 600;
}
.startseite .textblock:first-child .icon-phone::before {
	margin-right: 0.5em;
}
.startseite .fahrzeuge .slick-list {
	margin: 0 40px;
}
.startseite .fahrzeuge button.slick-arrow {
	top: 100px;
}
.startseite .slick-dots li {
	padding: 0;
}
.startseite .slick-dots li::before {
	display: none;
}
.startseite .fahrzeuge .fahrzeug .titel {
	background: #ff0028;
	color: #fff;
	height: auto;
	font-size: 0.7em;
	margin: 0;
	padding: 5px 10px;
	text-align: left;
}
.startseite ol {
	color: #333;
	counter-reset: counterStartseite;
	font-size: 0;
	overflow: auto;
	position: relative;
	white-space: nowrap;
}
.startseite ol::before {
	content: '';
	background: #547dd1;
	position: absolute;
	left: 105px;
	top: 1.25rem;
	height: 2px;
	margin-top: -1px;
	width: 1050px;
}
.startseite ol li {
	counter-increment: counterStartseite;
	display: inline-block;
	font-size: 0.85rem;
	padding: 0 1em;
	text-align: center;
	vertical-align: top;
	white-space: normal;
	width: 210px;
}
.startseite ol li::before {
	content: counter(counterStartseite);
	background: #547dd1;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2.5em;
	margin: 0 auto 10px;
	width: 2.5em;
}
.startseite ol strong {
	font-weight: 600;
}
.startseite .parallax {
	color: #fff;
	margin: 3em 0;
	padding: 3em 0;
}
	

/* Fahrzeuge */
ul.filter li {
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	font-size: 0.9em;
	margin-right: 10px;
	padding: 5px 10px;
}
ul.filter li span {
	color: #888;
}
ul.filter li a {
	margin-left: 0.5em;
}
.bestandsfahrzeuge .fahrzeuge {
	padding-right: 15px;
	margin-top: 1em;
}
.fahrzeuge a.fahrzeug {
	color: currentColor;
	padding: 15px;
}
.fahrzeuge a.fahrzeug:hover {
	background: rgba(0,0,0,0.1);
}
.fahrzeuge a.fahrzeug .img img {
	background: #eee;
	width: 100%;
}
.fahrzeuge a.fahrzeug .img:empty {
	padding-bottom: 56.25%;
}
.fahrzeuge a.fahrzeug .titel {
	height: 3.5em;
	margin: 0.5em 0;
	overflow: hidden;
}
.fahrzeuge a.fahrzeug .preis {
	background: #ff0028;
	color: #fff;
	float: right;
	font-weight: 600;
	line-height: 1;
	margin-left: 1em;
	padding: 0.8em 0.8em 0.8em 0.3em;
	position: relative;
}
.fahrzeuge a.fahrzeug .preis::before {
	content: '';
	background: #ff0028;
	position: absolute;
	bottom: 0;
	left: -0.4em;
	top: 0;
	transform: skew(-15deg);
	width: 0.8em;
}
.fahrzeuge a.fahrzeug .details {
	border-top: 1px solid #aaa;
	color: #888;
	font-size: 0.9em;
	padding-top: 0.5em;
}
.fahrzeuge a.fahrzeug .details > span {
	display: inline-block;
	margin-right: 20px;
}
.fahrzeuge a.fahrzeug .details > span::before {
	float: right;
	margin-left: 5px;
}
.bestandsfahrzeuge .fahrzeugsuche {
	align-self: flex-start;
	box-shadow: 0 0 15px rgba(0,0,0,0.25);
	padding-bottom: 15px;
}
.bestandsfahrzeuge .fahrzeugsuche h2 {
	background: #232628;
	color: #fff;
	margin: 0 -15px 15px;
	padding: 25px 15px;
}
.bestandsfahrzeuge .fahrzeugsuche h2::before {
	margin-right: 20px;
}
.bestandsfahrzeuge .fahrzeugsuche form .form-elements {
	columns: 255px;
}
.bestandsfahrzeuge .fahrzeugsuche select {
	background-color: #eceff3;
	border-color: #eceff3;
	font-size: 1.1em;
	margin: 8px 0;
	padding: 5px 4px;
}
/* Fahrzeugdetails */
.bestandsfahrzeuge > main {
	margin-top: 1.5em;
}
.bestandsfahrzeuge .fahrzeugdetails h1 {
	margin-top: 0;
}
.bestandsfahrzeuge .fahrzeugdetails .galerie {
	margin-bottom: 3em;
}
.bestandsfahrzeuge .fahrzeugdetails h3 {
	margin-top: 2em;
}
.bestandsfahrzeuge .fahrzeugdetails ul {
	columns: 180px;
}
main ul li::before {
	content: '\2713';
	color: #547dd1;
	padding-right: 5px;
	vertical-align: middle;
}
.bestandsfahrzeuge .kurzdaten .preis {
	background: #ff0028;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}
.bestandsfahrzeuge .kurzdaten strong {
	font-size: 1.4em;
}
.bestandsfahrzeuge .kurzdaten .mwst {
	background: #000;
	color: #fff;
	padding: 5px 0;
	text-align: center;
}
.bestandsfahrzeuge .kurzdaten dl {
	background: #f0f2f5;
	overflow: hidden;
	padding: 10px 20px 20px;
}
.bestandsfahrzeuge .kurzdaten dt,
.bestandsfahrzeuge .kurzdaten dd {
	border-bottom: 1px solid #ccc;
	float: left;
	padding: 10px 0 5px;
	width: 50%;
}
.bestandsfahrzeuge .kurzdaten dt:last-of-type,
.bestandsfahrzeuge .kurzdaten dd:last-of-type {
	border: 0;
}
.bestandsfahrzeuge .kurzdaten dt {
	color: #666;
}
.bestandsfahrzeuge .kurzdaten dd {
	font-weight: 600;
}
.bestandsfahrzeuge .kurzdaten a.button {
	margin-top: 1em;
	text-align: center;
	width: 100%;
}
.galerie {
	overflow: hidden;
}
.galerie .img-big {
	min-height: 200px;
	position: relative;
	width: 100%;
}
.galerie .loading {
	display: inline-block;
	width: 20vh;
	height: 20vh;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.galerie .loading:after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	margin: 1px;
	border-radius: 50%;
	border: 5px solid #fff;
	border-color: #666 transparent #666 transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.galerie .thumbs img {
	background: #232628;
	cursor: pointer;
	padding: 0.05%;
}
.galerie .thumbs img.active {
	background: #ff0028;
}
.galerie .thumbs button.slick-arrow {
	background: none rgba(0,0,0,0.8);
	height: 100%;
	opacity: 0.1;
	transition: 0.2s;
}
.galerie .thumbs:hover button.slick-arrow {
	opacity: 1;
}
.galerie .thumbs button.slick-arrow::before {
	font-size: 1rem;
}
.galerie .thumbs button.slick-prev::before {
	content: '\2770';
}
.galerie .thumbs button.slick-next::before {
	content: '\2771';
}


/* Autoleasing ohne Schufa */
.textblock h2,
.textblock h3,
.textblock h4,
.textblock ul {
	margin: 1.5em 0 0.5em;
}
.autoleasing-ohne-schufa ul {
	margin-bottom: 1.5em;
}
.autoleasing-ohne-schufa .parallax {
	color: #fff;
	margin: 5em 0;
	padding: 4em 0;
}
.autoleasing-ohne-schufa .parallax .row > div {
	line-height: 1.4;
	margin: 1em 0;
	padding-left: 6em;
	position: relative;
}
.autoleasing-ohne-schufa .parallax .row i {
	font-size: 2.5rem;
	padding: 8px 5px 4px;
	position: absolute;
	left: 15px;
	top: 0.8rem;
	text-align: center;
}
.autoleasing-ohne-schufa .parallax .row > div:nth-child(1) i { background-color: #f2b930; }
.autoleasing-ohne-schufa .parallax .row > div:nth-child(2) i { background-color: #6c98e1; }
.autoleasing-ohne-schufa .parallax .row > div:nth-child(3) i { background-color: #d93ad0; }
.autoleasing-ohne-schufa .parallax .row > div:nth-child(4) i { background-color: #ef2929; }
.autoleasing-ohne-schufa .parallax .row > div:nth-child(5) i { background-color: #44a8b4; }
.autoleasing-ohne-schufa .parallax .row > div:nth-child(6) i { background-color: #17c655; }
.autoleasing-ohne-schufa .textblock .kontakt {
	background: #277c46;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	font-size: 2.2em;
	justify-content: space-between;
	padding: 15px 25px;
}
.autoleasing-ohne-schufa .textblock .kontakt div {
	margin-bottom: 0.2em;
	padding-left: 2em;
	position: relative;
}
.autoleasing-ohne-schufa .textblock .kontakt i {
	font-size: 1.5em;
	position: absolute;
	left: 0;
}


/* Über uns */
.ueber-uns main > .inner .row {
	margin-bottom: 4em;
}
.ueber-uns main > .inner .row:nth-child(2n) > div:first-child {
	order: 2;
}
.ueber-uns main .row img {
	margin-bottom: 2em;
}
.ueber-uns main .row h1,
.ueber-uns main .row h2:first-child {
	margin-top: 0;
}
.ueber-uns main i {
	color: #ff0028;
	font-size: 1.2em;
	margin-right: 20px;
	vertical-align: middle;
}
.ueber-uns main h3 {
	margin-top: 1.5em;
}
.ueber-uns .parallax {
	color: #ff0028;
	padding: 3em 0 2em;
	text-transform: uppercase;
	margin-bottom: 4em;
}
.ueber-uns .parallax h2 {
	color: #fff;
	font-size: 2.5em;
	text-align: center;
	margin: 0 0 2em;
}
.ueber-uns .parallax .row > div {
	margin: 1em 0;
}
.ueber-uns .parallax p {
	line-height: 1;
	margin: 0;
}
.ueber-uns .parallax i {
	float: left;
	font-size: 3.5em;
}
.ueber-uns .parallax .counter {
	display: block;
	font-size: 2em;
	font-weight: 700;
}
.ueber-uns .parallax .counter::after {
	content: '\A';
}


/* Kostenlose Leasinganfrage */
.row.fahrzeugdaten {
	margin: 1em -15px;
}
.row.fahrzeugdaten dt {
	font-weight: 500;
	float: left;
	padding: 5px 0;
	width: 150px;
}
.row.fahrzeugdaten dd {
	display: block;
	padding: 5px 0;
}


/* Blog */
.blog .entry {
	border: 1px solid #ccc;
	margin-bottom: 2em;
	padding: 25px;
	overflow: hidden;
}
.blog .entry h1,
.blog .entry h2:first-child {
	margin-top: 0;
}
.blog .entry a.fw {
	float: right;
}
.blog .blog-banner {
	margin-bottom: 3em;
	padding-bottom: 30%;
	position: relative;
}
.blog .blog-banner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 30%;
	background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
	z-index: 2;
}
.blog-banner h1 {
	text-shadow: 0 0 10px #000;
}
.blog .blog-banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;;
}
.blog .blog-banner .inner {
	color: #fff;
	position: absolute;
	bottom: 15%;
	left: 0;
	right: 0;
	z-index: 3;
}
.blog .img-l {
	float: left;
	margin: 0 1.5em 1.5em 0;
}
.blog .img-r {
	float: right;
	margin: 0 0 1.5em 1.5em;
}


body.faq dl.tabs.dropdown dt,
body.faq dl.tabs.dropdown dt.active {
	background: none transparent;
	border-top: 1px solid #888;
	border-radius: 0;
	box-shadow: none;
	margin-top: 1em;
	padding: 1em 0 0 3em;
	position: relative;
}
body.faq dl.tabs.dropdown dt:first-child {
	border: 0;
	margin: 0;
}
body.faq dl.tabs.dropdown dt::after {
	content: '\229e';
	position: absolute;
	left: 0;
	top: 0.7em;
	font-size: 1.5em;
	line-height: 1.2;
	margin-right: 1em;
	transition: .3s;
}
body.faq dl.tabs.dropdown dt.active::after {
	content: '\229f';
	border-color: currentColor;
	color: #ff0028;
	font-size: 1.5em;
	padding: 0;
}
body.faq dl.tabs.dropdown dd {
	background: none transparent;
	padding: 0;
	transition: .3s;
}
body.faq dl.tabs.dropdown dt.active + dd {
	padding: 1em 0 0;
}
body.faq dl.tabs.dropdown dd::before, body.faq dl.tabs.dropdown dd::after {
	display: none;
}

/* Google Map */
#gmap_canvas {
	height: 800px;
	margin-top: 0;
	max-height: 90vh;
}


/* Impressum */
.impressum .os {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.impressum .os > * {
	flex: 1 1 auto;
}
.impressum .os .anschrift {
	margin: 2em;
}


/* Tabs */
.js dl.tabs {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	background-color: #ccc;
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
}
.js dl.tabs dt {
	display: block;
	-webkit-order: 1;
	padding: 6px 10px;
	margin: 10px 0 0 10px;
	background: linear-gradient(to bottom, #f6f6f6 0px, #d6d6d6 100%);
	border-top: 1px solid transparent;
	border-radius: 4px 4px 0 0;
	margin-right: 2px;
	cursor: pointer;
	font-size: 1.2em;
	font-weight: bold;
	box-shadow: 0 0 1px #666;
	align-self: flex-end;
}
.js dl.tabs dt:hover,
.js dl.tabs dt.active {
	color: #000;
}
.js dl.tabs dt.active {
	background: #f6f6f6;
	border-top-color: #0097d7;
	box-shadow: 0 0 3px #666;
	padding-top: 8px;
	padding-bottom: 8px;
}
.js dl.tabs dd {
	background-color: #f6f6f6;
	display: block;
	width: 100%;
	-webkit-order: 2;
	order: 2;
	display: none;
	padding: 1.2em 1.5em;
}
.js dl.tabs dt.active + dd {
	display: block;
	display: inherit; /* Für die Browser, die es verstehen */
}

.js dl.tabs.dropdown {
	display: block;
	background-color: transparent;
	border: 0;
}
.js dl.tabs.dropdown dt {
	margin: 4px 0 0;
	z-index: 1;
	border: 0;
}
.js dl.tabs.dropdown dt::after {
	content: "\25BC";
	float: right;
	font-size: .8em;
}
.js dl.tabs.dropdown dd {
	display: block;
	max-height: 0;
	padding: 0 1.5em;
	overflow: hidden;
	transition: max-height .8s cubic-bezier(0, 1, 0, 1) -.3s;
}
.js dl.tabs.dropdown dd::before,
.js dl.tabs.dropdown dd::after {
	content: ' ';
	display: block;
	height: 1.5em;
}
.js dl.tabs.dropdown dt.active {
	box-shadow: none;
	background: linear-gradient(to bottom, #f6f6f6 0px, #d6d6d6 100%);
	padding: 6px 10px;
}
.js dl.tabs.dropdown dt.active::after {
	content: "\25B6";
	font-size: .7em;
	padding: 2px 1px;
}
.js dl.tabs.dropdown dt.active + dd {
	max-height: 9999px;
	transition: max-height .8s cubic-bezier(0.5, 0, 1, 0) 0s;
}

@media screen and (min-width: 1025px) {
	header .logo {
		max-width: 18%;
	}
	.ueber-uns .parallax i::before {
		width: auto;
	}
}

@media screen and (max-width: 1024px) {
	.col-1 { width: 16.66%; }
	.col-1-5 { width: 25%; }
	.col-2, .md2 { width: 33.33%; }
	.col-3, .col-4, .col-5, .col-2-5, .md3 { width: 50%; }
	.md4 { width: 66.66%; }
	.md5 { width: 83.33%; }
	.col-6, .col-7, .col-8, .col-9, .col-10,
	.col-11, .col-3-5, .col-4-5, .md6 { width: 100%; }
	
	.lg1 { width: 12.5%; }
	.lg2 { width: 25%; }
	.lg3 { width: 37.5%; }
	.lg4 { width: 50%; }
	.lg5 { width: 62.5%; }
	.lg6 { width: 75%; }
	.lg7 { width: 87.5%; }
	.lg8 { width: 100%; }

	.desktop {
		display: none;
	}
	.mobile {
		display: initial !important;
	}
	header {
		height: 60px;
		top: 0;
	}
	header .logo img {
		height: 45px;
		position: relative;
		top: 8px;
		width: auto;
		z-index: 99;
	}
	
	.startseite .banner .slide {
		min-height: calc(100vh - 60px);
	}
	.startseite .banner .text {
		padding-top: 10vh;
	}
	
	.main-nav {
		padding: 0;
		position: absolute;
		top: 0;
		left: auto;
		right: 0;
		width: 60px;
		height: 60px;
		z-index: 99;
	}
	.main-nav .btn-toggle-menu {
		background: transparent none;
		border: 0 none;
		cursor: pointer;
		padding: 8px;
		text-align: center;
	}
	.main-nav .btn-toggle-menu::after {
		display: none; /* hover-Effekt ausschalten */
	}
	.main-nav .btn-toggle-menu svg {
		width: 45px;
	}
	.main-nav .btn-toggle-menu rect {
		fill: #fff;
		transform-origin: 25px 25px;
		transition: .4s;
	}
	.main-nav .btn-toggle-menu.active rect#top {
		transform: rotate(45deg) translateY(14px);
	}
	.main-nav .btn-toggle-menu.active rect#middle {
		opacity: 0;
	}
	.main-nav .btn-toggle-menu.active rect#bottom {
		transform: rotate(-45deg) translateY(-14px);
	}
	header .top {
		display: none;
	}
	header .bottom > [class^="icon-"] {
		margin: 0 30px 0 0;
	}
	.main-nav > ul.nav {
		border: 0;
		background-color: rgba(0,0,0,0.98);
		display: block;
		height: 0;
		max-height: none;
		margin: 0;
		overflow: hidden;
		padding-top: 0;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		-webkit-transition: .4s;
		transition: .4s;
	}
	.nav-open .main-nav > ul.nav {
		height: calc(100% - 60px);
		overflow: auto;
		overscroll-behavior: contain;
		padding-top: 10vh;
	}
	.nav-open .main-nav > ul.nav::after {
		content: '';
		height: 1px;
		width: 1px;
		position: absolute;
		bottom: -2px;
	}
	.main-nav ul.nav > li {
		border: 0 none;
		display: list-item;
		float: none;
		font-size: 1.5em;
		margin: 0;
		padding: 0;
		position: relative;
		transform: scale(0.2);
		transition: 0.4s;
		width: 100%;
		z-index: 2;
	}
	.nav-open .main-nav ul.nav > li {
		transform: scale(1);
	}
	.main-nav ul.nav > li a {
		border: 0 none;
		color: #fff;
		position: relative;
		text-align: center;
		transition: .4s;
	}
	.main-nav ul.nav li button.mobile {
		font-size: 1em;
		line-height: 2.2em;
		padding: 15px 0;
		position: absolute;
		top: 0;
		right: 0;
		width: 3.5em;
	}
	.main-nav ul.nav a {
		display: block;
		padding: 5px 0;
	}
	.nav-open .main-nav ul.nav a {
		padding: 15px 0;
	}
	.main-nav ul.nav a.active,
	.main-nav ul.nav a:hover {
		background: rgba(255, 255, 255, 0.3);
	}
	.main-nav ul.nav > li.top {
		display: list-item;
	}
	.main-nav ul.nav .startseite a {
		background: none transparent;
		text-indent: 0;
	}
	.main-nav .nav ul {
		background: rgba(255,255,255,0.2);
		float: none;
		font-size: 1.3rem;
		opacity: 1;
		position: relative;
		text-align: center;
		transition: max-height .8s cubic-bezier(0, 1, 0, 1) -.3s;
		top: 0;
		width: auto;
	}
	.main-nav .nav li:hover ul {
		max-height: 0;
	}
	.main-nav .nav li.open ul {
		max-height: 9999px;
		transition: max-height .8s cubic-bezier(0.5, 0, 1, 0) 0s;
	}
	.main-nav .link-home {
		display: list-item;
	}
	.main-nav ul.nav ul a {
		color: #fff;
		font-size: 0.9em;
	}
	.main-nav .nav ul li a {
		padding: 8px 10px;
	}
	
	.ueber-uns .parallax .col-3 {
		width: 50%;
	}
	.ueber-uns .parallax i::before {
		width: 1.8em;
	}
	
	.startseite .textblock:first-child .row > div {
		flex-grow: 1;
		margin-bottom: 30px;
		padding: 2em 30px;
	}
	.startseite .textblock:first-child .row > div::before {
		left: 15px;
		right: 15px;
	}
}

@media screen and (max-width: 800px) {
	.md1 { width: 16.66%; }
	.md2 { width: 33.33%; }
	.md3 { width: 50%; }
	.md4 { width: 66.66%; }
	.md5 { width: 83.33%; }
	.md6 { width: 100%; }
	
	nav .line {
		display: none;
	}
	
	.startseite .box:first-child {
		width: 100%;
	}
	.startseite .info .block {
		margin: auto;
		width: 80%;
	}
	
	.bestandsfahrzeuge .fahrzeugliste {
		order: 2;
	}
	.bestandsfahrzeuge .fahrzeugsuche {
		margin-top: 2em;
	}
	.js.bestandsfahrzeuge .fahrzeugsuche h2 {
		cursor: pointer;
	}
	.js.bestandsfahrzeuge .fahrzeugsuche h2::after {
		content: '\25BC';
		float: right;
	}
	.js.bestandsfahrzeuge .fahrzeugsuche.aktiv h2::after {
		content: '\25B2';
	}
	.js.bestandsfahrzeuge .fahrzeugsuche form {
		max-height: 0;
		overflow: hidden;
		transition: max-height .8s cubic-bezier(0, 1, 0, 1) -.1s;
	}
	.js.bestandsfahrzeuge .fahrzeugsuche.aktiv form {
		max-height: 9999px;
		transition: max-height .8s cubic-bezier(0.5, 0, 1, 0) 0s;
	}
	
	.news article.entry .row > * {
		width: 100%;
	}
	.news article.entry img {
		margin-bottom: 2em;
		width: 100%;
	}
}

@media screen and (max-width: 650px) {
	.md2 { width: 50%; }
	.md3 { width: 100%; }
	
	.sm1 { width: 25%; }
	.sm2 { width: 50%; }
	.sm3 { width: 75%; }
	.sm4 { width: 100%; }
	
	h1 { font-size: 2.0em; }
	h2 { font-size: 1.5em; }
	h3 { font-size: 1.15em; }
	
	header .bottom > .icon-location,
	header .bottom .social {
		display: none;
	}
	
	.ueber-uns .parallax .col-3 {
		text-align: center;
		width: 100%;
	}
	.ueber-uns .parallax i {
		display: block;
		float: none;
		margin: 0;
	}
	
	.blog .blog-banner {
		padding-bottom: 13em;
	}
	
	form div.send.sm4 button {
		width: 100%;
	}
	
	.startseite .textblock:first-child .row > div {
		top: 0;
		margin: 30px 0 0;
	}
}

@media screen and (max-width: 550px) {
	body > footer .nav {
		clear: both;
		padding-top: 1em;
	}
	
	.startseite .info .block {
		padding: 2em;
		width: auto;
	}
	.bestandsfahrzeuge .fahrzeugsuche form {
		columns: unset;
	}
	.autoleasing-ohne-schufa .textblock .kontakt {
		font-size: 1.5em;
	}
}

@media screen and (max-width: 500px) {
	.col-1 { width: 50%; }
	.col-2, .col-3, .col-4, .col-5 { width: 100%; }
	.col-1-5 { width: 50%; }
	.col-2-5 { width: 100%; }
	
	button, .button {
		padding: 10px 15px;
	}
	button.ghost, .button.ghost {
		padding: 8px 13px;
	}
	
	body > footer {
		text-align: center;
	}
}

@media screen and (max-width: 370px) {
	header .logo img {
		height: 40px;
	}
	
	.startseite .info .block h2 {
		font-size: 1.9em;
	}
	.news article.entry {
		border-width: 1px 0 0;
		margin: 0;
		padding: 25px 0;
	}
	.kostenlose-leasinganfrage .send button {
		font-size: 1rem;
	}
}

@media screen and (max-height: 500px) {
	body > header.small {
		transition: .2s;
	}
	body > header.small.hidden {
		top: -60px;
	}
}


/* Icomoon-Icons */
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  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;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	width: 1.2em;
}
button[class^="icon-"]:before, button[class*=" icon-"]:before,
.button[class^="icon-"]:before, .button[class*=" icon-"]:before {
	margin-right: 0.3em;
	vertical-align: middle;
}
.icon-whatsapp:before {
  content: "\e905";
}
.icon-facebook:before {
  content: "\e90a";
}
.icon-instagram:before {
  content: "\e908";
}
.icon-xing:before {
  content: "\e903";
}
.icon-twitter:before {
  content: "\e904";
}
.icon-youtube:before {
  content: "\e903";
}
.icon-calculator:before {
	content: "\1f5a9";
}
.icon-clipboard:before {
	content: "\1f4cb";
}
.icon-contact:before {
	content: "\1f4de";
}
.icon-envelope:before {
	content: "\2709";
}
.icon-globe:before {
	content: "\1f310";
}
.icon-key:before {
	content: "\1f511";
}
.icon-label:before {
	content: "\1f3f7";
}
.icon-location:before {
	content: "\1f4cd";
}
.icon-marker:before {
	content: "\1f4cd";
}
.icon-phone:before {
	content: "\1f4de";
}
.icon-phone-circle:before {
	content: "\2706";
}
.icon-pin:before {
	content: "\1f4cd";
}
.icon-question-circle:before {
	content: "\2370";
}
.icon-road:before {
	content: "\e900";
}
.icon-search:before {
	content: "\1f50d";
}
.icon-speech-bubbles:before {
	content: "\1f5ea";
}
.icon-speedometer:before {
	content: "\238b";
}
.icon-steering-wheel:before {
	content: "\2389";
}
.icon-suitcase:before {
	content: "\1f4bc";
}
.icon-task:before {
	content: "\1f5cf";
}
.icon-users:before {
	content: "\1f465";
}


/* Modales Fenster */
.modal {
	background-color: #666;
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1200;
	display: none;
}
.modal:target {
	display: block;
}
.modal > .btn-close {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.modal-content {
	background-color: #FFFFFF;
	background-color: rgba(255, 255, 255, 0.95);
	width: 1200px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
	max-height: 87%;
	overflow: auto;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.modal-content::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: -2px;
	width: 1px;
}
.modal-content .btn-close.top {
	color: currentColor;
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 32px;
	text-decoration: none;
}
.modal-msg:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.modal button {
	margin-top: 1em;
}
.modal-template {
	display: none;
}