@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'HelveticaNeue-Regular';
    font-size: 1.6rem;
    background-color: #3F3F3F;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/*****************for mobile menu*************/
#menu.mm-menu {
    background: #121212;
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}
#menu.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
    color: #fff;
}
#menu .mm-listview>li:not(.mm-divider):after{
	background-color: rgba(255,255,255,0.1);
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/*****************header****************/
/****header-area*****/
.header-area {
    padding: 8px 0;
    background: #3F3F3F;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    /* background-color: #2c2c2c; */
}
.header-logo img {
    width: 111px;
}
.header-logo {
    text-align: center;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-left {
    display: flex;
    align-items: center;
    justify-content: end;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}
.header-nav li a {
    padding: 0;
    color: #fff;
    font-family: 'HelveticaNeue-Regular';
    font-size: 1.6rem;
    line-height: normal;
	padding: 16px;
	border: 1px solid transparent;
    position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-nav li::after {
    display: none;
}
.header-nav li a:hover {
    border-color:#fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-right .header-nav li:first-child {
    padding-left: 0;
}
/***mobile-header*****/
.mobile-header {
    padding: 20px 0;
}
.mobile-header .header-menu {
    position: fixed;
    /* top: 145px; */
    top: 97px;
    background-color: #3F3F3F;
    height: 100vh;
    width: 100%;
    left: 0;
    padding: 40px;
    clip-path: inset(0 0 100% 0);
    transition: all 0.5s;
}
.mobile-header .header-menu.mob-menu-active {
	clip-path: inset(0 0 0 0);
}
.mobile-header .header-menu ul {
	margin: 0;
	text-align: center;
	padding: 0;
	list-style: none;
}
.mobile-header .header-menu li a {
	padding: 0;
    color: #fff;
    font-family: 'HelveticaNeue-Regular';
    font-size: 1.6rem;
    line-height: normal;
    padding: 16px 20px;
    border: 1px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-header .header-menu li a:hover {
    border-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-header .header-menu li a {
	color: #fff;
}
.mobile-header .header-menu li::after {
	display: none;
}
.mobile-header .header-menu li.active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.menu-bar {
    position: relative;
    max-width: 35px;
    width: 100%;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 32px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar.active  div {
    transform: scale(0);
}
.menu-bar.active:before,
.menu-bar.active:after {
    margin-top: 6px;
    margin-bottom: 6px;
}
.menu-bar.active:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-bar.active:after {
    transform: translateY(-10px) rotate(-135deg);
}
.header-area.header-area-mob-active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header-menu-dropdown img {
    width: 11px;
    margin-left: 3px;
}
.header-menu-dropdown ul {
    display: block;
    background: #FFF;
    padding: 35px 15px 12px;
    margin-top: 28px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    left: 50%;
    transform: translateX(-50%);
    min-width: 156px;
    top: 10px;
}
.header-menu-dropdown ul li {
    text-align: center;
    margin-bottom: 18px;
    padding-left: 0;
}
.header-menu-dropdown ul li a {
    font-size: 1.4rem;
    color: #3F3F3F;
}
.header-menu-dropdown ul.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-area {
    display: flex;
    column-gap: 20px;
    justify-content: end;
    align-items: center;
}
.mobile-contact-btn {
    padding: 10px 18px;
    border: 1px solid #fff;
}
.mobile-contact-btn a {
    font-size: 1.4rem;
}
.mobile-contact-btn a:hover {
    color: #fff;
}
.header-menu-dropdown > a {
    position: relative;
}
.header-menu-dropdown > a::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    content: '';
    width: 8px;
    height: 8px;
    background: url(../images/header-dropdown-arrow.svg) no-repeat center / 10px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-menu-dropdown li a {
    border: 0;
    padding: 0;
}
.header-menu-dropdown li:hover a {
    text-decoration: underline;
}
/*********************************home*********************************/
/****home-header-area****/
.home-header-area {
    background-color: transparent;
}
/****sticky_heaader****/
.sticky_heaader {
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 999;
}
.sticky_heaader ul a {
    color: #030304;
}
.sticky_heaader .menu-bar div, 
.sticky_heaader .menu-bar::after, 
.sticky_heaader .menu-bar::before {
    background-color: #030304;
}
.sticky_heaader .header-menu-dropdown img {
    filter: brightness(100) invert(1);
}
.sticky_heaader .header-nav li a:hover {
    border-color: #030304;
    background-color: transparent;
    opacity: 0.5;
}
.header-nav li.header-menu-dropdown > ul > li > a:hover {
    background-color: transparent;
    opacity: 0.5;
    text-decoration: none;
}
.sticky_heaader .header-menu-dropdown ul {
    background: #3F3F3F;
}
.sticky_heaader .header-menu-dropdown ul li {
    color: #fff;
}
.sticky_heaader .mobile-contact-btn {
    border-color: #030304;
}
.sticky_heaader .mobile-contact-btn a {
    color: #030304;
}
.sticky_heaader .header-menu-dropdown > a::after {
    background: url(../images/header-dropdown-black.svg) no-repeat center / 10px;
}
.sticky_heaader .header-menu-dropdown li a {
    color: #fff;
}
/********banner-sec*********/
.banner-sec {
	position: relative;
}
.banner-content {
	position: absolute;
	bottom: 58px;
    left: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.banner-video,.each-banner  {
	height: 882px;
	overflow: hidden;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
.banner-content-wrap {
	max-width: 896px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.banner-content h1 ul {
    display: inline-block;
    position: relative;
    height: 68px;
    overflow: hidden;
    /* padding: 0 10px; */
    margin: 0;
    list-style: none;
    flex-shrink: 0;
}
.banner-content h1 li {
    display: block;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    white-space: nowrap;
    font-style: normal;
    color: #fff;
    opacity: 0;
    font-family: 'HelveticaNeue-Regular';
    font-style: italic;
    font-size: 6.4rem;
    line-height: 72px;
    letter-spacing: 5.12px;
    text-transform: uppercase;
    padding-left: 0;
}
.banner-content h1 li.active_text {
    transform: translate(-50%, 0);
    opacity: 1;
}
.banner-content h1 li::after {
    display: none;
}
.banner-content h1 {
	margin-bottom: 35px;
}
/********product-sec*********/
.product-sec {
	background-color: #EFEFEF;
	position: relative;
	overflow: hidden;
	padding: 130px 0 77px;
}
.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.product-mobile-bg {
    display: none;
}
.product-area {
	position: relative;
	z-index: 1;
}
.product-title {
    margin-bottom: 92px;
}
.product-title h2 {
	color: #3F3F3F;
}
.product-title p {
    margin-bottom: 0;
    max-width: 600px;
    margin-right: 0;
    margin-left: auto;
}
.each-product-img {
	position: relative;
}
.product-plus {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}
.product-plus-icon {
    width: 85px;
    height: 85px;
    border: 1.5px solid #FFF;
    background: rgba(63, 63, 63, 0.15);
    backdrop-filter: blur(10px);
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-plus-icon img {
    width: 43px;
	transform: rotate(45deg);
}
.each-product-info {
	background-color: #EFEFEF;
	padding: 20px 23px 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info table {
    width: 100%;
}
.each-product-info h5 {
	color: #151515;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-product-info tr {
    display: flex;
    flex-wrap: wrap;
    column-gap: 29px;
    row-gap: 6px;
	position: relative;
	padding: 15px 0;
}
.each-product-info tr::after {
	position: absolute;
	left: -11px;
	top: 0;
	width: calc(100% + 21px);
	height: 2px;
	background-color: rgba(21, 21, 21, 0.10);
	content: "";
} 
.each-product-info td {
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
	color: #151515;
	padding-left: 9px;
}
.each-product-info td::after {
	content: "";
    height: 4px;
    width: 4px;
    position: absolute;
	top: 12px;
    left: 0;
    background-color: #151515;
    transform: rotate(45deg);
}
.each-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding-top: 15px;
}
.each-product-price h4 {
	color: #151515;
}
.each-product-price p {
	margin-bottom: 0;
    color: #151515;
}
.each-product {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-product:hover .each-product-info {
	background-color: #FFF;
}
.product-btn {
	text-align: center;
	margin-top: 80px;
}
.each-product-price {
    position: relative;
}
.each-product-price::before {
    position: absolute;
	left: -11px;
	top: 0;
	width: calc(100% + 21px);
	height: 2px;
	background-color: rgba(21, 21, 21, 0.10);
	content: "";
}
/*****************cursor****************/
.cursor{
    opacity: 0;
}
.hover{
    position: fixed;
    z-index: 9;
    top: 50%;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 99;
}
.hover::after{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-repeat: no-repeat;
    background-position: center 42px;
    background-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ok{
    opacity: 1;
    visibility: visible;
}
/********service-sec*********/
.service-sec {
    padding: 64px 0 16px;
	position: relative;
	overflow: hidden;
    background-color: #2C2C2C;
}
.service-bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.service-mobile-bg {
    display: none;
}
.service-area {
	position: relative;
	z-index: 1;
}
.service-title {
    text-align: center;
    max-width: 827px;
    margin: 0 auto;
    margin-bottom: 96px;
}
.service-title p {
	margin: 34px 0 22px;
}
.service-title .common-btn:hover {
    background-color: #2c2c2c;
    border-color: #2c2c2c;
}
.service-title .common-btn:after{ 
    background-color: #2c2c2c;
    border-color: #2c2c2c; 
}
.service-slider {
	width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
.service-slider-wrap {
	margin: 0 -29%;
}
.each-service-slider {
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 34px;
    z-index: 1;
    width: 100%;
    max-width: 550px;
}
.each-service-txt h3 {
    margin-bottom: 17px;
}
.each-service-txt p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}
/********about-sec*********/
.about-sec {
    background-color: #EFEFEF;
    padding-top: 128px;
    position: relative;
	overflow: hidden;
}
.about-bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.mobile-about-bg {
    display: none;
}
.about-area {
	position: relative;
	z-index: 1;
}
.about-area .col-lg-3 {
    width: 30%;
}
.about-area .col-lg-5 {
    width: 38%;
}
.about-area .col-lg-4 {
    width: 32%;
}
.about-left h2 {
    color: #3F3F3F;
    margin-bottom: 40px;
}
.about-left p {
    margin-bottom: 42px;
}
.about-mid {
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 30vw;
    margin-top: 76px;
    display: flex;
    position: relative;
    right: 7.5vw;
    transform: rotate(3deg);
}
.about-mid-container {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
}
.about-mid-wrapper {
    width: 2px;
    height: 33vw;
    overflow: hidden;
    transform: rotate(42deg);
    left: -2px;
    position: relative;
}
.about-mid-first {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 30.09vw;
    height: 24vw;
    display: flex;
    position: absolute;
    inset: 0%;
    left: -4px;
}
.about-mid-first h5 {
    color: #404040;
    line-height: normal;
    font-size: 12vw;
}
.about-mid-mask {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: -7.6vw 0% 0% -5.6vw;
    overflow: hidden;
    transform: rotate(42deg);
}
.about {
    position: relative;
    top: 2.7vw;
    left: 9.5vw;
    transform: rotate(-45deg);
}
.about-mid-second {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 31vw;
    height: 37vw;
    display: flex;
    position: absolute;
    inset: 0%;
}
.about-mid-second h5 {
    color: #404040;
    line-height: normal;
    letter-spacing: 16px;
    font-size: 12vw;
}
.about-mid-mask.is-second {
    top: 6.4vw;
    left: 16.3vw;
}
.years-line {
    background-image: linear-gradient(rgba(44, 44, 44, 0), rgba(44, 44, 44, 1), rgba(44, 44, 44, 0));
    width: 100%;
    height: calc(100% - 11%);
}
.about.is-second {
    top: -4.9vw;
    left: -8.8vw;
}
.about-txt {
    position: absolute;
    top: 4.5vw;
    left: 8vw;
    transform: rotate(-3deg);
}
.about-txt h3 {
    font-family: 'HelveticaNeue-Regular';
    font-style: italic;
    color: #2C2C2C;
}
.about-txt h3 strong {
    font-family: 'HelveticaNeue-Medium';
}
.each-about-right-info h3 {
    color: #2C2C2C;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}
.each-about-right-info h3::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #151515;
    transform: rotate(45deg) translateY(-50%);
}
.each-about-right-info p {
    margin-bottom: 0;
}
.about-img {
    margin-top: -269px;
    position: relative;
}
.about-img::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #EFEFEF 0%, rgba(239, 239, 239, 0.90) 25.48%, rgba(239, 239, 239, 0.00) 85%);
}
.about-right{
    padding-left: 30px;
}
/********rating-sec*********/
.rating-sec {
    background-color: #2C2C2C;
}
.rating-img {
    margin-top: -140px;
    position: relative;
} 
/****footer-area****/
.footer-area {
    overflow: hidden;
    background-color: #2C2C2C;
}
.footer-top {
	padding: 88px 0;
	overflow-y: clip;
	position: relative;
}
.footer-top::after {
    content: "";
    height: 1.5px;
    width: 98vw;
	margin-left: -49vw;
	left: 50%;
    bottom: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.10);
}
.footer-logo img {
    width: 111px;
}
.footer-info {
    max-width: 1073px;
    width: 100%;
    margin-left: auto;
}
.each-footer-info h4 {
    font-family: 'HelveticaNeue-Regular';
    margin-bottom: 17px;
    line-height: 40px;
    text-transform: none;
}
.each-footer-info ul {
    padding: 0;
    margin: 0;
}
.each-footer-info li {
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}
.each-footer-info li::after {
    display: none;
}
.each-footer-info li a,
.each-footer-info p a {
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-footer-info li a:hover,
.each-footer-info p a:hover {
    color: rgba(255, 255, 255, 0.50);
}
.each-footer-info p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}
.each-footer-info h3 {
	margin-bottom: 16px;
}
.each-footer-info h5 {
    font-family: 'LibreFranklin-Medium';
    margin-top: 11px;
}
.each-footer-info h5 .txt-btn {
    font-family: 'LibreFranklin-Medium';
}
.each-footer-info table {
    margin-bottom: 50px;
}
.each-footer-info td {
    color: #fff;
    line-height: 24px;
    letter-spacing: 0.32px;
    padding-right: 17px;
}
.each-footer-info td:nth-child(even) {
    text-align: right;
    padding-right: 0;
} 
.footer-btm {
    padding: 18px 0 24px;
}
.footer-privacy p {
	margin-bottom: 0;
}
.footer-privacy p a {
    color: #fff;
    transition: all 0.5s;
}
.footer-privacy p a:hover {
    color: rgba(255, 255, 255, 0.50);
}
.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
    gap: 12px;
}
.footer-social li {
    padding: 0;
}
.footer-social li::after {
    display: none;
}
.footer-social li a {
    height: 31px;
    width: 31px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.footer-social li a:hover {
    border-color: rgba(255, 255, 255, 0.50);
}
.footer-social li a:hover img {
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
}
.mob-adres {
    display: none;
}
/**********************************diensten-list**********************************/
/****inner-banner****/
.inner-banner {
    position: relative;
}
.inner-banner-content {
    position: absolute;
    bottom: 66px;
    left: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.inner-banner-content-wrap {
    max-width: 896px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.inner-banner .each-banner {
    height: 600px;
}
/****list-sec****/
.list-sec {
    padding: 124px 0 260px;
    background-color: #EFEFEF;
    position: relative;
}
.list-bg {
    position: absolute;
    top: 0;
    pointer-events: none;
}
.each-list,
.each-list-img {
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list-img {
    overflow: hidden;
}
.each-list-img img{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.list-plus {
    height: 86px;
    width: 86px;
    border: 1.5px solid #FFF;
    background: rgba(63, 63, 63, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.list-plus img {
    width: 43px !important;
    transform: rotate(45deg) !important;
}
.list-plus-part {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}
.each-list-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 34px 30px;
}
.each-list-info h4 {
    letter-spacing: 2.56px;
    font-family: 'HelveticaNeue-Medium';
}
.each-list-info p {
    margin-bottom: 0;
    margin-top: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 475px;
    width: 100%;
}
.each-list:hover .list-plus {
    opacity: 1;
}
.each-list:hover .each-list-img img {
    transform: scale(1.1);
}
.list-sec .col-lg-6 {
    padding: 0 10px;
}
.list-sec .row {
    margin: 0 -10px;
    row-gap: 20px;
}
/**********************************aanbod-dtl**********************************/
/****aanbod-dtl-header-area****/
.aanbod-dtl-header-area {
    background-color: #2c2c2c;
}
.aanbod-dtl-header-area.sticky_heaader {
    background: #fff;
}
/****back-btn****/
.back-btn {
    background-color: #2c2c2c;
    position: relative;
    z-index: 1;
}
.back-btn-part {
    position: relative;
    top: 183px;
}
.back-btn-part .common-btn.with-icon {
    padding-left: 47px;
    padding-right: 23px;
}
.back-btn-part .common-btn.with-icon::before {
    right: 0;
    left: 24px;
    background-image: url(../images/prev.svg);
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.back-btn-part .common-btn:hover::before {
    background-image: url(../images/prev.svg);
    filter: brightness(1);
    -webkit-filter: brightness(1);
}
.back-btn-part .common-btn:hover {
    border-color: #2c2c2c;
    background-color: #2c2c2c;
}
/***dtl-top-slider-sec***/
.dtl-top-slider-sec {
    padding: 190px 0 0;
    background-color: #2c2c2c;
    position: relative;
    overflow: hidden;
}
.dtl-top-slider-wrap {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
.aanbod-dtl-top-bg {
    position: absolute;
    top: 0;
    pointer-events: none;
}
.aanbod-dtl-top-mobile-bg {
    position: absolute;
    top: 0;
    pointer-events: none;
    display: none;
}
.dtl-top-slider {
    position: relative;
}
.dtl-top-slider .each-top-slide {
    transform: scale(0.92);
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.dtl-top-slider .each-top-slide::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(54, 54, 54, 0.50) 0%, rgba(54, 54, 54, 0.50) 100%);
}
.dtl-top-slider .swiper-slide-active .each-top-slide {
    transform: scale(1);
}
.dtl-top-slider .swiper-slide-active .each-top-slide::after {
    opacity: 0;
}
.dtl-top-slider .common-arrow {
    top: 43%;
}
.dtl-top-slider .swiper-button-next {
    right: 22.5%;
}
.dtl-top-slider .swiper-button-prev {
    left: 22.5%;
}
.dtl-top-slider-content ul {
    display: flex;
    column-gap: 30px;
    justify-content: center;
    margin-top: 37px;
}
.dtl-top-slider-content li {
    padding-left: 0;
}
.dtl-top-slider-content li::after {
    display: none;
}
.dtl-top-slider-content li h6 {
    color: rgba(255, 255, 255, 0.6);
    line-height: 24px;
    letter-spacing: 0.32px;
    font-size: 1.6rem;
    position: relative;
    padding-left: 15px;
}
.dtl-top-slider-content li h6::after {
    content: "";
    height: 4px;
    width: 4px;
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #fff;
    transform: rotate(45deg);
}
.dtl-top-slider-content li p {
    margin-bottom: 0;
    margin-left: 16px;
}
.dtl-top-slider-price h6 {
    color: #FFF;
    line-height: 24px;
    letter-spacing: 0.32px;
    font-size: 1.6rem;
}
.dtl-top-slider-price {
    max-width: 300px;
    margin-right: 0;
    margin-left: auto;
    display: table;
}
.dtl-top-slider-title h2 {
    height: 1lh;
    overflow: hidden;
}
.dtl-top-slider-title p {
    margin-bottom: 0;
}
.dtl-top-slider-sec hr {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    height: 2px;
    margin-top: 23px;
    margin-bottom: 0;
}
.dtl-top-slider-content {
    margin-top: 25px;
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 100px 0 65px;
    position: relative;
    background-color: #2c2c2c;
}
.kenmerken-tab-area .col-lg-5 {
    width: 40%;
}
.kenmerken-tab-area .col-lg-7 {
    width: 60%;
}
.tab-btn .common-btn {
    padding: 0;
    background-color: transparent;
    border: 0;
    color: #FFF;
    letter-spacing: 1.2px;
    font-size: 2.4rem;
    font-family: 'HelveticaNeue-Regular';
}
.tab-btn .common-btn::after {
    display: none;
}
ul.tabs li {
    line-height: normal;
    margin: 0;
    word-break: break-word;
    text-transform: none;
    cursor: pointer;
    max-width: max-content;
    display: inline-block;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    letter-spacing: 1.2px;
}
ul.tabs li.border-btn:hover {
    color: rgba(255, 255, 255, 0.5);
}
.dtl-tab-area {
    position: relative;
    z-index: 1;
}
.tab-btn .col-lg-7 {
    width: 60%;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 65px;
    margin-bottom: 45px;
    border: 0;
    row-gap: 20px;
}
.tab-area .col-lg-8 {
    width: 60%;
}
.tab-area .col-lg-4 {
    width: 40%;
}
.kenmerken-tab table {
    width: 100%;
}
.kenmerken-tab tr {
    display: flex;
    row-gap: 20px;
    column-gap: 20px;
    flex-wrap: wrap;
}
.kenmerken-tab tr:first-child {
    margin-bottom: 9px;
}
.kenmerken-tab td {
    padding: 30px 30px;
    width: 31%;
    border: 1px solid #EFEFEF;
    flex-shrink: 0;
    background: #EFEFEF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.kenmerken-tab td p {
    color: rgba(16, 24, 36, 0.5);
    margin-bottom: 0;
    font-family: 'HelveticaNeue-Medium';
    line-height: 20px;
    letter-spacing: 0.14px;
}
.kenmerken-tab h4 {
    font-family: 'HelveticaNeue-Regular';
    color: #101824;
    letter-spacing: 0.24px;
    margin-top: 63px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 90px;
    text-transform: none;
}
.kenmerken-tab td:hover {
    border-color: #363636;
    background: #363636;
}
.kenmerken-tab td:hover h4 {
    color: #fff;
}
.kenmerken-tab td:hover p {
    color: #fff;
}
.tab_content {
    display: none;
}
.tab_drawer_heading {
    display: none;
}
.kenmerken-tab {
    overflow: hidden;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}
.bullet-panel h5 {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-transform: none;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin: 24px 0 20px;
}
.dtl-tab-sec .bullet-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.6rem;
}
.dtl-tab-sec .bullet-panel li::after {
    background-size: 7px;
    position: absolute;
    top: 9px;
    left: 0;
    content: '';
    width: 5px;
    height: 5px;
    /* background-image: url(../images/bullet.svg); */
    background-repeat: no-repeat;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #fff;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    margin-top: 8px;
    margin-bottom: 25px;
    color: #fff;
}
.left-bg-block p {
    margin-bottom: 0;
    color: #3F3F3F;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
    text-transform: none;
    font-size: 2.2rem;
}
.tab-btm-btn {
    margin-top: 32px;
    text-align: center;
}
.tab-btm-btn .common-btn strong::after,
.tab-btm-btn-close .common-btn strong::after {
    display: none;
}
.kenmerken-tab-block-part {
    display: none;
}
.tab-btm-btn .common-btn {
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    text-transform: uppercase;
    padding-right: 20px;
    font-family: 'HelveticaNeue-Medium';
}
.tab-btm-btn .common-btn::before {
    display: none;
}
.tab-left-part {
    padding: 22px 27px 17px;
    background: #EFEFEF;
}
.tab-left-part.make_sticky {
    position: sticky;
    top: 135px;
    overflow-y: auto;
    overflow-x: hidden;
}
.tab-left-top {
    margin-bottom: 23px;
}
.tab-left-top .col-lg-10 {
    width: 89%;
}
.tab-left-top .col-lg-2 {
    width: 11%;
}
.tab-left-img img {
    width: 78px;
    height: 75px;
    border-radius: 64px;
    overflow: hidden;
    object-fit: cover;
    object-position: top;
}
.tab-left-info-part {
    display: flex;
    align-items: center;
}
.tab-left-info {
    padding-left: 23px;
}
.tab-left-info h4 {
    color: #060709;
    margin-bottom: 6px;
    font-family: 'HelveticaNeue-Medium';
    text-transform: none;
    line-height: 34px;
    letter-spacing: normal;
}
.tab-left-info p {
    margin-bottom: 0;
}
.tab-left-info p a {
    color: rgba(6, 7, 9, 0.8);
    font-family: 'HelveticaNeue-Medium';
    letter-spacing: 0.16px;
    line-height: 22px;
}
.tab-left-info p a:hover {
    color: #363636;
}
.share-btn {
    text-align: end;
}
.share-btn img {
    width: 17px;
    height: 17px;
    border-radius: 0;
}
.tab-left-btm ul {
    margin-bottom: 0;
    display: flex;
    column-gap: 30px;
    position: relative;
    padding: 23px 0;
}
.tab-left-btm ul::after,
.tab-left-btm ul::before {
    position: absolute;
    top: 0;
    left: -15%;
    width: 100vw;
    height: 1px;
    content: "";
    background-color: rgba(6, 7, 9, 0.1);
}
.tab-left-btm ul::before {
    top: auto;
    bottom: 0;
}
.tab-left-btm li {
    font-family: 'NotoSans-Regular';
    letter-spacing: normal;
    line-height: 24px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.tab-left-btm li em {
    color: rgba(6, 7, 9, 0.50);
    font-style: normal;
    line-height: 18px;
    font-family: 'HelveticaNeue-Medium';
}
.tab-left-btm li a {
    color: rgba(6, 7, 9, 0.50);
    font-style: normal;
    line-height: 18px;
    font-family: 'HelveticaNeue-Regular';
    padding-left: 8px;
}
.tab-left-btm li::after {
    display: none;
}
.tab-left-btm li a:hover {
    color: #363636;
}
.tab-left-btm img {
    width: 16px;
    margin-right: 10px;
    margin-bottom: 2px;
}
.tab-left-btn ul {
    display: flex;
    column-gap: 15px;
}
.tab-left-btn li {
    padding-left: 0;
}
.tab-left-btn li::after {
    display: none;
}
.tab-left-btn .common-btn {
    text-transform: uppercase;
    font-size: 1.4rem;
    background-color: transparent;
    border: 2px solid rgba(54, 54, 54, 0.10);
    line-height: 24px;
    letter-spacing: 0.7px;
    font-family: 'HelveticaNeue-Medium';
    color: #060709;
}
.tab-left-btn .common-btn:hover {
    color: #fff;
}
.tab-left-btn .common-btn.black-btn {
    background-color: #3F3F3F;
    border-color: #3F3F3F;
    color: #EFEFEF;
}
.tab-left-btn .common-btn.black-btn.with-icon:hover {
    border-color: #fff;
}
.tab-left-btn {
    margin-top: 22px;
}
/*****kenmarken-popup******/
.kenmarken-popup {
    display: none;
}
.kenmarken-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.kenmarken-popup-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(36, 36, 36, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    border-radius: 0;
    background-color: #fff;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #1B1B1E;
    box-shadow: 0px 0px 25px 0px rgba(rgba(63, 63, 63, 0.5));
    -webkit-box-shadow: 0px 0px 25px 0px rgba(rgba(63, 63, 63, 0.5));
    overflow: hidden;
}
.kenmarken-popup-close {
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #3f3f3f;
}
.kenmarken-popup-close img {
    width: 25px;
    filter: brightness(100) invert(1);
}
.kenmarken-popup-content {
    overflow-y: scroll;
    height: calc(100% - 116px);
    padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar  {
    background-color: #5B5A5E;
    width: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
    background-color: #999999;
}
.kenmerken-popup-model {
    padding-bottom: 30px;
    padding-right: 40px;
}
.kenmerken-popup-model h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3F3F3F;
    margin-bottom: 10px;
}
.kenmerken-popup-model p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmarken-popup-content h4 {
    margin-bottom: 16px;
    letter-spacing: normal;
    color: #3F3F3F;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 31px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    line-height: 24px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1.5px solid #D9D9D9;
    color: #3f3f3f;
}
.kenmarken-popup-content li:nth-child(even) {
    color: rgba(44, 44, 44, 0.57);
}
.kenmarken-popup-content li::after {
    display: none;
}
/****form-sec****/
.form-sec {
    background-color: #EFEFEF;
    padding: 160px 0 155px;
    position: relative;
}
.form-bg {
    position: absolute;
    top: 0;
    pointer-events: none;
}
.form-mobile-bg {
    position: absolute;
    top: 0;
    pointer-events: none;
    display: none;
}
.form-title, .form-img {
    padding-right: 28px;
}
.form-title h2 {
    color: #363636;
}
.form-title ul {
    display: flex;
    column-gap: 30px;
    margin: 28px 0;
}
.form-title li {
    padding-left: 0;
}
.form-title li::after {
    display: none;
}
.form-title li a {
    font-size: 1.6rem;
    color: #363636;
    font-family: 'HelveticaNeue-Regular';
}
.form-title li a:hover {
    text-decoration: underline;
}
.form-title li img {
    width: 13px;
    margin-right: 10px;
    margin-bottom: 3px;
}
.form-wrap {
    position: relative;
    z-index: 1;
}
.form-main-area .form-group {
    margin-bottom: 24px;
}
.form-main-area .form-styl {
    border: none;
    color: #363636;
    border: 1px solid rgba(63, 63, 63, 0.15);
    background-color: #E6E6E6;
    padding: 22px 23px;
    resize: none;
    font-family: 'HelveticaNeue-Regular';
    line-height: 24px;
    font-size: 1.6rem;
    letter-spacing: 0.32px;
    border-radius: 0;
}
.form-main-area .form-styl:focus::placeholder{
    color: #363636;
}
.form-main-area .form-style:-ms-input-placeholder {
    color: rgba(54, 54, 54, 0.5);
}
.form-main-area .form-styl::placeholder{
    color: rgba(54, 54, 54, 0.5);
}
.form-main-area .form-style:focus::placeholder {
    color: rgba(54, 54, 54, 0.5);
}
.form-main-area .form-styl:focus {
    color: #363636;
    border: 1px solid rgba(63, 63, 63, 0.5);
    box-shadow: none;
    background-color: #E6E6E6;
}
.form-main-area .form-styl.foto_upload,
.form-main-area .form-styl.photo_upload {
    color: rgba(54, 54, 54, 0.5);
}
.form-main-area .form-group textarea.form-control {
    height: 165px;
}
.form-main-area .form-btn {
    margin-top: 12px;
}
.no-car-top { 
    padding-bottom: 200px;
}
/****related-product-sec****/
.related-product-sec {
    background-color: #EFEFEF;
    padding-bottom: 240px;
    position: relative;
    overflow: hidden;
}
.related-product-sec .product-title {
    text-align: center;
    margin-bottom: 84px;
}
/**********************************diensten-dtl**********************************/
.diens-back-btn .back-btn-part {
    top: 210px;
}
.diens-back-btn {
    z-index: 2;
}
/****diens-top-sec****/
.diens-top-sec {
    padding: 157px 0 212px;
    background-color: #2C2C2C;
    position: relative;
}
.diens-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 7%);
    pointer-events: none;
}
.diens-top-bg img {
    height: 100%;
    object-fit: cover;
}
.diens-top-area {
    position: relative;
    z-index: 1;
}
.diens-top-info {
    width: 100%;
    max-width: 622px;
    margin-top: 102px;
    padding-right: 20px;
}
.diens-top-info h2 {
    margin-bottom: 27px;
}
.diens-top-info p {
    margin-bottom: 23px;
}
.diens-top-img {
    position: relative;
}
.diens-top-big-img {
    padding-right: 56px;
}
.diens-top-small-img {
    position: absolute;
    bottom: -90px;
    right: 0;
    max-width: 458px;
}
/****diens-mid-sec****/
.diens-mid-sec {
    padding-bottom: 125px;
    background-color: #2C2C2C;
}
.diens-mid-title {
    text-align: center;
    margin-bottom: 82px;
}
.diens-mid-sec table, 
.diens-mid-sec tbody {
    width: 100%;
    display: block;
}
.diens-mid-sec tr {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
.diens-mid-sec td {
    display: block;
    padding: 0;
    width: 29%;
}
.diens-mid-sec td h3 {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
}
.diens-mid-sec td h3::before {
    position: absolute;
    left: 0;
    top: 13px;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fff;
    transform: rotate(45deg);
}
.diens-mid-sec td p {
    margin-bottom: 0;
}
/****diens-service-sec****/
.diens-service-sec {
    padding-bottom: 264px;
	position: relative;
	overflow: hidden;
    background-color: #EFEFEF;
} 
.diens-service-title {
    text-align: center;
    margin-bottom: 84px;
}
.diens-service-title h2 {
    color: #2C2C2C;
}
.diens-service-slider {
	width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
.diens-service-slider-wrap {
	margin: 0 -20%;
}
/**********************************over-ons**********************************/
/****overons-about-sec****/
.overons-about-sec {
    padding: 124px 0 93px;
    background-color: #EFEFEF;
    position: relative;
    overflow: hidden;
}
.overons-about-bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.overons-about-area {
    position: relative;
    z-index: 1;
}
.overons-about-info {
    width: 100%;
    max-width: 659px;
}
.overons-about-info h2 {
    color: #363636;
    margin-bottom: 35px;
} 
.overons-about-info p {
    margin-bottom: 0;
}
.overons-about-right {
    position: relative;
}
.overons-about-img {
    max-width: 630px;
    width: 100%;
    margin-right: 0;
    margin-left: auto;
}
.overons-about-year {
    max-width: 288px;
    width: 100%;
    background-color: #363636;
    padding: 29px 32px;
    position: absolute;
    bottom: 34px;
    left: -47px;
}
.overons-about-year h2 {
    font-size: 8.5rem;
    line-height: 63px;
    margin-bottom: 5px;
}
.overons-about-year h2 strong {
    font-family: 'HelveticaNeue-Bold';
    font-style: normal;
}
.overons-about-year h4 {
    font-family: 'HelveticaNeue-Regular';
    color: #EFEFEF;
    font-style: italic;
    line-height: 40px;
    letter-spacing: 1.92px;
}
.overons-about-year h4 strong {
    font-weight: normal;
    font-family: 'HelveticaNeue-Medium';
}
/****overons-mid-sec****/
.overons-mid-sec {
    padding: 122px 0;
    height: 742px;
    position: relative;
    overflow: hidden;
}
.overons-mid-bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.overons-mid-area {
    position: relative;
    z-index: 1;
}
.overons-mid-title {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.overons-mid-title h2 {
    text-align: center;
}
.overons-mid-slider {
    padding-top: 256px;
}
.each-overons-mid-slider {
    position: relative;
}
.each-overons-mid-slider::after {
    position: absolute;
    left: -12%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 100%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.20);
}
.overons-mid-slider .swiper-slide:first-child .each-overons-mid-slider::after {
    display: none;
}
.each-overons-mid-slider h3 {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}
.each-overons-mid-slider h3::before {
    position: absolute;
    left: 3px;
    top: 14px;
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fff;
    transform: rotate(45deg);
}
/****overons-member-sec****/
.overons-member-sec {
    padding: 124px 0 300px;
    background-color: #EFEFEF;
    position: relative;
    overflow: hidden;
}
.overons-member-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}
.overons-member-wrap {
    padding: 0 130px;
    position: relative;
    z-index: 1;
}
.member-img {
    width: 100%;
    max-width: 561px;
}
.member-info {
    margin-left: -68px;
}
.member-info h2 {
    color: #363636;
    margin-bottom: 34px;
}
.member-info p {
    color: #363636;
    margin-bottom: 0;
}
/**********************************contact**********************************/
/****contact-banner****/
.map {
    height: 600px !important;
}
/****contact-info****/
.contact-info {
    background-color: #EFEFEF;
    padding-bottom: 235px;
    position: relative;
}
.contact-info-wrap {
    display: flex;
}
.each-contact-info {
    position: relative;
    padding: 0 100px;
}
.each-contact-info::after {
    content: '';
    background-color: rgba(44, 44, 44, 0.1);
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
}
.each-contact-info:nth-child(1) {
    padding-left: 0;
}
.each-contact-info:nth-child(4) {
    padding-right: 0;
}
.each-contact-info:nth-child(1)::after {
    display: none;
}
.each-contact-info h4 {
    font-family: 'HelveticaNeue-Regular';
    color: #2C2C2C;
    line-height: 40px;
    text-transform: none;
    margin-bottom: 10px;
}
.each-contact-info a {
    font-family: 'HelveticaNeue-Regular';
    color: #2C2C2C;
    color: #2C2C2C;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.each-contact-info a:hover {
    text-decoration: underline;
}
.each-contact-info td:first-child {
    padding-right: 22px;
}
/**********************************aanbod-list**********************************/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 202px 0 40px; 
    background-color: #2C2C2C;
}
.aanbod-filter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 75px);
    pointer-events: none;
}
.aanbod-filter-main {
    position: relative;
    z-index: 2;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.aanbod-filter-title {
    margin-bottom: 54px;
}
.aanbod-filter-area .row {
    justify-content: center;
    column-gap: 16px;
}
.filter-reset a {
    color: rgba(255, 255, 255, 0.50);
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #fff;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.aanbod-filter-area .select-style {
    width: 100%;
    height: 50px;
    color: #EFEFEF;
    padding: 0 45px 0 23px;
    background: url(../images/filter-arrow.svg) no-repeat 85% center / 19px;
    border: 1px solid rgba(239, 239, 239, 0.50);
    background-color: #363636;
    appearance: none;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-filter-area .select-style:hover,
.aanbod-filter-area .select-style.show {
    color: #363636;
    background: url(../images/filter-arrow-black.svg)  no-repeat 85% center/19px;
    border: 1px solid #EFEFEF;
    background-color: #EFEFEF;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'lama_sansmedium';
	background-color: #14181E;
}
.filter-content {
    display: none;
    background-color: #EFEFEF;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #EFEFEF;
    border-top: 0;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #363636;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'HelveticaNeue-Regular';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #363636;
    opacity: 0.65;
}
.aanbod-filter-sec .form-check-input{
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #363636;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #363636;
    border-color: #363636;
}
.auto-overview-tag {
    margin-right: 5px;
	margin-bottom: 10px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #363636;
    background-color: #EFEFEF;
    font-size: 1.4rem;
    border: 1px solid #EFEFEF;
}
.cross-btn {
    width: 9px;
    filter: brightness(100) invert(1);
}
.auto-overview-tag:hover {
	background-color: transparent;
    color: #fff;
}
.auto-overview-tag:hover .cross-btn {
    filter: brightness(0) invert(100);
} 
.aanbod-filter {
	margin-bottom: 18px;
	width: 20%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 95px;
    background-color: #3F3F3F;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0 5px;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #EFEFEF;
    border: 1px solid #EFEFEF;
    font-size: 1.6rem;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #F9F8F6;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #363636;
	border-radius: 100%;
	color: #EFEFEF;
    border: 1px solid #363636;
    margin-left: 12px;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn:hover .filter-count {
    background-color: #EFEFEF;
    color: #363636;
    border-color: #EFEFEF;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #EFEFEF;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #2C2C2C;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #EFEFEF;
}
.mobile-filter-close span img {
	width: 9px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.auto-overview-filter-result .common-btn {
	margin-top: 0;
	background-color: #EFEFEF;
	border: 1px solid #EFEFEF;
  	color: #2C2C2C;
	padding: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .common-btn:hover {
	background-color: transparent;
    color: #fff;
}
.auto-overview-filter-result .common-btn::after {
    display: none;
}
.cursor-pointer {
	cursor: pointer;
} 
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.aanbod-filter-area .col-lg-3 {
    width: 14%;
}
.sorteren_op-filter .cursor {
    opacity: 1;
}
.clear-filter-main {
    padding: 0 13%;
}
.mobile-show-filter .common-btn::after {
    display: none;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
    background-color: #2C2C2C; 
    padding-bottom: 264px;
}
.aanbod-product-area {
    position: relative;
    z-index: 1;
}
.aanbod-product-area .row {
    row-gap: 50px;
}
.aanbod-product-area .each-product-info {
    background-color: #2C2C2C;
}
.aanbod-product-area .each-product-info h5,
.aanbod-product-area .each-product-info td,
.aanbod-product-area .each-product-price h4,
.aanbod-product-area .each-product-price p {
    color: #FFF;
}
.aanbod-product-area .each-product-info tr::after, 
.aanbod-product-area .each-product-price::before {
    background-color: rgba(255, 255, 255, 0.10);
}
.aanbod-product-area .each-product-info td::after { 
    background-color: #fff;
}
.aanbod-product-area .each-product:hover .each-product-info h5,
.aanbod-product-area .each-product:hover .each-product-info td,
.aanbod-product-area .each-product:hover .each-product-price h4,
.aanbod-product-area .each-product:hover .each-product-price p{
    color: #151515;
}
.aanbod-product-area .each-product:hover .each-product-info td::after { 
    background-color: #151515;
}
.aanbod-product-area .each-product:hover .each-product-info tr::after, 
.aanbod-product-area .each-product:hover .each-product-price::before {
    background-color: rgba(21, 21, 21, 0.10);
}
/**********************************verkocht**********************************/
/****verkocht-title****/
.verkocht-title {
    padding: 206px 0 76px;
    background-color: #2C2C2C;
    position: relative;
}
.verkocht-title h2 {
    margin-bottom: 27px;
}
/****verkocht-product-sec****/
.verkocht-product-sec {
    padding-bottom: 250px;
}
.verkocht-product-sec .each-product-price {
    padding-bottom: 15px;
}
.verkocht-product-sec .each-product-price::after {
    position: absolute;
	left: -11px;
	bottom: 0;
	width: calc(100% + 21px);
	height: 2px;
	background-color: rgba(255, 255, 255, 0.10);
	content: "";
}
.verkocht-product-sec .each-product:hover .each-product-price::after {
    background-color: rgba(21, 21, 21, 0.10);
}
/**********************************verkoop**********************************/
.diens-top-sec h4 {
    font-family: 'HelveticaNeue-Medium';
    line-height: 24px;
    letter-spacing: 0.48px;
    text-transform: none;
    margin-bottom: 5px;
}
.diens-top-sec ul {
    padding-left: 9px;
}
.diens-top-sec li::after {
    height: 6px;
    width: 6px;
    top: 8px;
    border-radius: 100%;
}
/****verkoop-service-sec****/
.verkoop-service-slider .diens-service-slider-wrap {
    margin: 0;
}
.verkoop-service-slider .each-service-txt { 
    padding-left: 26px;
    padding-right: 26px;
}
.verkoop-service-slider .each-service-txt p { 
    max-width: 391px;
    width: 100%;
}
/**********************************bedankt**********************************/
/****bedankt-banner****/
.bedankt-banner .banner-content-wrap {
    max-width: 842px;
}
/**********************************popup**********************************/
.modal-area .modal-dialog {
    max-width: 1142px;
    margin: 10% auto 0;
}
.modal-area .modal {
	background: rgba(54, 54, 54, 0.50);
    backdrop-filter: blur(5px);
}
.modal-area .modal-content {
    border: 0;
    background: #EFEFEF;
    position: relative;
    padding-top: 50px; 
    padding-right: 63px;
    padding-bottom: 50px;
}
.pop-up-image {
    height: 100%;
}
.modal-area .popup-content {
    padding: 56px 38px 57px;
    background: #EFEFEF;
    overflow: hidden;
}
.modal-area .popup-content p{
    margin-bottom: 12px;
    width: 100%;
    color: #262B25;
}
.modal-area .popup-content p:last-child {
	margin-top: 11px;
	margin-bottom: 0;
}
.modal-area .popup-content h3 {
    color: #363636;
    margin: 12px 0 15px;
    width: 100%;
    font-family: 'HelveticaNeue-Bold';
}
.modal-area .popup-content h3 strong {
    font-family: 'HelveticaNeue-Regular';
    font-weight: normal;
    font-style: italic;
}
.modal-area .popup-content ul {
    list-style-type: disc;
    margin-bottom: 14px;
    padding-left: 12px;
}
.modal-area .popup-content li { 
    color: #363636;
    list-style-type: none;
}
.modal-content .col-lg-5 {
    width: 47%;
}
.modal-content .col-lg-7 {
	width: 53%;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
    overflow: hidden;
}
.close-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-img:hover {
	color: #fff;
}
.close-img img {
    width: 58px;
    height: 58px;
}
.popup-content li::after { 
    height: 6px;
    width: 6px; 
    top: 8px; 
    background-color: #363636;
    border-radius: 100%;
}
.popup-img-top {
    width: 44.5%;
    position: absolute;
    top: -10px;
    left: 44px;
} 
.popup-img-mid {
    width: 60%;
    margin-right: 0;
    margin-left: auto;
    position: relative;
}
.popup-img-btm {
    position: absolute;
    width: 44%;
    bottom: 3px;
    left: 77px;
}
.lfCQiA {
    display: none !important;
}
.eHNOaE, .lbinPJ {
    background-color: #363636 !important;
    border-radius: 0 !important;
}
.eWuazH {
    color: #fff !important;
}
.dLhUFN {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #363636 !important;
}
.privacy_section {
    padding: 130px 0 40px;
}
.privacy_section p {
    color: #fff;
    margin-bottom: 0;
}

/******style-for-developers*******/

/*******loader*****/
#loader_section{
    display:none;
    width:100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
  }
  #loader_section p{
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  #loader_section img{
    width: 100px;
    margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
      background: #000000;
      width: 100%;
      height: 50px;
      display: block;
      text-align: center;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer:hover {
      background: #202020;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
      height: 30px;
      padding-top: 14px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
      background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding: 4px 10px 6px 20px;
      color: #000;
      background-size: contain;
  }
  .star_icon{
      margin-bottom: 30px;
  }
  .star_icon h4{
      padding-bottom: 10px;
      text-transform: uppercase;
      padding-top: 15px;
      margin-bottom: 15px;
     /* color: #1c1c1c;*/
      border-bottom: 1px solid #fff;
      padding-bottom: 10px;
  }
  .star_icon p img{
      width: 15px;
      margin-top: -3px;
      margin-right: 5px;
  }
  .star_icon p{
      padding-bottom: 6px;
      word-break: break-word;
  }
  .photo_contnt li img{
      width: 15px;
      margin-left: 5px;
  }
  .star_icon h3 {
      margin: 40px 0 30px;
  }
  .aanbod-detail-tab-sec .tab-content .star_icon p {
      margin: 0;
  }
  .bullet-panel h3 {
      margin-bottom: 30px;
  }
  .cursor{
      cursor:pointer;
  }
  .aanbod-loader {
      width: 45px;
      height: 40px;
      background: linear-gradient(#555 calc(1*100%/6),#fff 0 calc(3*100%/6),#555 0),
                linear-gradient(#555 calc(2*100%/6),#fff 0 calc(4*100%/6),#555 0),
                linear-gradient(#555 calc(3*100%/6),#fff 0 calc(5*100%/6),#555 0);
      background-size: 10px 400%;
      background-repeat: no-repeat;
      animation: matrix 1s infinite linear;
    }
    @keyframes matrix {
      0% {
        background-position: 0% 100%, 50% 100%, 100% 100%
      }
    
      100% {
        background-position: 0% 0%, 50% 0%, 100% 0%
      }
    }
    .load_aanbod{
      justify-content: center;
      display: flex;
      column-gap: 30px;
      align-items: center;
      color: #fff;
    }
  
  
  .carpass-img {
      width: 115px;
  }
  
  .calsty {
      width: 100%;
      height: 700px;
  }
  
  @media(max-width: 991.98px) {
      .calsty {
          width: 100%;
          height: 1100px;
      }
  }




.header-nav li {
    padding-left: 0;
} 
.header-nav li a {
    padding: 16px 22px;
    padding-right: 30px;
}
.header-nav li a:hover {
    border-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #fff;
    color: #3F3F3F;
}
.header-menu-dropdown ul {
    top: 9px;
    left: 0;
    padding-top: 9px;
    padding-left: 6px;
    padding-right: 6px;
    transform: none;
    min-width: 100%;
}
.header-menu-dropdown ul li {
    text-align: start;
    margin-bottom: 9px;
}
.header-menu-dropdown ul li a {
    padding: 0;
    font-size: 1.2rem;
    color: rgba(63, 63, 63, 0.70) !important;
    letter-spacing: normal;
    border-bottom: 1px solid rgba(63, 63, 63, 0.70) !important;
    padding-bottom: 11px;
}
.header-menu-dropdown ul li:last-child {
    margin-bottom: 0;
}
.header-menu-dropdown ul li:last-child a {
    border-bottom: 0 !important;
    padding-bottom: 0;
} 
.header-menu-dropdown > a::after {
    right: 12px;
}
.header-nav li a:hover::after { 
    background: url(../images/header-dropdown-black.svg) no-repeat center / 10px;
}
.header-nav li.header-menu-dropdown li a:hover { 
    border-color: rgba(63, 63, 63, 0.70) !important;
    color: rgba(63, 63, 63, 1) !important;
    opacity: 1 !important;
}
.header-nav li:hover a {
    border-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #fff;
    color: #3F3F3F;
}
.header-nav li:hover a::after { 
    background: url(../images/header-dropdown-black.svg) no-repeat center / 10px;
}

.widget-btn-area{
	bottom: 2rem;
  	left: 3rem;
  	z-index: 99;
}
.widget-btn{
	border-radius: 10px;
  	background: #3f3f3f;
	box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
  	padding: 1.3rem 2.5rem;
  	font-size: 1.7rem;
  	font-family: 'HelveticaNeue-Bold';
  	cursor: pointer;
  	color: #fff;
}	
.widget-btn span:after, .widget-mobile span:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	right: -.5rem;
	content: '';
	width: 1rem;
	height: 1rem;
	background: url(../images/next-white.svg) no-repeat center/ contain;
}
.widget-content{
	background: #1c1c1c;
	padding: 4.5rem;
  	-webkit-box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
	box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
  	border-radius: 20px;
  	width: 51rem;
  	display: none;
}
.arw-rotate{
	margin-top: -2.5rem;
  	margin-bottom: 1rem;
  	transform: rotate(-90deg);
	cursor:pointer;
}
.widget-content h4, .widget-content h5{
	text-transform: unset;
	color: #fff;
	letter-spacing: normal;
}
.widget-content h4{
  	font-size: 2.4rem;
}
.widget-content h5{
	font-family: 'HelveticaNeue-Regular';
	font-size: 1.7rem;
	margin: 1.5rem 0 5.4rem;
}
.widget-content h5 span{
	text-decoration: underline;
	color: rgba(255,255,255,0.65);
}
.widget-content button, .widget-mobile button{
	border-radius: 5px;
	color: #fff;
	border: 2px solid #3f3f3f;
  	background: #3f3f3f;
	padding: 1.2rem 2rem;
	font-size: 1.7rem;
  	font-family: 'HelveticaNeue-Bold';
	margin-right: .5rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	cursor: pointer;
}
.widget-content button:hover, .widget-mobile button:hover{
	background: #fff !important;
	border-color: #fff !important;
	color: #3f3f3f !important;
}