@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
    color: #fff;
    font-family: 'HelveticaNeue-Light';
    font-size: 1.6rem;
    background-color: #141414;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/*****text-reveal******/
.text-reveal h2, 
.text-reveal h3, 
.text-reveal h4, 
.text-reveal h5, 
.text-reveal h6, 
.text-reveal p {
    position: relative;
    transition: bottom 0.6s ease, opacity 0.6s ease;
}
.text-reveal.is-visible h2, 
.text-reveal.is-visible h3, 
.text-reveal.is-visible h4, 
.text-reveal.is-visible h5, 
.text-reveal.is-visible h6, 
.text-reveal.is-visible p {
    bottom: 0;
    opacity: 1;
}
/****text-cut-animation*****/
.text-cut h1,
.text-cut h2,
.text-cut h3,
.text-cut h4,
.text-cut h5,
.text-cut h6,
.text-cut p {
    display: inline-block;
}
.text-cut span {
    display: inline-block;
    overflow: hidden;
}
.text-cut span em {
    display: block;
    position: relative;
    font-style: normal;
    transform: translateY(100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
/****header-area***/
.header-area {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.header-area.header-hide {
    transform: translateY(-10px);
    opacity: 0;
}
.header-left {
    padding: 12px 46px;
    border-radius: 10px;
    background-color: #1C1C1C;
    width: 77%;
    border: 1px solid transparent;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.header-right {
    padding: 12px 46px;
    border-radius: 10px;
    background-color: #1C1C1C;
    width: 22%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.header-right::after {
    content: "";
    border-radius: 30px;
    background-color: #F70D1A;
    width: 25px;
    height: 6px;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    position: absolute;
}
.header-area.header-scrolled .header-left,
.header-area.header-scrolled .header-right {
    border-color: #565656;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.header-logo img {
    width: 235px;
    position: relative;
    z-index: 99;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    gap: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-nav li {
    margin: 0;
    padding: 0;
}
.header-nav li::after {
    display: none;
}
.header-nav li a {
    color: #fff;
    text-align: center;
    font-family: 'HelveticaNeue-Medium';
    font-size: 1.6rem;
    letter-spacing: 0.8px;
    padding: 5px 6px;
    border-radius: 3px;
    overflow: hidden;
}
.header-nav li a:hover {
    background-color: #565656;
}
/****hamburger****/
.hamburger {
    min-width: 75px;
    height: 45px;
    margin-left: auto;
    border-radius: 5px;
    background-color: #565656;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.menu-bar {
    position: relative;
    max-width: 30px;
    width: 100%;
    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: 30px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div {
    width: 80%;
}
.menu-bar::after {
    width: 60%;
}
.hamburger.active .menu-bar div {
    transform: scale(0);
    width: 100%;
}
.hamburger.active .menu-bar:before {
    transform: translateY(6px) rotate(135deg);
    width: 100%;
}
.hamburger.active .menu-bar:after {
    transform: translateY(-8px) rotate(-135deg);
    width: 100%;
}
/****mega-menu****/
.mega-menu {
    border-radius: 10px;
    background-color: #1C1C1C;
    padding: 13px;
    clip-path: inset(0 0 100% 0);
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    position: relative;
    top: -78px;
    z-index: 1;
    pointer-events: none;
    max-height: 0;
}
.mega-menu::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 65px;
    top: 0;
    left: 0;
    background-color: #1C1C1C;
}
.mega-menu.mega-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
    max-height: 100%;
}
.mega-menu .container {
    padding: 0;
    height: 66vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.mega-menu .container::-webkit-scrollbar {
    width: 10px;
    border-radius: 3px;
    background-color: #252525;
    display: none;
}
.mega-menu .container::-webkit-scrollbar-thumb {
    background-color: #2c2c2c;
    border-radius: 3px;
}
.mega-menu-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-bg {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.54);
    backdrop-filter: blur(2.5px);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bg.menu-bg-active {
    opacity: 1;
    pointer-events: all;
}
.mega-menu-logo {
    padding-left: 46px;
}
.mega-menu-logo img {
    /* width: 100px; */
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
    display: none;
}
.mega-menu-active .mega-menu-logo img {
    width: 235px;
}
.mega-menu-nav {
    max-width: 390px;
    width: 100%;
    margin-left: 17%;
}
.mega-menu-nav ul  {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 10px;
}
.mega-menu-nav li {
    color: #FFF9F9;
    font-family: 'HelveticaNeue-Medium';
    font-size: 2.4rem;
    line-height: normal;
    letter-spacing: 1.2px;
    padding: 0;
    width: 48%;
}
.mega-menu-nav li::after {
    display: none;
}
.mega-menu-nav li a {
    color: #FFF9F9;
}
.mega-menu-nav li a:hover {
    color: #FFF9F9;
    text-decoration: underline;
    text-underline-position: under;
}
.mega-menu-mid {
    margin: 60px 0 60px;
}
.mega-menu-info h2 {
    margin-bottom: 10px;
    display: none;
}
.mega-menu-info .col-lg-3 {
    width: 29%;
}   
.mega-menu-info .col-lg-6 {
    width: 42%;
}   
.each-mega-menu-info {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #141414;
    height: 100%;
}
.each-mega-menu-info::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #141414;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-mega-menu-info-text {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 1;
    padding: 10px;
}
.each-mega-menu-info-text h3 {
    position: relative;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-mega-menu-info-text h3::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    background-image: url(../images/menu-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-mega-menu-info-img {
    height: 100%;
}
.each-mega-menu-info-img img {
    height: 100%;
    object-fit: cover;
}
.each-mega-menu-info:hover::after {
    background-color: rgba(247, 13, 26, 0.75);
}
.each-mega-menu-info:hover .each-mega-menu-info-text h3 {
    padding-right: 37px;
}
.each-mega-menu-info:hover .each-mega-menu-info-text h3::after {
    opacity: 1;
}
.mega-menu-contact {
    border-radius: 10px;
    background-color: #141414;
    padding: 35px;
    height: 100%;
}
.mega-menu-contact p {
    margin: 14px 0 26px;
}
.mega-menu-contact .common-btn {
    max-width: 314px;
    width: 100%;
}
/*****fix-side-bar****/
.fix-side-bar {
    position: fixed;
    right: 30px;
   /* top: 50%;*/
    bottom: 3%;
    z-index: 98;
}
.fix-side-bar ul {
    display: flex;
    gap: 24px;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.fix-side-bar li {
    padding: 0;
    margin: 0;
}
.fix-side-bar li::after {
    display: none;
}
.fix-side-bar li a {
    background-color: #E2E2E2;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-side-bar li a.fix-wp {
    background-color: #25D366;
}
/********banner-sec*********/
.banner-sec {
	position: relative;
}
.banner-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, #141414 99.45%);
    z-index: 1;
}
.banner-content {
	position: absolute;
	bottom: 100px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-content h1 {
    margin-bottom: 24px;
}
.banner-content .common-btn {
    margin: 0 12px;
}
.banner-video,.each-banner  {
	height: 800px;
	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: 1300px;
    width: 100%;
    margin: 0 auto;
}
/***********usp-marquee**************/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 82px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 82px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
    color: #fff;
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.04);
    font-family: 'HelveticaNeue-Light';
    font-size: 1.8rem;
    line-height: normal;
    letter-spacing: 0.9px;
    padding-left: 26px;
}
.usp-marquee-wrap li::after {
	top: 3px;
    background-color: #F70D1A;
    border: 1px solid rgba(255, 255, 255, 0.04);
    height: 14px;
    width: 14px;
}
/****product-sec***/
.product-sec {
    padding: 140px 0 100px;
    position: relative;
    overflow-x: hidden;
}
.sec-mark {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.sec-mark img {
    height: 100%;
    object-fit: cover;
}
.product-heading {
    margin-bottom: 80px;
}
.each-product-img {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-img img {
    height: 100%;
    object-fit: cover;
}
.product-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.product-img .swiper-slide {
    height: auto;
}
.product-img .swiper-slide-next .each-product-img {
    height: calc(100% - 130px);
}
.product-info {
    max-width: 331px;
    width: 100%;
    position: relative;
}
.product-info::after {
    content: "";
    height: calc(100% + 20%);
    width: calc(100% + 50%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 774px;
    background: rgba(20, 20, 20, 0.70);
    filter: blur(18px);
}
.each-product-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-info p {
    color: rgba(255, 255, 255, 0.70);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2lh;
}
.each-product-info h4 {
    color: #F70D1A;
    font-family: 'HelveticaNeue-Bold';
}
.each-product-info h4 strong {
    color: rgba(255, 255, 255, 0.70);
    font-weight: normal;
    letter-spacing: 0.8px;
    font-family: 'HelveticaNeue-Light';
    font-size: 1.6rem;
}
.each-product-info table {
    width: 100%;
    margin: 11px 0 54px;
}
.each-product-info tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.each-product-info td {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'HelveticaNeue-Light';
    font-size: 1.6rem;
    line-height: normal;
    letter-spacing: 0.8px;
    width: 50%;
    vertical-align: top;
    padding: 16px 0 10px;
}
.each-product-info td:nth-child(even) {
    color: #fff;
    font-family: 'HelveticaNeue-Medium';
}
/***product-btn***/
.product-btn {
    max-width: 227px;
    width: 100%;
    margin: 0 15% 0 auto;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}
.product-btn .common-btn {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.product-control {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-control .common-arrow {
    top: 0;
    margin: 0;
    position: initial;
    width: 50%;
    border: 0;
    border-radius: 0;
}
/****service-sec*****/
.service-sec {
    padding: 100px 0;
    background-color: #1C1C1C;
    position: relative;
}
.service-sec .sec-mark {
    z-index: 0;
}
.service-sec .container {
    position: relative;
    z-index: 1;
}
.service-heading {
    max-width: 680px;
    width: 100%;
    margin: 0 auto 180px;
}
.service-heading p {
    margin: 24px 0 50px;
}
.each-service {
    max-width: 620px;
    width: 100%;
}
.each-service .common-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.each-service-img {
    margin: 12px 0 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.each-service p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-service:hover .common-arrow {
    opacity: 1;
}
.service-main .col-lg-6:nth-child(even) .each-service {
    margin-left: auto;
    margin-top: 215px;
}
.service-main {
    position: relative;
    z-index: 1;
}
/****werplaats-sec****/
.werplaats-sec {
    padding: 20px 0;
    overflow-x: hidden;
    position: relative;
}
/* .werplaats-sec::after {
    content: "";
    height: 100%;
    width: 40%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #141414 73.04%, rgba(20, 20, 20, 0.00) 100%);
} */
.werkplaats-heading-wrap {
    position: relative;
    z-index: 1;
}
.werkplaats-heading h2 {
    margin-bottom: 40px;
}
.werkplaats-marquee-img {
    height: 100%;
    position: relative;
    cursor: pointer;
}
.werkplaats-marquee-img img {
    height: 100%;
    object-fit: cover;
}
.werkplaats-heading {
    position: relative;
    z-index: 1;
}
.werkplaats-heading-wrap::before {
    content: "";
    height: calc(100% + 14px);
    width: calc(100% + 40%);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #141414 73.04%, rgba(20, 20, 20, 0.00) 100%);
    z-index: 0;
}
.werkplaats-marquee-img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(20, 20, 20, 0.4);
    height: 100%;
    width: 100%;
}
.werkplaats-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 20px;
}
/* .werkplaats-marquee ul {
	display: flex;
	gap: 20px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.werkplaats-marquee li {
	white-space: nowrap;
    position: relative;
    height: 195px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}
.werkplaats-marquee li::after {
    display: none;
}
.werkplaats-marquee-text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    top: 50%;
    transform: translateY(-50%);
}
.werkplaats-marquee li .common-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.werkplaats-marquee-text h3{
    word-wrap: normal;
    white-space: normal;
}
.werkplaats-marquee li:hover .common-arrow {
    opacity: 1;
}
.werkplaats-marquee li:hover .werkplaats-marquee-text {
    opacity: 0;
} */
.werkplaats-marquee-part {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    z-index: 0;
    position: relative;
}
.each-marquee-part {
    white-space: nowrap;
    position: relative;
    height: 195px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}
.each-marquee-part::after {
    display: none;
}
.werkplaats-marquee-text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    top: 50%;
    transform: translateY(-50%);
}
.each-marquee-part .common-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.werkplaats-marquee-text h3 {
    word-wrap: normal;
    white-space: normal;
    /* word-break: break-word; */
    font-size: 2.9rem;
    letter-spacing: normal;
}
.each-marquee-part:hover .common-arrow {
    opacity: 1;
}
.each-marquee-part:hover .werkplaats-marquee-text {
    opacity: 0;
}
.werkplaats-marquee .swiper-wrapper {
    transition-timing-function: linear!important;
} 
/****review-sec****/
.review-sec {
    padding: 130px 0;
}
.review-gap-remove {
    padding-top: 0;
}
/**about-sec***/
.about-sec {
    padding: 200px 0 300px;
    position: relative;
    overflow-x: clip;
}
.about-sec .sec-mark {
    height: 45%;
}
.about-heading {
    max-width: 634px;
    width: 100%;
    margin: 0 auto 80px;
}
.about-heading p {
    margin: 24px 0 60px;
}
.each-about-img {
    overflow: hidden;
    border-radius: 10px;
    display: table;
    margin: 0 auto;
}
.each-about-img:nth-child(1) {
    width: 37%;
}
.each-about-img:nth-child(2) {
    width: 35%;
    margin-right: 4%;
    margin-top: -8%;
}
.each-about-img:nth-child(3) {
    width: 33%;
    margin-left: 7%;
    margin-top: -8%;
}
.each-about-img:nth-child(4) {
    width: 18%;
    margin-left: 33%;
    margin-top: -9%;
}
.about-ribbon {
    overflow: hidden;
    transform: rotate(350deg);
    bottom: 10%;
    width: calc(100% + 10%);
    left: -5%;
    position: absolute;
    z-index: -1;
}
.about-ribbon-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}
/****footer-area****/
.footer-area {
    position: relative;
    background-color: #1C1C1C;
    overflow-x: hidden;
}
.footer-area .sec-mark {
    z-index: 0;
}
.footer-area .container {
    position: relative;
    z-index: 1;
}
.footer-top {
    padding: 87px 0 22px;
}
.footer-logo img {
    width: 374px;
}
.footer-info {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 890px;
    width: 100%;
    margin-left: auto;
}
.each-footer-info h4 {
    margin-bottom: 30px;
}
.each-footer-info p {
    margin-bottom: 0;
}
.each-footer-info td:nth-child(odd) {
    padding-right: 34px;
}
.footer-mid {
    margin-top: 145px;
}
.footer-credit ul {
    display: flex;
    align-items: center;
    column-gap: 50px;
    margin: 0;
}
.footer-credit li {
    padding: 0;
    margin: 0;
}
.footer-credit li::after {
    display: none;
}
.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
    margin: 0;
}
.footer-social li {
    padding: 0;
}
.footer-social li::after {
    display: none;
}
.footer-social li img {
    opacity: 0.6;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-social li img:hover {
    opacity: 1;
}
.footer-policy p {
    margin-bottom: 0;
}
.footer-btm {
    position: relative;
    padding: 50px 0;
}
.footer-btm::after {
    content: "";
    height: 100%;
    width:100vw;
	margin-left:-50vw;
	left:50%;
	position:absolute;
    background-color: #141414;
    top: 0;
    z-index: -1;
}
.footer-sponcer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}
.footer-sponcer li {
    padding: 0;
    margin: 0;
}
.footer-sponcer li::after {
    display: none;
}
.footer-sponcer li img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(10%) saturate(0%) hue-rotate(75deg) brightness(91%) contrast(95%);
    -webkit-filter: brightness(0) saturate(100%) invert(32%) sepia(10%) saturate(0%) hue-rotate(75deg) brightness(91%) contrast(95%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-sponcer li img:hover {
    filter: none;
    -webkit-filter: none;
}
.footer-sponcer li:last-child img {
    width: 71px;
}
.footer-mob-sponcer ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-mob-sponcer li {
    padding: 0;
}
.footer-mob-sponcer li::after {
    display: none;
}
/*==================================diensten-list page start=======================================*/
/****inner-banner-sec****/
.inner-banner-sec {
    position: relative;
}
.inner-banner-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, #141414 99.45%);
}
.inner-banner-text {
    position: absolute;
    top: 60%;
    width: 100%;
    left: 0;
    z-index: 1;
}
.inner-banner-img {
    height: 100%;
}
.inner-banner-img img {
    height: 100%;
    object-fit: cover;
}
/****service-list-sec****/
.service-list-sec {
    padding-top: 140px;
    position: relative;
}
.service-list-sec .each-service-img {
    margin: 0;
}
.service-list-sec .each-service {
    max-width: 100%;
}
.service-list-sec .each-service h3 {
    margin: 20px 0 14px;
}
.service-list-main .row {
    row-gap: 80px;
    margin: 0 -17px;
}
.service-list-main .col-lg-6 {
    padding: 0 17px;
}
/*==================================diensten-dtl page start=======================================*/
.bk-btn-sec {
    padding-top: 144px;
}
.bk-btn-sec .container {
    position: relative;
}
.bk-btn-sec .common-btn {
    position: absolute;
    top: 32px;
    left: 42px;
    z-index: 1;
    padding-left: 60px;
}
.bk-btn-sec .common-btn::before {
    content: "";
    height: 14px;
    width: 14px;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    background-image: url(../images/bk-btn-arrow.svg);
    background-position: center center;
    background-size: 14px;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.bk-btn-sec .common-btn:hover::before {
    filter: invert(1);
    -webkit-filter: invert(1);
}
/***service-dtl-banner-sec****/
.service-dtl-banner-sec {
    position: relative;
}
.service-dtl-banner-text {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
    z-index: 1;
}
.service-dtl-banner-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.service-dtl-banner-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 45.57%, #141414 100%);
}
.service-dtl-banner-img {
    height: 100%;
}
.service-dtl-banner-img img {
    height: 100%;
    object-fit: cover;
}
.service-dtl-desc {
    max-width: 870px;
    width: 100%;
    margin-top: 50px;
}
.service-dtl-desc h4 {
    line-height: 24px;
    margin-bottom: 16px;
}
/***diensten-dtl-info-sec***/
.diensten-dtl-info-sec {
    padding: 80px 0 140px;
}
.diensten-dtl-info-img {
    border-radius: 10px;
    overflow: hidden;
}
.diensten-dtl-info-text {
    padding-left: 30px;
}
.diensten-dtl-info-text h2 {
    margin-bottom: 44px;
}
.diensten-dtl-info-text ul {
    padding: 0;
    margin: 0;
}
.diensten-dtl-info-text li {
    margin-bottom: 44px;
    padding-left: 0;
}
.diensten-dtl-info-text li:last-child {
    margin-bottom: 0;
}
.diensten-dtl-info-text li::after {
    display: none;
}
.diensten-dtl-info-text li h4 {
    margin-bottom: 14px;
}
.diensten-dtl-info-text li p {
    margin-bottom: 0;
}
/******contact-sec******/
.form-sec {
    padding: 100px 0;
    position: relative;
    background-color: #1C1C1C;
}
.form-sec .sec-mark {
    z-index: 0;
}
.form-sec .container {
    position: relative;
    z-index: 1;
}
.form-info {
    border-radius: 10px;
    background-color: #141414;
    padding: 56px 90px;
    height: 100%;
}
.each-form-info {
    margin-bottom: 34px;
}
.each-form-info:last-child {
    margin-bottom: 0;
}
.each-form-info h4 {
    margin-bottom: 32px;
}
.each-form-info p {
    margin-bottom: 0;
}
.each-form-info td:nth-child(odd) {
    padding-right: 24px;
}
.form-sec > .container > .row {
    margin: 0 -14px;
}
.form-sec .col-lg-4,
.form-sec .col-lg-8 {
    padding: 0 14px;
}
.form-block {
    border-radius: 10px;
    background-color: #E2E2E2;
    height: 100%;
    padding: 48px 90px;
}
.form-wrap {
    max-width: 656px;
    width: 100%;
}
.form-block .form-group {
	margin-bottom: 20px;
}
.form-block .form-style {
	resize: none;
    border: 1px solid rgba(20, 20, 20, 0.50);
    border-radius: 10px;
    font-family: 'HelveticaNeue-Light';
    color: #141414;
    font-size: 1.6rem;
    letter-spacing: 0.8px;
    padding: 19px 32px;
	background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-block .form-style:placeholder {
	color: rgba(20, 20, 20, 0.50);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-block .form-style:-ms-input-placeholder {
	color: rgba(20, 20, 20, 0.50);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-block .form-style::placeholder {
	color: rgba(20, 20, 20, 0.50);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-block .form-style:focus {
    box-shadow: none;
	border-color: #141414;
    color: #141414;
    background-color: transparent;
}
.form-block .form-style:focus::placeholder {
    color: #141414;
}
.form-block .form-style.foto_upload {
    color: rgba(20, 20, 20, 0.50);
}
.form-block textarea.form-style {
    height: 125px;
}
.form-block .gray-btn {
    border: 1px solid #141414;
}
.form-block .gray-btn:hover {
    border-color: #F70D1A;
}
.form-heading h2 {
    color: #141414;
}
.form-heading p {
    color: #141414;
    margin: 14px 0 26px;
}
/***related-service-sec*****/
.related-service-sec {
    padding-top: 120px;
}
.related-service-sec h2 {
    margin-bottom: 75px;
    text-align: center;
}
.related-service-slider {
    position: relative;
}
.related-service-sec .each-service-img {
    margin: 0;
}
.related-service-sec .each-service h3 {
    margin: 20px 0 14px;
}
.related-service-sec .common-arrow {
    top: 38%;
}
.related-service-sec .each-service {
    max-width: 100%;
}
.related-service-sec .each-service p {
    -webkit-line-clamp: 2;
}
.related-service-sec .each-service .common-arrow {
    top: 50%;
}
.related-service-sec .swiper-button-next {
    right: -4%;
}
.related-service-sec .swiper-button-prev {
    left: -4%;
}
/*==============contact====================*/
/***map*****/
.map {
    height: 500px;
}
.map img {
    height: 100%;
    object-fit: cover;
}
/***contact-form-sec*****/
.contact-form-sec {
    background: #141414; 
    padding-bottom: 112px;
}
/*==============over-ons====================*/
/***over-ons-top-sec*****/
.over-ons-top-sec {
    padding: 77px 0 80px;
    position: relative;
}
.over-ons-top-sec .sec-mark {
    height: calc(100vh + 28%);
}
.over-ons-top-title {
    max-width: 788px;
    width: 100%;
    margin: 0 auto;
}
.over-ons-top-title p {
    margin-top: 13px;
    margin-bottom: 0;
}
/***over-ons-mid-sec*****/
.over-ons-mid-sec {
    padding-top: 62px;
}
.each-over-ons {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 32px;
    margin-bottom: 32px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.over-ons-img {
    overflow: hidden;
    border-radius: 10px;
}
.each-over-ons img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-over-ons:hover img {
    transform: scale(1.1);
}
.over-ons-mid-title {
    margin-bottom: 45px;
}
.each-over-ons .col-lg-2 {
    width: 13%;
}
.each-over-ons .col-lg-6 {
    width: 49%;
}
.each-over-ons .col-lg-4 {
    width: 38%;
}
.each-over-ons h3 {
    position: absolute;
    bottom: 53%;
    width: 100%;
    left: 0;
}
.over-ons-txt {
    padding-left: 9px;
}
.over-ons-txt p {
    width: 100%;
    max-width: 486px;
}
/***over-ons-gal-sec*****/
.over-ons-gal-sec {
    padding: 108px 0 11px;
    position: relative;
}
.over-ons-gal-sec::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11%;
    content: "";
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, #141414 100%);
}
.over-ons-gal-title h6 {
    line-height: 24px;
    color: #FFF;
    margin-top: 11px;
}
.over-ons-gal-area {
    margin-top: -145px;
}
.over-ons-gal-area .col-lg-2 {
    width: 25%;
}
.each-gal-img img {
    border-radius: 10px;
    overflow: hidden;
}
.gal-img-top {
    margin-bottom: 12px;
}
.over-ons-gal-sec .sec-mark {
    top: 97px;
    height: calc(100% + 7%);
}
/*==============vacature-dtl====================*/
.vacature-dtl-info .diensten-dtl-info-text ul {
    margin-bottom: 43px;
}
.vacature-dtl-info .diensten-dtl-info-text ul:last-child {
    margin-bottom: 0;
}
.vacature-dtl-info .diensten-dtl-info-text ul h4 {
    margin-bottom: 15px;
}
.vacature-dtl-info .diensten-dtl-info-text li {
    padding-left: 17px;
    margin-left: 10px;
    margin-bottom: 2px;
}
.vacature-dtl-info .diensten-dtl-info-text li::after {
    display: block;
}
/*==============aanbod-list====================*/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 168px 0 50px;
}
.aanbod-filter-title {
    margin-bottom: 42px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #fff;
	font-size: 1.4rem;
}
.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: #F70D1A;
}
.filter-reset a:hover img {
    filter: invert(26%) sepia(90%) saturate(5295%) hue-rotate(351deg) brightness(96%) contrast(102%);
}
.aanbod-filter-sec .select-style {
    width: 100%;
    height: 45px;
    color: #FFF;
    background-color: #141414;
    border: 1.5px solid #fff;
    border-radius: 5px;
    padding: 0 55px 0 30px;
    background: url(../images/filter-arrow.svg) no-repeat 83% center / 20px;
    appearance: none;
    line-height: 45px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    letter-spacing: 0.8px; 
}
.aanbod-filter-sec .select-style em {
    display: block;
    font-style: normal;
    overflow: hidden;
    height: 45px;
    line-height: 45px;
    position: relative;
}
.aanbod-filter-sec .select-style strong {
    display: block;
    margin: 0;
    transform: translateY(0);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    white-space: nowrap;
    position: relative;
    font-weight: normal;
    z-index: 1;
}
.aanbod-filter-sec .select-style::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    clip-path: inset(100% 0 0 0);
    background: url(../images/black-filter-arrow.svg) no-repeat 83% center / 20px;
    background-color: #E2E2E2;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
.aanbod-filter-sec .select-style:hover::after {
    clip-path: inset(0 0 0 0);
    border-radius: 5px;
}
.aanbod-filter-sec .select-style:hover strong {
    transform: translateY(-45px);
    color: #141414;
}
.aanbod-filter-sec .select-style.show {
    border-radius: 5px 5px 0 0;
    background: url(../images/black-filter-arrow.svg) no-repeat 83% center / 20px;
    background-color: #E2E2E2;
}
.aanbod-filter-sec .select-style.show strong {
    color: #141414;
}
.aanbod-filter-sec .select-style.show:hover strong {
    transform: none;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	background-color: #14181E;
}
.filter-content {
    display: none;
    background-color:#E2E2E2;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #E2E2E2;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    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: #141414;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #141414;
    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 #141414;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #141414;
    border-color: #141414;
}
.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: #fff;
    border-radius: 6px;
    background-color: #F70D1A;
    font-size: 1.4rem;
    border: 1px solid #F70D1A;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: transparent;
}
.aanbod-filter {
	margin-bottom: 18px;
	width: 20%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 106px;
    background-color: #1C1C1C;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #F70D1A;
    border: 1px solid #F70D1A;
    align-items: center;
}
.mobile-show-filter .common-btn::after {
    display: none;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    color: #fff;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #1C1C1C;
	border-radius: 100%;
	color: #fff;
    border: 1px solid #1C1C1C;
	margin-left: 15px;
	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: #F70D1A;
    border-color: #F70D1A;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #F70D1A;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #fff;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	background-color: #F70D1A;
	border: 1px solid #F70D1A;
  	color: #fff;
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #fff;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: transparent;
}
.auto-overview-filter-result .common-btn::after {
    display: none;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort h6 {
	margin-right: 10px;
    color: rgba(249, 248, 246, 0.7);
    text-transform: none;
    letter-spacing: normal;
}
.filter-sort .aanbod-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.filter-left .row {
    column-gap: 10px;
}
.mobile-show-filter_scroll {
    top: 0;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
    padding-bottom: 139px;
}
.aanbod-product-area .row {
    margin: 0 -6px;
    row-gap: 49px;
}
.aanbod-product-area .col-xl-4 {
    padding: 0 6px;
}
.each-aanbod-product-img {
    margin-bottom: 10px;
}
.each-aanbod-product-img,
.each-aanbod-product-info {
    border-radius: 10px;
    overflow: hidden;
}
.each-aanbod-product-info {
    background: #1C1C1C;
    padding: 17px 21px 23px;
}
.each-aanbod-product-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-aanbod-product-info p {
    color: rgba(255, 255, 255, 0.70);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 8px 0 10px;
}
.each-aanbod-product-info h4 {
    font-family: 'HelveticaNeue-Bold';
    color: #F70D1A;
    margin-bottom: 33px;
}
.each-aanbod-product-info h4 strong {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.70);
    font-family: 'HelveticaNeue-Light';
    font-size: 1.6rem;
    letter-spacing: 0.8px;
}
.each-aanbod-product-info table {
    width: 100%;
}
.each-aanbod-product-info tr {
    display: flex;
    flex-wrap: wrap;
}
.aanbod-product-sec .each-aanbod-product-info td {
    font-size: 1.9rem;
    padding-left: 0;
    margin-right: 10px;
    padding-right: 10px;
}
.aanbod-product-sec .each-aanbod-product-info {
    padding: 17px 9px 23px;
  }
.aanbod-product-sec .each-aanbod-product-info tr {
    row-gap: 14px;
}
/* .each-aanbod-product-info td {
    font-family: 'HelveticaNeue-Medium';
    line-height: normal;
    color: #FFF;
    position: relative;
    padding: 0 7px;
} */
.each-aanbod-product-info td {
    color: #FFF;
    font-family: 'HelveticaNeue-Medium';
    line-height: normal;
    position: relative;
    padding: 0 12px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.15);
}
.each-aanbod-product-info td:first-child {
    padding-left: 0;
}
.each-aanbod-product-info td:last-child {
    border-right: 0;
    padding-right: 0;
}
.each-aanbod-product-info td strong {
    font-weight: normal;
    font-family: 'HelveticaNeue-Light';
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.70);
}
.list-img img {
    border-radius: 10px;
    overflow: hidden;
}
.each-aanbod-product-info td strong {
    display: none;
}
/*==============verkocht====================*/
.verkocht-title {
    padding: 170px 0 36px;
}
.verkocht-title h2 {
    margin-bottom: 13px;
}
.verkocht-title p {
    margin-bottom: 0;
}
/*==============aanbod-dtl====================*/
/****aanbod-bk-btn-sec****/
.bk-btn-sec.aanbod-bk-btn-sec .common-btn {
    position: absolute;
    top: 37px;
    left: auto;
    right: 136px;
    z-index: 2;
    padding-left: 60px;
}
/****dtl-top-sec****/
.dtl-top-sec {
	padding-top: 25px;
	overflow: hidden;
	position: relative;
    margin-bottom: 24px;
}
.dtl-top-sec .sec-mark {
    top: -18%;
    display: none;
}
.dtl-top-sec .col-lg-8 {
	width: 72%;
}
.dtl-top-sec .col-lg-4{
	width: 28%;
}
.dtl-top-sec .col-md-3 {
	width: 17%;
}
.dtl-top-sec .col-md-9 {
    width: 83%;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide {
	height: 100%;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide img { 
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide .dtl-car-slide {
    border: 1px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.gallery-thumbs .swiper-slide-thumb-active .dtl-car-slide {
    border-color: #F70D1A;
}
.dtl-car-slide {
    border-radius: 10px;
    overflow: hidden;
}
.gallery-thumbs {
    position: relative;
}
.gallery-thumbs::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 14%;
    background: linear-gradient(0deg, rgba(20, 20, 20, 0.00) 0%, #141414 100%);
    z-index: 1;
}
.gallery-thumbs::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 14%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, #141414 100%);
    z-index: 2;
}
.gallery-thumbs-wrapper {
    height: 575px;
}
.gallery-thumbs {
    height: 100%;
    object-fit: cover;
}
.dtl-top-content {
    border-radius: 10px;
    background: #1C1C1C;
    padding-left: 19px;
    padding-right: 19px;
    padding-bottom: 9px;
}
.dtl-top-content .each-product-info {
    padding: 85px 0 12px;
}
.dtl-top-content .each-product-info h3 {
    margin-bottom: 6px;
}
.dtl-top-content .each-product-info h6 {
    font-family: 'HelveticaNeue-Medium';
    line-height: 24px;
    color: #fff;
    font-style: italic;
    margin-top: 7px;
}
.dtl-top-content .each-product-info table {
    margin-bottom: 8px;
}
.aanbod-contact-dtls {
    border-radius: 10px;
    background: #E2E2E2;
    padding: 11px 13px;
}
.aanbod-contact-dtls .row{
	align-items: center;
}
.aanbod-contact-dtls-img img{
	border-radius: 5px;
	overflow: hidden;
}
.aanbod-contact-dtls .col-3 {
	width: 24%;
}
.aanbod-contact-dtls .col-9 {
	width: 76%;
}
.aanbod-contact-info {
    padding-left: 5px;
}
.aanbod-contact-info h6 {
    font-family: 'HelveticaNeue-Medium';
    color: #141414;
    margin-bottom: 7px;
}
.aanbod-contact-info p {
    margin-bottom: 3px;
}
.aanbod-contact-info p:last-child {
    margin-bottom: 0;
}
.aanbod-contact-info a {
    line-height: normal;
    color: #141414;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-contact-info a:hover {
    color: #F70D1A;
}
.aanbod-car-btn ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.aanbod-car-btn li {
    padding-left: 0;
}
.aanbod-car-btn li::after {
    display: none;
}
.aanbod-share-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.aanbod-share-btn h6 {
    color: #F7FCFF;
    line-height: 17px;
    letter-spacing: normal;
    margin-right: 14px;
}
.share-icon {
    height: 41px;
    width: 41px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.share-icon img {
    width: 15px;
}
.aanbod-share-btn:hover .share-icon {
    background-color: #F70D1A;
    border-color: #F70D1A;
}
/****dtl-car-reach-sec****/
.dtl-car-reach-sec {
    margin-bottom: 100px;
}
/****aanbod-tab-sec****/
.aanbod-dtls-sec {
    padding-bottom: 139px;
}
.aanbod-dtls-area {
    border-radius: 10px;
    overflow: hidden;
    background: #1C1C1C;
    padding-top: 41px;
}
.dtl-tab-part {
	position: relative;
	overflow: hidden;
}
.tab-btn .nav-tabs {
    column-gap: 17px;
    margin-bottom: 60px;
    border: 0;
    row-gap: 26px;
}
.tab-btn .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 24px;
    max-width: max-content;
    margin: auto;
    padding: 10px 0;
    margin-bottom: 66px;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
}
.tab-btn ul.tabs li.common-btn:hover strong {
    color: #fff;
}
ul.tabs li::after {
    top: 0;
    border-radius: 0;
}
.tab-btn .tabs li.active {
    background: #F70D1A;
    color: #fff;
}
.tab-btn .tabs li.active.common-btn strong {
    transform: none;
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
.tab-btn-right ul {
	list-style-type: none;
	display: flex;
	column-gap: 41px;
	justify-content: end;
	padding-left: 0;
}
.tab-btn-right li a {
	color: #f3f3f3;
	font-family: 'neue_montrealregular';
	font-size: 1.6rem;
	line-height: 24px;
	letter-spacing: 0.32px;
	transition: all 0.5s;
}
.tab-btn-right li a:hover {
	text-decoration: underline;
}
.kenmerken-tab {
	overflow: hidden;
}
.kenmerken-tab table {
	width: 100%;
}
.kenmerken-tab td {
    padding: 71px 48px 49px;
    width: 25%;
    border-top: 1.5px solid #3E3E3E;
    border-right: 1.5px solid #3E3E3E;
    flex-shrink: 0;
}
.kenmerken-tab tr {
    display: flex;
    flex-wrap: wrap;
}
.kenmerken-tab td h5 {
    word-break: break-word;
    margin-bottom: 12px;
    font-size: 1.8rem;
    line-height: 26px;
    letter-spacing: 0.36px;
}
.kenmerken-tab td h6 {
    font-size: 1.8rem;
    line-height: 26px;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, 0.50);
}
.kenmerken-tab h3 {
    color: #292B2C;
    margin: 49px 0 21px;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 0;
}
.kenmerken-tab li {
    width: 40%;
    position: relative;
    color: #292B2C;
    line-height: 24px;
	margin-bottom: 13px;
    padding-bottom: 10px;
    word-break: break-word;
    padding-right: 20px;
    padding-left: 35px;
    font-size: 1.6rem;
    letter-spacing: 0.48px;
}
.kenmerken-tab li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: rgba(41, 43, 44, 0.50);
}
.kenmerken-tab li:nth-child(even) {
    color: rgba(41, 43, 44, 0.70);
    padding-left: 0;
	width: 60%;
}
.kenmerken-tab-block-part {
	display: none;
}
.kenmerken-tab-block-part ul:first-child{
	margin-top: 6px;
}
.aanbod-dtls-area.hidden-tab .col-lg-8 {
	width: 100%;
}
.aanbod-dtls-area.hidden-tab .each-aanbod-contact {
	display: none;
}
.each-aanbod-contact .row {
    align-items: center;
}
.tab-cross {
    cursor: pointer;
}
.hidden-tab-btn {
    margin: 60px 0 20px;
}
.hidden-tab-btn .common_btn {
    font-size: 1.8rem;
    padding: 10px 40px;
}
.dtl-tab-part .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.bullet-panel h4 {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
	margin-bottom: 10px;
}
.dtl-tab-part .bullet-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dtl-tab-part .bullet-panel ul li {
    padding-left: 16px;
    position: relative;
	margin-bottom: 10px;
	font-size: 1.6rem;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F70D1A;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #F70D1A;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    color: #fff;
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h6 {
    text-transform: none;
    font-size: 1.8rem;
    color: #fff;
}
.kenmerken-tab td:nth-child(4n) {
    border-right: 0;
}
.tab-btm-btn {
    background: #141414;
    text-align: center;
    padding-top: 109px;
}
.tab-wrap {
    padding: 0 32px;
}
/*****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(18, 18, 18, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
	border-radius: 20px;
    background-color: #141414;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
	border: 1px solid #F70D1A;
	box-shadow: 0px 0px 25px 0px rgba(247,13,26,0.5);
	-webkit-box-shadow: 0px 0px 25px 0px rgba(247,13,26,0.5);
	overflow: hidden;
}
.kenmarken-popup-close {
	background-color: #141414;
    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 #F70D1A;
}
.kenmarken-popup-close img {
	width: 25px;
}
.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;
}
.kenmerken-popup-model h6 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmarken-popup-content h4 {
    margin-bottom: 33px;
    font-size: 3.2rem;
    line-height: 32px;
    letter-spacing: normal;
    color: #F7FCFF;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 34px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    font-family: 'HelveticaNeue-Regular';
    color: #fff;
    font-size: 1.8rem;
    line-height: 26px;
    letter-spacing: 0.36px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.kenmarken-popup-content li:nth-child(even) {
    color: rgba(255, 255, 255, 0.50);
}
.kenmarken-popup-content li::after {
    display: none;
}
/****aanbod-btm-slider-sec****/
.aanbod-btm-slider-sec {
    padding: 144px 0 140px;
}
.aanbod-btm-slider-title {
    text-align: center;
    margin-bottom: 74px;
}
.aanbod-btm-slider .common-arrow {
    top: 45%;
}
.aanbod-btm-slider .swiper-button-next {
    right: -4%;
}
.aanbod-btm-slider .swiper-button-prev {
    left: -4%;
}
.mobile-aanbod-share-btn {
    display: none;
}
/*==============bedankt====================*/
.bedankt-banner .banner-content {
    bottom: 40px;
}
.banner-content h1 {
    margin-bottom: 8px;
}
/****popup****/
.modal-area .modal-dialog {
    max-width: 70%;
    margin: 10% auto 0;
  }
  .modal-area .modal {
    background: rgba(20, 20, 20, 0.40);
    backdrop-filter: blur(6px);
  }
  .modal-area .modal-content {
    position: relative;
    border-radius: 10px;
    background: #E2E2E2;
    border: 0;
  }
  .modal-area .popup-content {
    padding: 63px 104px 42px 23px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    background: #E2E2E2;
  }
.pop-up-image {
    height: 100%;
    padding-right: 5px;
}
  .pop-up-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
  }
.popup-content h2 {
    margin: 24px 0;
    color: #141414;
}
.popup-content p, 
.popup-content li {
    color: #141414;
}
.popup-content ul {
    padding-left: 0;
    margin-bottom: 10px;
}
.popup-content li {
    position: relative;
    padding-left: 14px;
}
.popup-content li::after {
    width: 5px;
    height: 5px;
    background-color: #141414;
}
.close-img {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 31px;
    width: 75px;
    background-color: #565656;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #565656;
    border-radius: 5px;
}
  .close-img img {
    width: 23px;
  }
.modal-content .col-lg-5 {
    width: 36%;
}
.modal-content .col-lg-7 {
    width: 64%;
}
.pop-up-img-part {
    position: relative;
    height: 100%;
    object-fit: cover;
}
.popup-small-img {
    position: absolute;
    width: calc(100% - 36%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
}



/*******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: 15px;
  }
  
  
  /****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 #181716;
      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;
      margin-bottom: 0;
  }
  .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;
  }
  .form-1, .form-2 {
      display: none;
      padding: 50px 0;
      margin-top: 20px;
  }
  .form-2 .form-group label 
  {
      font-family: 'lama_sansregular';
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 20px;
  }
  .form-1 .form-group label
  {
      font-family: 'lama_sansregular';
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 20px;
  }
  .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;
    }
  @media (max-width: 991px) {
      .form-1, .form-2 {
          padding: 0 !important;
      }
  }
  .radio_filter .form-check-input {
      display: none;
  }
  .aanbod-dtl-right-slide-top .common-btn{
      background-color: #fbb969;
      border-color: #fbb969;
  }
  .over-ons-counter-area .col-lg-4:last-child .each-over-ons-counter{
      border: none;
  }
  
  .carpass-img {
      width: 115px;
  }
  
  
  .calsty {
      border: 0;
      width: 100%;
      height: 600px;
      background: transparent;
  }
  .fixed-whatsapp-icon {
      /* width: 70px;
      height: 70px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      right: 10px;
      bottom: 0px;
      z-index: 999; */
  }
  
  .fixed-whatsapp-icon img {
      /* width: 50px; */
  }
  
  .popup .popuptext {
      display: none;
      width: 200px;
      background-color: #25D366;
      color: #fff;
      text-align: center;
      border-radius: 20px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 3px;
      right: 5vw;
      font-size: small;
  }
  
  .notifcation {
      position: relative;
  }
  
  .alert-number {
      display: none;
      position: absolute;
      bottom: 43px;
      right: 4px;
      border-radius: 50%;
      width: 17px;
      height: 17px;
      background-color: red;
      color: white;
      text-align: center;
      font-size: small;
      animation: shake 0.5s;
      animation-iteration-count: 1;
  }
  
  @media screen and (max-width: 600px) {
      .popuptext {
          right: 60px !important;
      }
  }
  @media (max-width : 767.98px){
      .fixed-whatsapp-icon{
          display: none;
      }
  }
  .ButtonBase__ButtonContainer-sc-p43e7i-3.euBiGU.HeaderWriteReviewButton__WriteReviewButton-sc-a5mrro-1.iqYjDs.es-header-write-review-button{
      background-color: #E52528 !important;
  }
  .diensten-dtl-info-text h4{
      margin-bottom: 15px;
  }
  .werkplaats-form-sec{
      background-color: #E2E2E2;
      padding: 70px;
  }
  /*****review-plugin-theme chng*****/
  .hiafvJ {
    background-color: #1C1C1C !important;
  }
  .idHrF {
    background-color: #1C1C1C !important;
  }
  .kBfvhj {
    color: #fff !important;
  }
  .cbGiep {
    color: #fff !important;
  }
  .AGaFi {
    color: #fff !important;
  }
  .cicnAb .Popup__StyledContent-sc-1dlcsn3-1 {
    background-color: #1C1C1C !important;
  }
  .AGaFi {
    color: #fff !important;
  }
  .dnbYzP {
    color: #fff !important;
  }
  .djXUQz {
    color: #fff !important;
    opacity: 0.5;
  }
  .chgnCo {
    background-color: #1C1C1C !important;
  }
  .kSLkip {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .eWlnOb {
    color: #fff !important;
  }
.privacy_section {
    padding: 130px 0 40px;
}
body .share-social-media-button .a2a_dd svg {
    margin-right: 0 !important;
}
body .share-social-media-button .a2a_dd {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.select2-results__options li::after{
    display: none !important;
}
.each-aanbod-product-img img{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-aanbod-product:hover .each-aanbod-product-img img{
    transform: scale(1.1);
}


.home-header-area {
    background-color: #1C1C1C;
    padding: 24px 0 0;
}
.home-header-area .header-right::after {
    display: none;
}
.home-header-area .header-left {
    padding: 0;
}
.home-header-area .header-right {
    padding: 0 46px;
}
.home-header-area.header-area.header-scrolled .header-left, 
.home-header-area.header-area.header-scrolled .header-right {
    border-color: transparent;
}
/**************banner-logo****************/
.banner-logo {
    position: absolute;
    top: 14%;
    left: 0;
    width: 100%;
    z-index: 2;
}
.banner-logo ul {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* column-gap: 35px; */
    margin-bottom: 0;
    background-color: #565656;
}
.banner-logo li {
    padding-left: 0;
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-logo li::after {
    display: none;
}
.banner-logo li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    height: 40%;
    width: 0.5px;
}
.banner-logo li:nth-child(1)::before {
    display: none;
}
.banner-logo li:nth-child(1) {
    padding-left: 0;
}
.banner-logo li:nth-child(4) {
    padding-right: 0;
}
.aanbod-dtls-back-button {
    background-color: transparent;
    border: 1px solid #e2e2e2;
    color: #e2e2e2;
}
.aanbod-dtls-back-button::before {
    filter: invert(1);
}

.aanbod-dtls-back-button:hover {
    border-color: #f70d1a;

}