body {
	padding: 0px;
	margin: 0px;
    color: rgb(17, 17, 17, 0.6);
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    /*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;
}
/****cookie-fix****/
.cmn-cookie-info ul {
    margin-bottom: 0;
}
.cmn-cookie-info li {
    padding-left: 0;
    margin-bottom: 0;
}
.cmn-cookie-info li::after {
    display: none;
}
.cookie-close img {
    width: 15px;
}
/****fix-wp**/
.fix-wp {
    position: fixed;
    height: 63px;
    width: 63px;
    background-color: #25D366;
    border-radius: 100%;
    z-index: 98;
    bottom: 100px;
    right: 30px;
}
.fix-wp img {
    width: 22px;
}
.fix-wp a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
main {
    margin-top: 165px;
}
/*****header-area****/
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-top {
    padding: 15px 0;
    background-color: #164194;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-reach ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-reach li {
    padding-left: 0;
    font-family: 'Montserrat-Medium';
    color: #fff;
    letter-spacing: 0.32px;
}
.header-reach li a {
    color: #fff;
}
.header-reach li a:hover {
    color: #E40511;
}
.header-reach li::after {
    display: none;
}
.header-reach li strong {
    height: 25px;
    width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
    margin-right: 12px;
}
.header-reach li strong img {
    width: 12px;
}
.header-partner ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 56px;
    justify-content: end;
}
.header-partner li {
    padding-left: 0;
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.header-partner li::after {
    display: none;
}
.header-partner li a {
    color: #fff;
}
.header-partner li a:hover {
    color: #fff;
    font-weight: 800;
}
.header-main {
    padding: 16px 0;
    background-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-logo img {
    width: 180px;
}
.header-nav ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.header-nav li {
    color: #111;
    font-family: 'Montserrat-Medium';
    font-size: 1.6rem;
    line-height: 24px; 
    letter-spacing: 0.32px;
    padding-left: 0;
}
.header-nav li::after {
    display: none;
}
.header-nav li a {
    color: #111;
}
.header-nav li a:hover {
    color: #111;
    font-weight: 800;
}
.header-btn .common-btn {
    padding-left: 40px;
    padding-right: 40px;
    background-color: #111;
}
.header-btn .common-btn:hover {
    background-color: #E40511;
}
.header-active .header-main {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.header-active .header-top {
    opacity: 0;
}
.header-active {
    margin-top: -56px;
}
.header-right {
    text-align: right;
}
/*****mobile-menu*****/
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #111;
    padding: 10px;
    color: #fff;
    font-family: 'Montserrat-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    gap: 10px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar {
    position: relative;
    max-width: 24px;
    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: 24px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn.active {
    background-color: #E40511;
}
.menu-btn.active .menu-bar  div {
    transform: scale(0);
}
.menu-btn.active .menu-bar:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-btn.active .menu-bar:after {
    transform: translateY(-8px) rotate(-135deg);
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 40%;
    background-color: #222;
    padding: 170px 40px 40px;
    z-index: 98;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.mobile-menu-wrap {
    height: 100%;
    overflow-y: auto;
}
.mobile-menu ul {
    margin-bottom: 0;
}
.mobile-menu li {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 2rem;
}
.mobile-menu li::after {
    display: none;
}
.mobile-menu li a {
    color: #fff;
}
.mobile-menu li a:hover {
    color: rgba(255, 255, 255, 0.5);
}
.mobile-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
}
.body-overlay {
    height: 100vh;
    width: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}
/*****banner-sec***/
.banner-sec {
	position: relative;
}
.banner-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 0%, rgba(17, 17, 17, 0.44) 65.04%, rgba(17, 17, 17, 0.60) 100%);
    z-index: 1;
    pointer-events: none;
}
.banner-video, .each-banner {
	height: 748px;
}
.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 {
    position: absolute;
    left: 0;
    bottom: 75px;
    width: 100%;
	z-index: 2;
}
.banner-content h1 {
    margin-bottom: 144px;
}
.banner-content .common-btn {
    margin-right: 48px;
}
.banner-content .txt-btn {
    color: #fff;
}
.banner-content .txt-btn:hover {
    color: #E40511;
}
.banner-content .next-sec-arrow {
    position: absolute;
    left: 8px;
    bottom: 30%;
    cursor: pointer;
    -webkit-animation: bounce 2.5s infinite ease-in-out;
    -o-animation: bounce 2.5s infinite ease-in-out;
    -ms-animation: bounce 2.5s infinite ease-in-out; 
    -moz-animation: bounce 2.5s infinite ease-in-out; 
    animation: bounce 2.5s infinite ease-in-out;
}
@keyframes bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(10px) }
    100% { transform: translateY(-5px) }
}
.banner-content .container {
    position: relative;
}
/*****banner-btm-sec*****/
.banner-btm-sec {
    padding: 22px 0;
    background: linear-gradient(90deg, #CFD7E9 0%, #DCE2EF 6.7%, #E1E6F1 92.83%, #CFD7E9 100%);
}
.usp-marquee-block {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 129px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 129px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
    color: #111;
	font-size: 1.2rem;
    font-family: 'Montserrat-Regular';
	padding-left: 53px;
	position: relative;
}
.usp-marquee-wrap li::after {
	content: "";
	height: 29px;
	width: 29px;
	position: absolute;
	left: 0;
	top: 5px;
	background-color: transparent;
	background-size: 29px;
    background-image: url(../images/marquee-icon.svg);
    background-repeat: no-repeat;
}
.rating-star {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;
}
.rating-star h6 {
    font-family: 'Montserrat-SemiBold';
    font-size: 1.2rem;
    color: #111;
}
.rating-star ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rating-star li {
    padding-left: 0;
}
.rating-star li::after {
    display: none;
}
.banner-btm-wrap {
    max-width: 1317px;
    width: 100%;
    margin: 0 auto;
}
/***product-sec***/
.product-sec {
    padding: 120px 0;
    position: relative;
}
.product-heading {
    margin-bottom: 80px;
}
.product-heading h2 {
    margin-top: 16px;
}
.product-heading h2 strong::after {
    bottom: 4px;
}
.product-slider {
    position: relative;
}
.each-product-img {
    border-radius: 10px;
    overflow: hidden;
}
.each-product-img img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-text {
    margin-top: 16px;
}
.each-product-text h5 strong {
    font-weight: normal;
    display: block;
    margin-top: 8px;
    color: rgb(17, 17, 17, 0.6);
}
.each-product-text h6 {
    color: #111;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-text p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.each-product-text table {
    margin-top: 15px;
    display: block;
}
.each-product-text tr {
    display: flex;
    align-items: center;
    column-gap: 24px;
    row-gap: 5px;
    flex-wrap: wrap;
}
.each-product-text td {
    font-family: 'Montserrat-Medium';
    color: #111;
}
.each-product:hover .each-product-text h6 {
    color: #E40511;
}
.each-product:hover .each-product-img img {
    transform: scale(1.1);
}
.product-btn {
    margin-top: 80px;
}
.product-top-mark {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.product-btm-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
/****service-sec****/
.service-sec {
    padding: 120px 0 40px;
    position: relative;
    background-color: #111;
}
.service-heading {
    margin-bottom: 96px;
}
.service-heading h2 {
    color: #fff;
    margin: 24px 0 60px;
}
.service-mark {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.each-service-img {
    height: 100%;
    object-fit: cover;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    min-height: 560px;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text {
    padding: 40px;
    border-radius: 5px 0 0 5px;
    background-color: #F5F5F5;
    height: calc(100% - 36px);
    margin-top: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    overflow: hidden;
    border-left: 3px solid rgba(17, 17, 17, 0.5);
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text h3 {
    margin-bottom: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text p {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text ul {
    margin: 28px 0;
}
.each-service-text li {
    font-family: 'Montserrat-Bold';
    line-height: 32px;
    padding-left: 33px;
    margin-bottom: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text li::after {
    background-image: url(../images/service-list-icon.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 25px;
    width: 25px;
    border-radius: 0;
    background-color: transparent;
    top: 3px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.dark-service .each-service,
.dark-service .each-service .row {
    height: 100%;
}
.dark-service .swiper-slide {
    height: auto;
}
.dark-service .each-service-text::after {
    content: "";
    width: 29%;
    height: 62%;
    right: 0;
    bottom: 0;
    background-image: url(../images/list-txt-mark.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    pointer-events: none;
}
.each-service:hover .each-service-text,
.dark-service .each-service-text {
    background-color: #1D1D1D;
    border-color: #E40511;
}
.each-service:hover .each-service-text h3,
.dark-service .each-service-text h3 {
    color: #fff;
}
.each-service:hover .each-service-text p,
.dark-service .each-service-text p {
    color: rgba(255, 255, 255, 0.6);
}
.each-service:hover .each-service-text li,
.dark-service .each-service-text li {
    color: rgba(255, 255, 255, 0.6);
}
.each-service:hover .each-service-text li::after,
.dark-service .each-service-text li::after {
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(1002%) hue-rotate(304deg) brightness(97%) contrast(96%);
}
.each-service:hover .each-service-text .txt-btn,
.dark-service .each-service-text .txt-btn {
    color: #E40511;
}
.each-service:hover .each-service-img img {
    transform: scale(1.1);
}
.service-slider {
    position: relative;
}
.service-slider .common-arrow {
    background-color: #1D1D1D;
}
.service-slider .common-arrow:hover {
    background-color: #E40511;
}
.service-slider .swiper-button-next {
    right: -25px;
}
.service-slider .swiper-button-prev {
    left: -25px;
}
.service-slider .common-pagination {
    margin-top: 40px;
}
.service-slider .common-pagination .swiper-pagination-bullet {
    background-color: #fff;
}
.service-slider .common-pagination .swiper-pagination-bullet-active  {
    background-color: #E40511;
}
/*****diensten-service-sec***/
.diensten-service-sec {
    background-color: #164194;
    padding: 26px 0;
}
.diensten-service-sec p {
    max-width: 650px;
    margin: 0 auto;
    color: #fff;
}
.diensten-service-sec h3 {
    color: #fff;
}
.diensten-service-sec .common-btn {
    border-color: #fff;
}
.diensten-service-sec .common-btn:hover {
    border-color: #fff;
    background-color: #fff;
    color: #111;
}
/*****about-sec***/
.about-sec {
    position: relative;
    padding: 120px 0 213px;
}
.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
    height: 100%;
}
.about-img img {
    height: 100%;
    object-fit: cover;
}
.about-text h2 {
    margin-top: 24px;
}
.about-text p {
    color: #111;
    margin: 40px 0;
}
.about-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
/*****company-offer-sec****/
.company-offer-sec {
    padding: 67px 0;
    background-color: #111;
}
.company-offer-wrap {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
}
.each-company-offer {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}
.each-company-offer::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    position: absolute;
}
.each-company-offer h4 {
    margin-left: 56px;
    color: #fff;
    font-family: 'Montserrat-Italic';
}
.company-offer-sec .col-lg-6:last-child .each-company-offer::after  {
    opacity: 0;
}
.company-offer-sec .col-lg-6:last-child .each-company-offer {
    justify-content: end;
}
/****gallery-sec****/
.gallery-sec {
    padding: 80px 0;
}
.gallery-wrap {
    position: relative;
}
.gallery-slider {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.each-gallery-img {
    height: 605px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.each-gallery-img img {
    height: 100%;
    object-fit: cover;
}
.gallery-slider-text {
    padding: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
}
.gallery-slider-text p {
    color: #111;
    margin: 6px 0 0;
}
.gallery-wrap .common-pagination {
    margin-top: 40px;
}
.gallery-wrap .common-arrow {
    top: 45%;
}
.gallery-wrap .swiper-button-next {
    right: -25px;
}
.gallery-wrap .swiper-button-prev {
    left: -25px;
}
/****review-sec*****/
.review-sec {
    padding: 40px 0 24px;
    position: relative;
}
.review-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: calc(100% + 30%);
}
.review-mark img {
    height: 100%;
    object-fit: cover;
}
/****partner-site-sec****/
.partner-site-sec {
    padding: 26px 0;
    background-color: #111;
    overflow-x: clip;
}
.partner-site-wrap {
    width:100vw;
	margin-left:-50vw;
	left:50%;
	position:relative;
}
.partner-site-inner {
    padding: 0 26px;
}
.partner-site-sec .row {
    margin: 0 -13px;
}
.partner-site-sec .col-lg-6 {
    padding: 0 13px;
}
.each-partner-site {
    position: relative;
    border-bottom: 5px solid #E40511;
    border-radius: 5px;
    overflow: hidden;
    height: 343px;
}
.each-partner-site-img {
    height: 100%;
}
.each-partner-site-img img {
    height: 100%;
    object-fit: cover;
}
.each-partner-site-text {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 13px 24px;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    background-color: rgba(17, 17, 17, 0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-partner-site-text h4 {
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-partner-site .common-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
    background-color: #E40511;
}
.each-partner-site:hover .common-arrow  {
    opacity: 1;
}
.each-partner-site:hover .each-partner-site-text h4 {
    opacity: 0.5;
}
.each-partner-site:hover .each-partner-site-text {
    background-color: rgba(17, 17, 17, 0.6);
}
/*****footer-area****/
.footer-area {
    padding: 55px 0 30px;
    background-color: #111;
    overflow-x: hidden;
}
.footer-logo img {
    width: 180px;
}
.footer-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 843px;
    width: 100%;
    margin-left: auto;
}
.each-footer-info h4 {
    margin-bottom: 24px;
    color: #fff;
}
.each-footer-info p {
    color: #fff;
    line-height: 30px;
    margin-bottom: 0;
}
.each-footer-info p a {
    color: #fff;
}
.each-footer-info p a:hover {
    color: #E40511;
}
.each-footer-info td {
    color: #fff;
    vertical-align: top;
    line-height: 30px;
}
.each-footer-info td:nth-child(odd) {
    padding-right: 27px;
}
.footer-btm {
    position: relative;
    padding-top: 30px;
    margin-top: 123px;
}
.footer-btm::after {
    content: "";
    width:100vw;
	margin-left:-50vw;
	left:50%;
	position:absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.1);
    height: 1px;
}
.footer-partner ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}
.footer-partner li {
    padding-left: 0;
}
.footer-partner li::after {
    display: none;
}
.privacy-policy p {
    color: #fff;
    margin-bottom: 0;
}
.privacy-policy p a {
    color: #fff;
}
.privacy-policy p a:hover {
    color: #E40511;
}
.footer-social ul {
    margin-bottom: 0;
    display: flex;
    gap: 12px;
    justify-content: end;
}
.footer-social li {
    padding-left: 0;
}
.footer-social li::after {
    display: none;
}
.footer-social li a {
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
}
.footer-social li a:hover {
    background-color: #E40511;
    border-color: #E40511;
}






/*****************aanbod-list****************/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    margin-top: 0;
    padding-top: 81px;
    position: relative;
    padding-bottom: 55px;
}
.aanbod-filter-sec .aanbod-filter-wrap {
    border: 0;
    padding: 0;
}
.filter-left-area .row {
    column-gap: 9px;
}
.aanbod-filter-sec label {
    font-size: 1.4rem;
}
.aanbod-filter-sec .filter-main .col-lg-3 {
    width: 24%;
}
.aanbod-filter-sec .filter-content {
    background: #fff;
    border-color: #111;
}
.aanbod-filter-sec .form-check-input {
    border-color: #14112C;
}
/* .aanbod-filter-sec .sorteren_op-filter {
    width: 63%;
} */
.aanbod-filter-sec label span {
    color: #14112C;
}
.aanbod-filter-bg-mark {
	position: absolute;
	top: 0;
	width: 100%;
	pointer-events: none;
}
.aanbod-list-product-sec {
    padding-top: 60px;
}
.aanbod-list-product-area {
    position: relative;
    z-index: 1;
}
.aanbod-list-product-area .row {
    row-gap: 40px;
}
.filter-main {
    margin-bottom: 20px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
	border-radius: 16px;
	border: 1.5px solid #fff;
	padding: 24px 30px;
}
.filter-reset a {
    color: #111;
    font-family: 'Montserrat-Bold';
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(100) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #E40511;
}
.filter-reset a:hover img {
    filter: invert(59%) sepia(17%) saturate(644%) hue-rotate(113deg) brightness(92%) contrast(91%);
}
.select-style {
	width: 100%;
    min-width: 180px;
    color: #111;
    font-size: 1.6rem;
    padding: 0 38px 0 26px;
    background: url(../images/filter-arrow.svg) no-repeat 97% center/10px;
    background-size: 9px;
    appearance: none;
    line-height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
    cursor: default;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    border: 1px solid #111;
    transition: unset;
}
.filter-sort .select-style{
    position: relative;
    background: none;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #E40511;
    color: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset{
    min-width: 95px;
}
.filter-sort .select-style::after{
    color: #FFF;
    background: url(../images/filter-arrow-hover.svg);
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.filter-sort .select-style:hover{
    border-color: #164194;
    color: #FFF;
    background: none;
    background-color: #164194;
}
.filter-sort .select-style.show{
    background: #FFF;
    color: #111;
    border-color: #111;
}
.filter-sort .select-style.show::after{
    filter: invert(1);
}
.filter-sort .select-style::after:hover{
    filter: invert(1);
}
.select-style:hover{
    background: url(../images/filter-arrow-hover.svg) no-repeat 97% center/10px;
    background-size: 9px;
    background-color: #E40511;
    border-color: #E40511;
    color: #fff;
}
.select-style.show{
    color: #001005;
    font-family: 'Montserrat-Medium';
    border: 1px solid #111;
    background: transparent;
    background: url(../images/filter-arrow.svg) no-repeat 90% center/10px;
    background-size: 9px;
}
.select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 30px;
}
.filter-main option{
	font-family: 'DMSans-Regular';
	background-color: #1C1C1C;
}
.filter-content {
    display: none;
	background-color: #1C1C1C;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    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 .filter-main .row {
	justify-content: start;
}
.aanbod-filter-sec label {
    color: #111;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Montserrat-Regular';
    font-size: 1.2rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #111;
    opacity: 0.65;
}
.aanbod-filter-sec .form-check-input{
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #111;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #E40511;
    border-color: #E40511;
}
.auto-overview-tag {
    margin-right: 5px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #FFF;
    border-radius: 5px;
    background-color:#E40511;
    font-size: 1.4rem;
    border: 1px solid #FFF;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: #164194;
    border-color: #164194;
    color: #FFF;
}
.filter-main .col-lg-3 {
	width: 16.6%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 50%;
	transform: translateX(-50%);
    top: 139px;
    background-color: #164194;
    width: 100%;
    z-index: 5;
    margin-top: 6px;
    padding: 12px 10px 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s !important;
    -webkit-transition: all 0.5s !important;
    background-color: #E40511;
    border-color: #E40511;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.filter-count {
    min-width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    color: #14112C;
    border: 1px solid #fff;
    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-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 2;
    background-color: #164194;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #164194;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .common-btn {
    margin-top: 0;
    background-color: #E40511;
    border-color: #E40511;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result h4{
	font-size: 1.6rem;
	color: #fff;
}
.auto-overview-filter-result .common-btn:hover {
	background-color: #fff;
    border-color: #fff;
    color: #14112C;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort h6 {
	margin-right: 10px;
    color: rgba(249, 248, 246, 0.7);
    font-family: 'DMSans-Regular';
    text-transform: none;
    letter-spacing: normal;
}
.filter-sort .col-lg-3 {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.radio_filter .form-check-input {
	display: none;
}
.filter-sort-right{
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 24px;
}
.aanbod-list-merk {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
/* **********aanbod-list-car-sec******* */
.aanbod-list-car-sec .row{
    row-gap: 42px;
    margin-right: -11px;
    margin-left: -11px;
}
.aanbod-list-car-sec{
    padding-bottom: 66px;
}
.aanbod-list-car-sec .col-lg-6{
    padding-left: 11px;
    padding-right: 11px;
}
/* =================aanbod-dtl======================== */
/* ****back-btn***** */
.back-detail-page-btn {
    position: relative;
    z-index: 1;
    padding: 63px 0px 32px;
}
.inner-detail-layer {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
/* *****aanbod-dtl-icon-sec********* */
.aanbod-dtl-icon-wrap{
    display: flex;
    justify-content: right;
    column-gap: 32px;
    margin-top: -65px;
    max-width: 200px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.aanbod-dtl-icon-wrap img{
    width: 20px;
}
/* .aanbod-dtl-icon-sec{
    margin-top: -65px;
} */
/* ********aanbod-dtl-top-slider-sec******* */
.aanbod-dtl-top-slider-img img{
    border-radius: 10px;
}
/* .aanbod-dtl-top-slider-btn{
    display: none;
} */
.aanbod-dtl-wrap{
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position:relative;
}
.aanbod-dtl-top-slider-sec{
    margin-top: 42px;
    overflow: hidden;
}
.aanbod-dtl-top-slider{
    padding-bottom: 25px;
}
.aanbod-dtl-car-info-area{
    background-color: #111;
    padding-top: 40px;
    padding-bottom: 40px;
}
.aanbod-dtl-car-info-right h2{
    color: #FFF;
    padding-bottom: 15px;
    font-family: 'Montserrat-Bold';
}
.aanbod-dtl-car-info-right P{
    color: #FFF;
    opacity: 0.6;
}
.price-info h3{
    color: #FFF;
}
.price-info h3 strong {
    font-weight: normal;
    font-size: 2rem;
    display: block;
}
.price-info p{
    color: #FFF;
    opacity: 0.5;
    margin-bottom: 6px;
}
.price-info{
    float: inline-end;
}
.aanbod-dtl-car-info p{
    color: #FFF;
    margin-bottom: 0;
}
.aanbod-dtl-car-info{
    position: relative;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.aanbod-dtl-car-info-warp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aanbod-dtl-car-info-right{
    position: relative;
}
.aanbod-dtl-car-info-right::after{
    content: "";
    width: 1px;
    height: 90px;
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    right: -10%;
}
.aanbod-dtl-car-info::after{
    content: "";
    width: 1px;
    height: 90px;
    position: absolute;
    top: 50%;
    transform: translate(-50% , -50%);
    background: rgba(255, 255, 255, 0.25);
    right: -23%;
}
.aanbod-dtl-car-info ul{
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    align-items: center;
    margin-bottom: 0;
}
.aanbod-dtl-car-info ul li{
    display: flex;
    padding-left: 0;
    column-gap: 25px;
    width: 50%;
    align-items: center;
}
.aanbod-dtl-car-info ul li::after{
    display: none;
}
.aanbod-dtl-car-info li img{
    width: 25px;
}
.aanbod-dtl-top-slider .swiper-button-next {
    right: 23%;
}
.aanbod-dtl-top-slider .swiper-button-prev {
    left: 23%;
}
/****aanbod-dtl-tab-sec****/
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 60px;
	margin-bottom: 38px;
    border: 0;
	justify-content: center;
}
.tab-btn .tabs li.active {
    background-color: transparent;
    opacity: 1;
	position: relative;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    color: rgba(17, 17, 17, 0.70);
    text-transform: none;
	font-size: 1.6rem;
    letter-spacing: 0.32px;
    line-height: 24px;
	font-family: 'Montserrat-Bold';
	padding-left: 0;
	position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab-btn ul.tabs li:hover{
    color: #E40511;
}
.tab_container.tab-content{
	max-width: 1100px;
    padding-right: 10px;
}
.tab-btn ul.tabs li.active span{
	color: #FFF;
}
.tab-btn ul.tabs li.active span::after, ul.tabs li span:hover::after{
    opacity: 1;
}
.tab_content {
    display: none;
}
.tab_content img{
	max-width: 40%;
	height: 30px;
	filter: invert(1);
	padding-right: 15px;
}
.tab_drawer_heading{
    display: none;
}
.dtl-tab-sec {
    position: relative;
    padding-top: 138px;
	padding-bottom: 80px;
}
.tab_drawer_heading{
	display: none;
}
.tab-btn .tabs {
    display: flex;
    justify-content: left;
    column-gap: 76px;
    padding: 10px 0;
    overflow: hidden;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 0;
}
.tab-btn .tabs li.active{
	color: #E40511;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
	column-gap: 12px;
    row-gap: 12px;
}
.kenmerken-tab li {
    line-height: 30px; 
    width: 32.5%;
	padding: 17px 25px 17px 25px;
	position: relative;
	font-family: 'Montserrat-Regular';
	color: rgba(17, 17, 17, 0.70);
	line-height: 24px;
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    border-radius: 5px;
    background: #F5F5F5;
}
.kenmerken-tab li:hover{
	border-radius: 5px;
    background: #164194;
	border-color:  #164194;
	color: #fff;
}
.kenmerken-tab li:hover strong{
    color: #fff;
}
.kenmerken-tab li strong {
	font-family: 'Montserrat-Medium';
    font-weight: normal;
	display: block;
	color: #111;
	line-height: 20px;
}
.kenmerken-tab li::after {
	display: none;
}
.kenmerken-tab{
	overflow: hidden;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #D9D9D9;
    padding-bottom: 10px;
	margin-bottom: 10px;
    font-size: 2.4rem;
    line-height: 32px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 20px;
    position: relative;
	margin-bottom: 10px;
	font-family: 'Montserrat-Regular';
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #164194;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #164194;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.left-bg-block h6 {
    line-height: 20px;
	font-size: 1.6rem;
	text-transform: none;
    color: #fff;
}
.each-onderhoud-block h4 {
	text-transform: none;
    font-size: 1.8rem;
    line-height: 20px;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
	text-transform: none;
    color: rgba(17, 17, 17, 0.70);
	font-family: 'Montserrat-Regular';
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tab-btm-btn{
    text-align: left;
    color: #111;
    cursor: pointer;
    margin-top: 33px;
	font-family: 'Montserrat-Bold';
    font-size: 1.6rem;
    letter-spacing: 0.32px;
    line-height: 24px;
	line-height: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.tab-btm-btn:hover{
    color: #E40511;
}
.tab-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.tab-popup-content-wrap{
    overflow-x: hidden;
    overflow-y: scroll;
}
.popup-opacity{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 18, 18, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.tab-popup-area {
    border-radius: 20px;
    background: #FFF;
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #164194;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(22, 65, 148, 0.6);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(22, 65, 148, 0.6);
	max-width: 93%;
}
.popup-cross{
    width: 45px;
    height: 45px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #111;
}
.tab-popup-content {
    overflow: scroll;
    overflow-x: hidden;
    padding-right: 20px;
    height: calc(100% - 116px) !important;
}
.tab-popup-content ul{
    margin-bottom: 33px;
    padding: 0;
}
.tab-popup-content ul:last-child{
    margin-bottom: 0;
}
.popup-cross img{
    width: 38px;
    filter: brightness(1) invert(1);
}
.tab-popup-area h3{
	font-family: 'Montserrat-SemiBold';
    line-height: normal;
    margin-bottom: 20px;
    font-size: 2.8rem;
}
.tab-popup-area p{
    color: rgb(17, 17, 17, 0.6);
    line-height: normal;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-family: 'Montserrat-Regular';
	margin-bottom: 0;
}
.tab-popup-content h4{
	font-family: 'Montserrat-SemiBold';
    line-height: 56px;
    margin-bottom: 20px;
}
.tab-popup-content li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1.5px solid rgb(17, 17, 17, 0.6);
	font-family: 'Montserrat-Regular';
    line-height: 30px;
    color: #111;
    flex-wrap: wrap;
	padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}
.tab-popup-content li::after{
	display: none;
}
.tab-popup-content li strong{
    width: 50%;
    font-weight: normal;
    color: rgb(17, 17, 17, 0.6);
}
.show-popup{
    display: none;
}
.tab-btn .tabs li.active::after {
	transform: rotate(90deg);
	filter: brightness(0) saturate(100%) invert(22%) sepia(94%) saturate(6276%) hue-rotate(351deg) brightness(95%) contrast(110%);
    opacity: 1;
}
.tabs li::after {
	display: inline-block;
	content: url(../images/tab-arrow.svg);
	position: relative;
	top: 2px;
    left: 7px;
	background-color: transparent;
	width: 9px;
    height: auto;
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
}
.tabs li:hover::after{
    filter: brightness(0) saturate(100%) invert(22%) sepia(94%) saturate(6276%) hue-rotate(351deg) brightness(95%) contrast(110%);
    opacity: 1;
}
.tab-btn .tabs li.active::before {
	content: "";
	height: 2px;
	background-color: #E40511;
	width: 95%;
    position: absolute;
	bottom: 1px;
	left: 0;
}
.dtl-tab-mark{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
}
.dtl-tab-mark img{
	height: 100%;
	object-fit: cover;
}
.tab-right-btn .wp-btn{
    display: flex;
    align-items: center;
}
.mobile-tab-right-btn{
    display: none;
}
.tab-right-btn .wp-btn::before {
    content: '';
    height: 21px;
    width: 21px;
    background-image: url(../images/btn-wp.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px;
    margin-right: 8px;
    flex-shrink: 0;
    display: inline-block;
}
.tab-right-btn ul li::after{
    display: none;
}
.tab-right-btn ul{
    display: flex;
    column-gap: 16px;
    justify-content: end;
    margin-bottom: 0;
}
.tab-right-btn ul li{
    padding: 0;
}
.tab-btn-wrap{
    border-bottom: 2px solid  rgba(17, 17, 17, 0.20);
    padding-bottom: 25px;
}
.aanbod-contact-img img{
    height: 100%;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
    border-radius: 90px;
}
.aanbod-contact-img{
    width: 67px;
    height: 67px;
    flex-shrink: 0;
}
.aanbod-contact-info  ul li::after{
    display: none;
}
.each-aanbod-contact {
    display: flex;
    column-gap: 32px;
    border-radius: 5px;
    background: #F5F5F5;
    padding: 20px;
}
.tab-right-part{
    border-radius: 5px;
    border: 1px solid rgba(17, 17, 17, 0.10);
    background: #FFF;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    padding: 9px;
}
.tab-content-wrap{
    padding-top: 48px;
}
.tab-content-wrap .col-lg-3{
    width: 28%;
    padding-left: 1px;
    padding-right: 1px;
}
.tab-content-wrap .col-lg-9{
    width: 72%;
    padding-left: 1px;
    padding-right: 1px;
}
.tab-content-wrap .row{
    margin-left: -1px;
    margin-right: -1px;
}
.aanbod-contact-info-wrap{
    padding-top: 30px;
}
.aanbod-contact-info-wrap ul li{
    padding-bottom: 20px;
}
.aanbod-contact-info-wrap ul li strong{
    font-weight: normal;
    letter-spacing: 0.32px;
    line-height: 24px;
    font-family: 'Montserrat-Bold';
    font-size: 1.6rem;
    color: #111;
}
.aanbod-contact-info-wrap ul li:last-child strong a{
    padding-left: 14px;
}
.aanbod-contact-info-wrap ul li a{
    font-family: 'Montserrat-Regular';
}
.aanbod-contact-info-wrap ul li a:hover{
    color: #E40511;
}
.each-aanbod-contact-text a:hover{
    color: #E40511;
}
.aanbod-contact-info{
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.shear-icon img{
    width: 18px;
}
.shear-icon{
    padding-bottom: 28px;
}
.dtl-tab-btm-mark{
    position: absolute;
    bottom: -50%;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
/* *******aanbod-dtl-btm-sec********* */
.aanbod-dtl-btm-slider .common-arrow{
    top: 38%;
}
.aanbod-dtl-btm-slider .swiper-button-next {
    right: -1.5%;
}
.aanbod-dtl-btm-slider .swiper-button-prev {
    left: -1.5%;
}
.aanbod-dtl-btm-slider .swiper-pagination{
    margin-top: 90px;
}
.aanbod-dtl-btm-sec{
    padding-bottom: 65px;
    padding-top: 115px;
    position: relative;
}
/* ----------------- DIENSTEN LIST START HERE ---------------- */
.diensten-list-banner-sec {
    position: relative;
    z-index: 1;
}
.diensten-list-banner{
    height: 583px;
    width: 100%;
    object-fit: cover;
}
.diensten-list-banner img {
    height: 100%;
    object-fit: cover;
}
.diensten-list-heading {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 64%;
}
.diensten-list-heading h1 strong::after {
    bottom: 8px;
    width: calc(100% + 7%);
    height: 20%;
}
.diensten-list-heading h1 {
    font-family: 'Montserrat-Bold';
}
.diensten-list-arrow {
    position: absolute;
    bottom: 24px;
    cursor: pointer;
    -webkit-animation: bounce 2.5s infinite ease-in-out;
    -o-animation: bounce 2.5s infinite ease-in-out;
    -ms-animation: bounce 2.5s infinite ease-in-out;
    -moz-animation: bounce 2.5s infinite ease-in-out;
    animation: bounce 2.5s infinite ease-in-out;
}
@keyframes bounce {
    0% {
        transform: translateY(-5px)
    }
    50% {
        transform: translateY(10px)
    }
    100% {
        transform: translateY(-5px)
    }
}
.diensten-list-sec {
    padding: 80px 0px 120px;
}
.diensten-list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    row-gap: 40px;
}
.diensten-list-wrapper .each-service-img {
    min-height: 535px;
}
.diensten-list-wrapper .each-service-text p:last-child {
    margin-bottom: 0;
}
.diensten-list-wrapper .each-service-text ul {
    margin: 32px 0px 28px;
}
.diensten-list-wrapper .each-service-text li {
    padding-left: 33px;
    margin-bottom: 16px;
    color: #6C6C6C;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.diensten-list-wrapper .each-service-text-wrap {
    max-width: 585px;
}
.diensten-list-wrapper .diensten-list-item:nth-child(odd) .each-service .row {
    flex-direction: row-reverse;
}
.diensten-list-wrapper .diensten-list-item:nth-child(even) .each-service .each-service-img {
    border-radius: 5px 0 0 5px;
}
.diensten-list-wrapper .diensten-list-item:nth-child(even) .each-service .each-service-text {
    border-radius: 0 5px 5px 0;
    border-right: 3px solid rgba(17, 17, 17, 0.5);
    border-left: none;
}
.diensten-list-wrapper .diensten-list-item:nth-child(even) .each-service:hover .each-service-text{
      border-color: #E40511; 
}
.diensten-list-wrapper .each-service .each-service-text-wrap p strong {
    font-family: 'Montserrat-Bold';
    font-weight: normal;
    margin-bottom: -10px;
    display: block;
}
/* ----------------- DIENSTEN LIST END HERE ---------------- */
/* ----------------- DETAIL PAGE START HERE ---------------- */
.inner-detail-sec {
    padding-bottom: 80px;
}
.back-detail-page-btn {
    position: relative;
    z-index: 1;
    padding: 63px 0px 32px;
}
.inner-detail-layer {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.inner-detail-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px 5px 5px 0px;
    object-fit: cover;
}
.inner-detail-img img{
    height: 100%;
    object-fit: cover;
}
.inner-detail-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.inner-detail-contact {
    display: flex;
}
.inner-detail-wrapper {
    background: #F5F5F5;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.inner-detail-contact {
    border-radius: 5px 0 0 5px;
    background: #F5F5F5;
    height: 100%;
    padding: 42px;
    overflow: hidden;
}
.inner-detail-text {
    max-width: 600px;
}
.inner-detail-contact h2 {
    margin-bottom: 16px;
    word-break: break-all;
}
.inner-detail-contact p:last-child {
    margin-bottom: 0;
}
.inner-detail-box-sec {
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}
.inner-detail-contact p strong{
    font-family: 'Montserrat-Bold';
    font-weight: normal;
    margin-bottom: -10px;
    display: block; 
}
.inner-detail-box-wrapper table {
    width: 100%;
}
.inner-detail-box-wrapper table tbody{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}
.inner-detail-text li::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: rgb(17, 17, 17, 0.6);
    position: absolute;
    left: 7px;
    top: 9px;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-text ul {
    padding-left: 8px;
}
/* TABLE STRAT HERE */
.inner-detail-box-wrapper table tbody tr {
    background: #F5F5F5;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 68px 120px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    gap: 85px;
}
.inner-detail-box-wrapper table tbody tr td{
    position: relative;
    z-index: 1;
}
.inner-detail-box-wrapper table tbody tr td:nth-child(1) {
    width: 20%;
}
.inner-detail-box-wrapper table tbody tr td:nth-child(2) {
    width: 40%;
}
.inner-detail-box-wrapper table tbody tr td:nth-child(3) {
    width: 50%;
}
.inner-detail-box-wrapper table tbody tr:hover {
    background: #164194;
}
.inner-detail-box-wrapper table tbody tr::after {
    position: absolute;
    content: "";
    border: 2px solid rgba(17, 17, 17, 0.20);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-box-wrapper table tbody tr:hover::after {
    border: 2px solid #164194;
}
.inner-detail-box-wrapper table tbody tr td h3 {
    margin-bottom: 0;
    color: #6C6C6C;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    max-width: 370px;
}
.inner-detail-box-wrapper table tbody tr:hover  td h3 {
    color: rgba(255, 255, 255, 0.6);
}
.inner-detail-box-wrapper table tbody tr td:nth-child(2)::after {
    position: absolute;
    content: "";
    background: rgba(17, 17, 17, 0.25);
    width: 1px;
    height: 140px;
    transform: translateY(-50%);
    top: 50%;
    right: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-box-wrapper table tbody tr:hover td:nth-child(2)::after {
    background: #FFF;
}
.inner-detail-box-wrapper table tbody tr td:nth-child(1)::before {
    position: absolute;
    content: "";
    background: rgba(17, 17, 17, 0.25);
    width: 1px;
    height: 140px;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}
.inner-detail-box-wrapper table tbody tr:hover td:nth-child(1)::before {
    background: rgba(255, 255, 255, 0.25);
}
.inner-detail-box-wrapper table tbody tr td h3 strong {
    font-family: 'Montserrat-Regular';
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
}
.inner-detail-box-wrapper table tbody tr td p {
    margin-bottom: 0;
    max-width: 520px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-box-wrapper table tbody tr:hover td p {
    color: rgba(255, 255, 255, 0.6);
}
.inner-detail-box-wrapper table tbody tr td img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-box-wrapper table tbody tr:hover td img {
    filter: brightness(0) invert(1);
}
.inner-detail-box-wrapper table tbody tr td ul{
    padding: 0;
    margin: 0;
}
.inner-detail-box-wrapper table tbody tr td ul li{
    margin-bottom: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.inner-detail-box-wrapper table tbody tr td ul li:last-child{
    margin-bottom: 0;
}
.inner-detail-box-wrapper table tbody tr:hover td ul li{
    color: rgba(255, 255, 255, 0.6);
}
.inner-detail-box-wrapper table tbody tr:hover td ul li::after{
    background: rgba(255, 255, 255, 0.6);
}
.vacatures-detail-box{
    padding-top:120px;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr td:nth-child(1) {
    width: 20%;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr td:nth-child(2) {
    width: 38%;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr td:nth-child(3) {
    width: 70%;
}
.vacatures-detail-box  .inner-detail-box-wrapper table tbody tr {
    padding: 48px 90px;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr td:nth-child(1)::before {
    height: 184px;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr td:nth-child(2)::after {
   height: 184px;
}
.vacatures-detail-box .inner-detail-box-wrapper table tbody tr:hover td ul li::after{
    background: #fff;
}
.werkplaats-detail-sec .inner-detail-box-wrapper table tbody tr {
  padding: 45px 90px;
}
/* TABLE END HERE */

.inner-detail-box-layer {
    position: absolute;
    left: 0;
    bottom: 0;
}
.inner-detail-contact-sec {
    position: relative;
    z-index: 1;
    background: #F5F5F5;
    padding: 0px 0px 80px;
}
.inner-detail-map.common-bg {
    height: 536px;
    position: relative;
    z-index: 1;
}
.inner-detail-map.common-bg::after {
    position: absolute;
    content: "";
    background: linear-gradient(272deg, rgba(17, 17, 17, 0.00) 1%, rgba(17, 17, 17, 0.64) 42.1%, #111 99%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.inner-detail-contact-wrapper {
    position: relative;
    margin-top: -28%;
    z-index: 1;
}
.inner-detail-contact-heading {
    max-width: 600px;
    margin-bottom: 48px;
}
.inner-detail-contact-heading h2 {
    color: #FFF;
    margin-bottom: 14px;
}
.inner-detail-contact-heading p {
    color: #fff;
    margin-bottom: 0px;
}
.contact-form-wrapper {
    border-radius: 10px;
    background: #FFF;
    padding: 48px 40px;
}
.contact-form-wrapper .form-style {
    border-radius: 5px;
    border: 1px solid rgba(17, 17, 17, 0.20);
    background: #F5F5F5;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #111;
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
.contact-form-wrapper .form-style::placeholder {
    color: #111111b4;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.contact-form-wrapper .form-style:-ms-input-placeholder {
    color: #111;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.contact-form-wrapper .form-style:focus {
    box-shadow: none;
    border-color: #111;
    background: #F5F5F5;
    color: #111;
}
.contact-form-wrapper .form-style:focus::placeholder {
    color: #111;
}
.contact-form-wrapper textarea.form-style {
    height: 196px;
}
.contact-form-wrapper .g-5,
.gy-5 {
    --bs-gutter-y: 2.4rem;
}
.contact-form-wrapper .g-5,
.gy-5 {
    --bs-gutter-x: 2.4rem;
}
.contact-form-wrapper>.row .col-lg-7 {
    flex: 0 0 auto;
    width: 62.333333%;
}
.contact-form-wrapper>.row .col-lg-7 {
    flex: 0 0 auto;
    width: 62.333333%;
}
.contact-form-wrapper>.row .col-lg-5 {
    flex: 0 0 auto;
    width: 37.666667%;
}
.contact-form-wrapper .common-btn {
    padding: 16px 23px;
    width: 100%;
    font-family: 'Montserrat-SemiBold';
    border: none;
}
.inner-contact-details{
    border-radius: 5px;
    background: #F5F5F5;
    height: 100%;
    padding: 50px 40px;
    max-width: 520px;
    margin-left: 11px;
}
.f-box-icon {
    border: 1px solid #111111;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-common-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.inner-contact-details .f-common-box:nth-child(1) .f-box-content h4{
    margin-bottom: 2px;
}
.f-box-content h4 {
    margin-bottom: 10px;
}
.f-box-content a{
   color: #111;
   font-size: 1.6rem;
   line-height: 24px;
   font-family: 'Montserrat-Regular';
   display: block;
   margin-bottom: 4px;
   transition: 0.5s ease-in-out;
}
.f-box-content a:hover{
    color: #E40511;
}
.f-mail-box a {
    line-height: 35px;
}
.f-box-content a:last-child{
    margin-bottom: 0;
}
.inner-contact-details .f-common-box:nth-child(2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.20);
    border-top: 1px solid rgba(17, 17, 17, 0.20);
    padding: 20px 0px;
    margin: 10px 0px 20px;
}
.f-box-content table tbody tr {
    display: flex;
    align-items: center;
    gap: 26px;
}
.f-box-content table tbody tr td{
    color: #111;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Montserrat-Regular';
    display: block;
}
.f-box-content table tbody tr td:first-child{
    min-width: 48px;
}
.contact-form-wrapper .form-group{
    margin-bottom: 25px;
}
/* RELATED SERVICE SEC CSS */
.related-service-sec{
    position: relative;
    padding: 120px 0px 200px;
}
.gap-bottom{
    margin-bottom: 80px;
}
.related-service-heading h2 strong::after {
    bottom: 8px;
    width: calc(100% + 1%);
    height: 28%;
}
.related-service-title{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.related-service-content h3 {
    color: #fff;
    line-height: 40px;
    margin-bottom: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.related-service-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    max-width: 410px;
}
.related-service-content .txt-btn {
    color: #fff;
    padding: 12px 24px;
    display: inline-block;
    max-width: 138px;
}
.related-service-title h3{
    background: #FFF;
    padding: 30px;
    border-radius: 0 10px 0 5px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    line-height: 24px;
    margin: 0;
}
.related-service-item{
    border-radius: 5px;
    position: relative;
    height: 470px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.related-service-img{
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.related-service-img img{
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.related-service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 30px 40px;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    background: linear-gradient(0deg, rgba(22, 65, 148, 0.90) 0%, rgba(22, 65, 148, 0.90) 100%);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 0;
}
.related-service-item:hover .related-service-content {
    bottom: 0;
    opacity: 1;
}
.related-service-item:hover .related-service-img img{
    transform: scale(1.1);
}
.related-service-item:hover .related-service-title h3{
    bottom: -100%;
}
.related-service-slider .swiper-pagination.common-pagination {
    bottom: -80px;
}
.related-service-slider .common-pagination .swiper-pagination-bullet-active {
    width: 32px;
}
.related-service-slider{
    position: relative;
}
.related-service-slider .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -25px;
    left: auto;
}
.related-service-slider .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -25px;
    right: auto;
}
/* ----------------- DETAIL PAGE END HERE ---------------- */
/* -------------- CONATCT PAGE START HERE -------------- */
.detail-contact-height {
    height: 536px;
    background-color: #111111;
}
.contact-page-map .common-bg {
    height: 600px;
}
.contact-page-map{
    padding-bottom: 120px;
}
/* -------------- CONATCT PAGE END HERE -------------- */
/* -------------- POPUP START HERE -------------- */
.modal-area .modal-dialog {
    max-width: 1198px;
    margin: 8% auto 0;
}
.modal-area .modal {
   background: rgba(17, 17, 17, 0.40);
   backdrop-filter: blur(9.5px);
}
.modal-area .modal-content {
	position: relative;
    border-radius: 5px;
    background: #1D1D1D;
    border: none;
}
.modal-content-wrap {
    border-radius: 5px;
    overflow: hidden;
}
.modal-content .popup-content{
   padding: 48px 77px 48px 48px;
   border-right: 3px solid #E40511;
}
.modal-content .col-lg-5 {
    width: 39%;
}
.modal-content .col-lg-7 {
    width: 61%;
}
.modal-area .popup-content ul {
    margin-bottom: 32px;
    padding: 0;
    list-style: none;
}
.pop-up-image {
	height: 100%;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.close-img {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 42px;
    height: 43.66px;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 100%;
	z-index: 3;
}
.close-img img {
	width: 16.196px;
    height: 15.394px;
}
.popup-content h3{
    color: #FFF;
    margin-bottom: 32px;
}
.popup-content ul li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    padding-left: 10px;
}
.popup-content ul li:last-child{
    margin-bottom: 0;
}
.popup-content ul li::after{
    background-color: rgba(255, 255, 255, 0.6);
    width: 4px;
    height: 4px;
}
.popup-content p{
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}
.popup-content p:last-child{
    margin-bottom: 0;
}
/* -------------- POPUP END HERE -------------- */
/* ---------------- THANK YOU PAGE START HERE ------------- */
.thank-you-page .banner-content h1 {
    margin-bottom: 84px;
}
.thank-you-page h1 strong::after{
    height: 37%;
    width: calc(100% + 16%);
    bottom: 2px;
}
.thank-you-page .banner-content {
    bottom: 135px;
}
/* ---------------- THANK YOU PAGE END HERE ------------- */
/* ============over-one================== */
/* *******over-one-top-sec***** */
.over-one-top-sec{
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
}
.over-one-top-img-area img{
    border-radius: 5px;
}
.over-one-top-text{
    border-radius: 10px 0 0 10px;
    background: #F5F5F5;
    padding: 45px 60px 30px 42px;
}
.over-one-top-sec .row{
    margin-right: 0;
    margin-left: 0;
}
.over-one-top-sec .col-lg-5{
    padding-left: 0;
    padding-right: 0;
    width: 44%;
}
.over-one-top-sec .col-lg-7{
    padding-left: 0;
    padding-right: 0;
    width: 56%;
}
.over-one-top-text h2{
    padding-bottom: 25px;
}
.over-one-top-text h6{
    padding-bottom: 13px;
}
.over-one-top-mark{
    position: absolute;
    top: -15%;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
/* *******over-one-mid-sec*********** */
.over-one-mid-sec{
    background: #111111;
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
}
.over-one-mid-heading h2{
    color: #FFF;
    padding-bottom: 41px;
}
.over-one-mid-img img{
    border-radius: 10px;
}
.each-over-one-right-info p{
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}
.each-over-one-right-info{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #111;
    padding: 40px 50px 39px 25px;
    margin-bottom: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-over-one-right-info:hover{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #164194;
}
.each-over-one-right-info:last-child{
    margin-bottom: 0;
}
.each-over-one-right-info:hover h3::before{
    filter: brightness(0) saturate(100%) invert(100%);
}
.each-over-one-right-info h3{
    position: relative;
    color: #FFF;
    padding-bottom: 17px;
    padding-left: 50px;
}
.each-over-one-right-info h3::before {
    background-image: url(../images/over-one-mid-list-icon.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 20px;
    width: 30px;
    border-radius: 0;
    background-color: transparent;
    top: 10px;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    content: "";
    position: absolute;
}
.over-one-mid-mark{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.over-one-mid-left{
    position: relative;
    z-index: 1;
}
.over-one-mid-sec .row{
    margin-left: -20px;
    margin-right: -20px;
}
.over-one-mid-sec .col-lg-6{
    padding-left: 20px;
    padding-right: 20px;
}
/* *********over-one-team-sec********* */
.over-one-team-sec{
    padding-top: 120px;
    padding-bottom: 105px;
}
.over-one-team-heading{
    padding-bottom: 80px;
}
.each-team-slider-img img{
    border-radius: 10px;
    height: 100%;
}
.each-team-slider-img{
    position: relative;
    height: 100%;
    object-fit: cover;
}
.each-team-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 22px 30px;
}
.each-team-slide-text h3{
    color: #fff;
    font-size: 3rem;
}
.over-one-team-slider-arrow .swiper-pagination{
    margin-top: 80px;
}
/* .over-one-team-slider .swiper-slide:not(.service-active){
    width: calc(55.1% / 3) !important;
}
.over-one-team-slider .swiper-slide.service-active {
    width: 41% !important;
} */
.over-one-team-slider .swiper-slide {
    transition: width 0.4s ease;
    height: 480px;
}
.each-team-slide {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.each-team-slider-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-team-slider-img{
    height: 100%;
}
.over-one-team-slider-arrow .swiper-button-next{
    right: -1.5%;
    top: 40%;
}
.over-one-team-slider-arrow .swiper-button-prev{
    left: -1.5%;
    top: 40%;
}
.each-team-slide-text{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.over-one-team-slider .service-active .each-team-slide-text h3{
    color: #111;
} 
.over-one-team-slider .service-active .each-team-slide-text{
    border-radius: 0 10px 0 5px;
    background: #FFF;
    z-index: 1;
}
.over-one-team-slider .swiper-slide.service-active::after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(22, 65, 148, 0.20) 0%, rgba(22, 65, 148, 0.20) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.over-one-team-heading  h2{
    padding-top: 15px;
}
/* ========verkocht-page============ */
/* *****verkocht-car-list-sec****** */
.verkocht-car-list-sec{
    padding-top: 83px;
    padding-bottom: 122px;
    position: relative;
}
.verkocht-car-list-heading{
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    align-items: center;
}
.verkocht-car-list-main .row{
    row-gap: 44px;
}
.verkocht-car-list-heading-right p{
    margin-bottom: 0;
}
.verkocht-car-list-main .each-product:hover .each-product-img img {
    transform: unset;
}
.verkocht-car-list-main .row{
    margin-left: -11px;
    margin-right: -11px;
}
.verkocht-car-list-main .col-lg-6{
    padding-left: 11px;
    padding-right: 11px;
}
.inner-detail-contact-wrapper .form-style.photo_upload, 
.inner-detail-contact-wrapper .form-style.foto_upload 
{ 
    color: rgba(17, 17, 17, 0.7); 
}
.verkocht-car-list-heading-left h2{
    font-family: 'Montserrat-Bold';
}


/*******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: 35px;
    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: #1F1F1F;
    border-bottom: 1.5px solid #D9D9D9;
    padding-bottom: 10px;
    font-size: 2.4rem;
    line-height: 32px;

}
.star_icon p img{
    width: 15px;
    height: 15px;
    margin-top: -3px;
    margin-right: 5px;
    filter: invert(0);
    padding-right: 0;
}
.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(#E40511 calc(1*100%/6),#F6F8FA 0 calc(3*100%/6),#E40511 0),
              linear-gradient(#E40511 calc(2*100%/6),#F6F8FA 0 calc(4*100%/6),#E40511 0),
              linear-gradient(#E40511 calc(3*100%/6),#F6F8FA 0 calc(5*100%/6),#E40511 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: #E40511;
  }


.carpass-img {
    width: 115px;
}

/* .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: 3vw;
	font-size: small;
}

.notifcation {
	position: relative;
}

.alert-number {
	display: none;
	position: absolute;
    bottom: 28px;
    left: 16px;
	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;
	}
}
.each-service:hover .each-service-arrow .common-arrow-part{
    background-color: #FAFAFA;
}
.privacy_section h2{
    padding-top: 35px;
}
.privacy_section {
    padding-bottom: 40px;
}

.each-price-table li::after {
    display: none;
}
.range-sec .range-area .fill{
    background-color: #121212;
}
.mini-right-nav {
    position: fixed;
    top: 39%;
    z-index: 999;
    left: 0px;
}
.mini-right-nav li a {
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #9d2727;
}
.mini-right-nav img {
    width: 24px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.mini-right-nav span {
    font-family: 'New Rail Alphabet Medium';
    font-size: 13px;
    bottom: 0;
    letter-spacing: 0.5px;
    right: 60px;
    line-height: 60px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 0;
    -webkit-transition: 0.50s;
    -moz-transition: 0.50s;
    transition: 0.50s;
}
.mini-right-nav li::after{
    display: none;
}
.mini-right-nav li,
.mini-right-nav ul{
    padding-left: 0 !important;
}
.iframe-footer {
    border: 0;
    width: 100%;
    margin-bottom: 0;
    height: 50px;
    display: block;
}
.mtmo_widget_17 {
    position: fixed;
    right: 0;
    top: 25%;
    z-index: 99;
}

.calsty {
    border: 0;
    width: 100%;
    height: 690px;
    background: transparent;
}

.widget-btn-area{
	bottom: 2rem;
  	left: 3rem;
  	z-index: 99;
  	font-family: "Nunito Sans", sans-serif;
}
.widget-btn{
	border-radius: 10px;
  	background: #E40511;
	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;
  	cursor: pointer;
  	color: #fff;
  	font-weight: 600;
}	
.widget-btn span:after, .widget-mobile span:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	right: -15px;
	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-weight: 500;
  	font-size: 2.4rem;
}
.widget-content h5{
	font-weight: 400;
	font-size: 1.7rem;
	margin: 1.5rem 0 5.4rem;
}
.widget-content h5 span{
	text-decoration: underline;
	color: #E40511;
}
.widget-content button, .widget-mobile button{
	border-radius: 5px;
	color: #fff;
	border: 2px solid #E40511;
  	background: #E40511;
	padding: 1.2rem 2rem;
	font-size: 1.7rem;
  	font-weight: 600;
	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: #E40511 !important;
}
.monthly_amount{
	cursor:pointer;
} 
.bottom-0{
	bottom: 0;
}
.start-0{
	left: 0;
}
@media(max-width: 519px){
	.calsty {
        height: 1034px;
    }
}
.footer-partner li:nth-child(1) img{
    width: 120px;
}
.footer-partner li:nth-child(2) img{
    width: 195px;
}