body {
	padding: 0px;
	margin: 0px;
	color: #000;
    font-family: 'Causten-Regular';
    font-size: 1.6rem;
    background-color: #000;
    /*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;
}
.star_icon p { 
    margin-bottom: 0; 
}
/****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;
}
/****iframe-footer****/
.iframe-footer {
    border: 0;
    width: 100%;
    height: 50px;
    display: block;
    max-width: calc(100% - 34px);
    margin: 0 auto 17px;
    border-radius: 10px;
}
/****privacy****/
.privacy_section p { 
    margin-bottom: 10px; 
}
/****form****/
body .form-main-area .error_cls,
body .form-main-area .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
/****error-contact-fix*****/
.error-contact-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.error-contact-wrap li {
    padding-left: 0;
}
.error-contact-wrap li::after,
.error-contact-wrap li::before {
    display: none;
}
/****voorraadwekker_widget_section icon fix*****/
.voorraadwekker_widget_section .select2-results li::after,
.voorraadwekker_widget_section .select2-results li::before {
    display: none;
}
.voorraadwekker_widget_section .select2-results li {
    margin: 0;
}

/* ============================================== index ============================================== */
/****header****/
.header-area {
    padding: 28px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    background-color: #FCC000 !important;
    border-radius: 0 0 10px 10px !important;
}
.header-logo img {
    width: 166px;
}
.header-left {
    display: flex;
    align-items: center;
    column-gap: 50px;
}
.header-nav > ul {
    margin-bottom: 0;
    display: flex;
    justify-content: end;
    column-gap: 50px;
}
.header-nav > ul > li::before {
    display: none;
}
.header-nav > ul > li {
    color: #F5F5F5;
    font-size: 2rem;
    line-height: 24px;
    letter-spacing: 0.4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding-left: 0;
}
.header-nav > ul > li > a {
    color: #F5F5F5;
    font-family: 'Causten-Regular';
    font-size: 2rem;
    line-height: 24px;
    letter-spacing: 0.4px;
    display: block;
    position: relative;
    /* padding-bottom: 10px; */
}
.header-active .header-nav > ul > li > a:hover {
    color: #000;
}
.header-nav > ul > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FCC000;
    width: 100%;
    height: 1px;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li:hover a::after {
    opacity: 1;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 14px;
}
.header-social ul {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-social li::before {
    display: none;
}
.header-social li {
    padding-left: 0;
}
.header-social li a {
    height: 48px;
    width: 48px;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-social li a:hover {
    background-color: #FCC000;
    border-color: #FCC000;
}
.header-active .header-btn .common-btn {
    background-color: #fff;
}
.header-active .header-btn .common-btn:hover {
    border-color: #fff;
    color: #fff;
    background-color: #000;
}
.header-active .header-social li a:hover {
    background-color: #000;
    border-color: #000;
}
.header-social li a img,
.header-active .header-social li a img {
    height: 16px;
    width: 16px;
}
/******menu-btn******/
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #fff;
    padding: 10px 20px;
    color: #000;
    font-family: 'Causten-Medium';
    font-size: 1.6rem;
    line-height: 20px;
    gap: 10px;
    position: relative;
    cursor: pointer;
    z-index: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn.active {
    opacity: 0;
}
.menu-bar {
    position: relative;
    max-width: 16px;
    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: #000;
    content: '';
    height: 2px;
    margin: 3px 0 3px auto;
    width: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.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(-4px) rotate(-135deg);
}
/****dropdown****/
.parent-dropdown {
	position: relative;
}
.parent-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
    padding: 5px;
	left: 0;
	top: 30px;
	border-radius: 10px;
    border: 1px solid rgba(252, 192, 0, 0.30);
    background: #F5F5F5;
	min-width: 168px;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown ul li {
    font-family: 'Causten-Regular';
	color: rgba(0, 0, 0, 0.7);
    padding-left: 0;
}
.parent-dropdown ul li::before {
    display: none;
}
.header-nav .parent-dropdown > a {
    padding-right: 15px;
}
.parent-dropdown ul li a {
    border-radius: 5px;
    padding: 10px 10px;
    color: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    display: block;
    width: 100%;
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.parent-dropdown ul li:last-child a {
	border-bottom: 0;
}
.parent-dropdown ul li a:hover {
	background-color: #fff;
}
.parent-dropdown:hover ul {
	top: 38px;
	opacity: 1;
	pointer-events: all;
}
.parent-dropdown img {
    cursor: pointer;
    width: 10px;
    position: absolute;
    right: 0;
    bottom: 6px;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown:hover img {
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(0) invert(1);
}
.parent-dropdown:hover {
    z-index: 1;
}
.parent-dropdown::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 0;
    width: 100%;
    height: calc(100% + 30%);
    background-color: transparent;
    z-index: -1;
}
/*****side-menu****/
.side-menu-main .col-4 {
    width: 37%;
}
.side-menu-main .col-8 {
    width: 63%;
}
.side-menu-main {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.side-menu-wrap {
    background-color: #000;
}
.side-menu-top-wrap {
    padding: 64px 126px 40px 38px;
    position: relative;
    height: 100%;
}
.side-menu-main > .row {
    height: 100%;
}
.side-menu-img {
    height: 100%;
}
.side-menu-img img {
    height: 100%;
    object-fit: cover;
}
.side-menu-top-wrap > ul {
    padding-top: 115px;
    padding-left: 54px;
}
.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 98;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
} 
.side-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.side-menu-wrap {
    height: 100%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}
.side-menu ul {
    margin-bottom: 0;
}
.side-menu-top-wrap > ul > li {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 2rem;
    display: table;
}
.side-menu-top-wrap > ul > li::before {
    display: none;
}
.side-menu-top-wrap > ul > li > a {
    color: #fff;
    font-size: 4.8rem;
    line-height: 55px;
    font-family: 'Causten-Medium';
}
.side-menu-top-wrap > ul > li > a:hover,
.side-menu-top-wrap > ul > li > a.active {
    color: #FCC000;
}
.side-menu-top-wrap > ul > li > a:hover {
    padding-left: 20px;
}
.side-menu .parent-dropdown > a {
    padding-right: 20px;
}
.side-menu .parent-dropdown img {
    right: 0;
    filter: brightness(0) invert(1);
    bottom: auto;
    top: 57%;
}
.side-menu .parent-dropdown:hover ul {
    top: 50px;
}
.side-menu .parent-dropdown ul {
    left: 0;
    transform: translateX(0);
    background-color: #2E2E2E;
    border-color: rgba(255, 255, 255, 0.1);
}
.side-menu .parent-dropdown ul li {
    font-size: 1.6rem;
}
.side-menu .parent-dropdown ul li a {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.side-menu .parent-dropdown ul li a:hover {
    color: #FCC000;
}
.body-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.menu-btm ul {
    display: flex;
    flex-wrap: wrap;
}
.menu-btm li {
    background-color: #000;
    width: 10%;
    padding-left: 0;
    width: 33.33%;
    min-height: 226px;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    position: relative;
    overflow: hidden;
    --btn-wave-color: #FCC000;
    --btn-wave-opacity: 1;
    --btn-wave-width: 40vw;
    --svg-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 189.334 133.799' preserveAspectRatio='none'%3E%3Cpath d='M142,27.04c-20.252,0-37.914-5.443-47.333-13.52S67.585,0,47.333,0C27.082,0,9.42,5.443,0,13.52v119.869h94.667h94.667 V13.52C179.914,21.597,162.252,27.04,142,27.04z'/%3E%3C/svg%3E"); 
}
.menu-btm li:first-child {
    border-left: 0;
    border-right: 0;
}
.menu-btm li:last-child {
    border-right: 0;
    border-left: 0;
}
.menu-btm li a {
    font-size: 3.2rem;
    line-height: 40px;
    letter-spacing: normal;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 22px 38px;
    width: 100%;
}
.menu-btm li::after {
    --overflow: 30;
    content: "";
    position: absolute;
    inset: -2px;
    height: calc(100% + 4px + var(--overflow) * 1%);
    background-color: var(--btn-wave-color);
    opacity: var(--btn-wave-opacity);
    transform: translateY(100%);
    transition: transform 1.5s cubic-bezier(.215,.61,.355,1);
    animation: button-wave 1s linear infinite;
    z-index: 1;
    -webkit-mask-image: var(--svg-wave);
    mask-image: var(--svg-wave);
    -webkit-mask-size: var(--btn-wave-width) 100%;
    mask-size: var(--btn-wave-width) 100%;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
}
.menu-btm li:hover::after {
    transform: translateY(
        calc(var(--overflow) / (100 + var(--overflow)) * -100%)
    );
}
@keyframes button-wave {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: var(--btn-wave-width) 0;
        mask-position: var(--btn-wave-width) 0;
    }
}
.menu-btm li:hover a {
    color: #000000;
}
.menu-btm li::before {
    height: 23px;
    width: 23px;
    background-image: url(../images/menu-btm-arw.svg);
    background-position: bottom;
    background-size: 23px;
    top: auto;
    left: auto;
    bottom: 19px;
    right: 25px;
    z-index: 2;
}
.menu-logo img {
    width: 285px;
}
.menu-cross {
    width: 30px;
    height: 30px;
    margin-left: auto;
    cursor: pointer;
}
.menu-btm li:hover::before {
    background-image: url(../images/menu-btm-arw-black.svg);
}
/****fixed-part****/
.fixed-part {
    position: fixed;
    right: 0;
    bottom: 16%;
    z-index: 98;
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}
.fix-wp a {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #6EE37A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}
.fix-wp a img{
    width: 27px;
}
.fix-rating a img{
    width: 90px;
    height: 90px;
    border-radius: 10px 0 0 10px;
}
/****banner-sec****/
.banner-wrap {
	position: relative;
}
.banner-video, 
.each-banner {
	height: 915px;
}
.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;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}
.banner-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}
.banner-content-wrap h1 {
    margin-bottom: 20px;
}
.banner-content-wrap li {
    padding-left: 0;
}
.banner-content-wrap li::before {
    display: none;
}
/****product-sec****/
.product-sec {
    border-radius: 20px 20px 0 0;
    background: #F5F5F5;
    overflow: hidden;
    padding: 113px 0 60px;
    position: relative;
}
.product-mark {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}
.product-mark img {
    height: 100%;
}
.product-title h6 em {
    background-color: #FCC000;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-title h6 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-title {
    margin-bottom: 42px;
}
.product-title p {
    max-width: 470px;
    width: 100%;
    margin-bottom: 0;
}
.product-title h2 {
    margin: 7px 0 10px;
}
.each-product {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #fff;
}
.each-product-text {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.each-product-text h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-text h6 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}
.each-product-top li::before {
    display: none;
}
.each-product-top ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 13px 0;
}
.each-product-top li {
    font-size: 1.2rem;
    line-height: 20px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-family: 'Causten-Medium';
    justify-content: center;
}
.each-product-top li img {
    height: 15px;
    width: 15px;
}
.each-product-top {
    padding: 20px 24px 15px;
}
.each-product-price h5 {
    color: #000;
}
.each-product-price h5 strong {
    color: rgba(0, 0, 0, 0.7);
    font-weight: normal;
    font-size: 1.6rem;
    letter-spacing: 0.32px;
}
.product-price-btn {
    border: 1px solid #000;
    border-radius: 100px;
    padding: 6px 30px 6px 15px;
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    color: #000;
    line-height: 20px;
    font-family: 'Causten-Medium';
}
.product-price-btn::after {
    background-image: url(../images/product-price-btn-arrow.svg);
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 10px;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.each-product-price {
    padding: 13px 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.each-product:hover .each-product-price {
    background-color: #FCC000;
    border-color: #FCC000;
}
.product-slider .common-arrow {
    top: 42%;
}
.product-slider .swiper-button-prev {
    left: -5.7%;
}
.product-slider .swiper-button-next {
    right: -5.7%;
}
.product-slider .swiper {
    padding-bottom: 64px;
}
.product-pagination .swiper-pagination {
    bottom: 0;
}
.product-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background-color: rgba(40, 40, 40, 0.2);
    bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 8px;
}
.product-slider .swiper-pagination-bullet-active {
    width: 42px;
    opacity: 1;
    border-radius: 8px;
    background-color: #FCC000;
}
.each-product-img {
    position: relative;
}
.each-product-img-wrap {
    height: 100%;
    width: 100%;
}
.each-product-img img {
    display: none;
}
.each-product-img-wrap img.active {
    display: block;
}
.each-product-progress {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    z-index: 1;
    display: none;
}
.each-product-progress span {
    background-color: #FCC000;
    display: block;
    height: 100%;
    width: 0;
    border-bottom-right-radius: 10px;
}
.mob-product-title-btn {
    display: none;
}
.each-product-price .col-5 {
    text-align: end;
}
 /****service-sec****/
.service-sec {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
}
.service-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}
.service-top-area {
    margin-bottom: 205px;
    position: relative;
    z-index: 1;
}
.service-title h6 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-title h6 em {
    background-color: #FCC000;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-title h2 {
    margin-top: 5px;
}
.service-title h2,
.each-service-content p {
    color: #FFF;
}
.service-top-btn {
    text-align: end;
}
.service-tab-btn {
    position: relative;
    margin-bottom: 86px;
}
.service-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}
.each-service-tab-btn {
    position: relative;
    padding-bottom: 24px;
    cursor: pointer;
}
.each-service-tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FCC000;
    opacity: 0;
}
.service-tab-btn .swiper-slide-thumb-active .each-service-tab-btn::before {
    opacity: 1;
}
.service-tab-btn .swiper-slide-thumb-active .each-service-tab-btn h4 {
    color: #FCC000;
}
.each-service-tab-btn h4 {
    color: rgba(255, 255, 255, 0.70);
}
.each-service-content {
    max-width: 582px;
    width: 100%;
}
.each-service-content h3 {
    margin-bottom: 16px;
}
.each-service-content p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 73.88%, rgba(0, 0, 0, 0.80) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
}
.each-service-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 257px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.each-service-content .common-btn {
    margin-top: 42px;
}
.service-tab-btn .swiper-slide {
    width: auto;
}
.each-service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1s ease;
}
.each-service-img.active {
    opacity: 1;
    transform: scale(1);
}
.service-tab-btn {
    position: relative;
}
.service-line {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: red;
    left: 0;
    width: 0;
    transition: transform 0.35s ease, width 0.35s ease;
    will-change: transform, width;
    z-index: 1;
}
/****usp-marquee-sec****/
.usp-marquee-bg{
    background-color: #FBBF00; 
    overflow: hidden;
}
.usp-marquee-wrap {
    padding: 33px 0px;
	display: flex;
	width: max-content;
    gap: 89px;
}
.usp-marquee-wrap ul{
    display: flex;
    align-items: center;
    gap: 89px;
    padding: 0;
    margin: 0;
}
.usp-marquee-wrap ul li {
    color: #000;
    font-family: 'Causten-Medium';
    padding: 0;
    position: relative;
    font-size: 2rem;
    line-height: 24px;
    letter-spacing: 0.4px;
    padding-left: 106px;
}
.usp-marquee-wrap ul li::before {
    display: none;
}
.usp-marquee-wrap ul li::after {
    content: '';
    position: absolute;
    background: url(../images/marqu-list-img.svg) transparent;
    background-repeat: no-repeat;
    top: 50%;
    background-size: 20px;
    width: 24px;
    height: 21px;
    transform: translateY(-50%);
    left: 0;
}
/****about-sec****/
.about-sec {
    background-color: #000000;
    padding: 130px 0 117px;
    position: relative;
    overflow: hidden;
}
.about-mark {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.about-area {
    margin-top: 76px;
}
.about-top-left h6 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-top-left h6 em {
    background-color: #FCC000;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-top-left h2 {
    margin-top: 5px;
}
.about-top-left h2 {
    color: #FFF;
}
.about-top-right {
    position: relative;
}
.about-top-right-mark {
    position: absolute;
    bottom: -13px;
    right: 53px;
}
.about-top-right-area {
    display: flex;
    align-items: center;
}
.about-top-right-img {
    border: 6px solid #000000;
    border-radius: 100%;
    max-width: 182px;
    height: 182px;
    overflow: hidden;
    position: relative;
    right: -185px;
}
.about-top-right-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.about-top-right-txt {
    border-radius: 110px;
    background: #191919;
    padding: 31px 61px 31px 86px;
    max-width: 508px;
    margin-left: auto;
}
.about-top-right-txt p,
.about-top-right-txt h5 {
    color: #fff;
}
.about-top-right-txt p{
    margin-bottom: 10px;
}
.about-left-img {
    border-radius: 20px;
    overflow: hidden;
}
.about-right-txt p {
    color: #FFF;
    margin-bottom: 36px;
}
.about-right-img ul {
    display: flex;
    flex-wrap: wrap;
}
.about-right-img li {
    padding-left: 0;
}
.about-right-img li::before {
    display: none;
}
.about-right-part {
    padding-left: 69px;
}
.each-about-right-txt {
    padding-right: 20px;
    width: 100%;
    max-width: 560px;
}
.each-about-right-txt h4,
.each-about-right-txt p {
    color: #fff;
}
.each-about-right-txt h4 {
    font-family: 'Causten-Regular';
    margin-bottom: 10px;
}
.each-about-right-txt p {
    margin-bottom: 0;
}
.about-right-slider .common-arrow {
    height: 48px;
    width: 48px;
    background-color: transparent;
}
.about-right-slider .common-arrow img {
    width: 11px;
    filter: brightness(0) invert(1);
}
.about-right-slider .common-arrow:hover img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(61%) saturate(2363%) hue-rotate(1deg) brightness(104%) contrast(107%);
}
/*******about-usp-block********/
.about-usp-block {
    position: relative;
    overflow: hidden;
    max-width: 644px;
    width: 100%;
    margin: 0 auto;
}
.about-usp-img {
    position: relative;
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
}
.each-about-usp-img {
    flex: 0 0 auto;
    width: 27%;
    transition: all 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 144px;
}
.each-about-usp-img.active {
    width: 41%;
}
.each-about-usp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-usp-txt {
    margin-top: 35px;
    max-width: 560px;
}
.each-about-usp-text {
    display: none;
    padding-right: 20px;
}
.each-about-usp-text h4 {
    margin-bottom: 10px;
    color: #fff;
}
.each-about-usp-text p {
    color: #fff;
    margin-bottom: 32px;
}
.each-about-usp-text.active {
    display: block;
}
.about-usp-nav {
    position: absolute;
    right: 0;
    bottom: 101px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
}
.about-usp-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.5s;
}
.about-usp-nav button.disabled {
    opacity: 0.35;
    pointer-events: none;
}
.about-usp-nav button:hover {
    border-color: #FCC000;
    color: #FCC000;
}
/****google-review****/
.google-review {
    padding-bottom: 150px;
}
/****footer-area****/
.footer-area {
    background-color: #191919;
    padding: 76px 0 54px;
    overflow: hidden;
}
.footer-logo img {
    width: 332px;
}
.footer-social ul {
    display: flex;
    gap: 9px;
    justify-content: end;
    margin-bottom: 0;
    list-style: none;
}
.footer-social li {
    padding-left: 0;
}
.footer-social li::before {
    display: none;
}
.footer-social li a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social li:hover a {
    background-color: #FCC000;
    border-color: #FCC000;
}
.footer-top {
    margin-bottom: 55px;
}
.footer-gal-slider {
    overflow: hidden;
    border-radius: 10px;
}
.footer-gal-slider-wrapper {
    margin: 0 -15%;
}
.each-footer-gal {
    border-radius: 10px;
    overflow: hidden;
    height: 275px;
}
.each-footer-gal img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.each-footer-gal:hover img {
    transform: scale(1.1);
}
.footer-mid-info {
    display: flex;
    column-gap: 93px;
    row-gap: 22px;
    flex-wrap: wrap;
}
.each-footer-info tr {
    display: flex;
}
.each-footer-info td {
    color: #FFF;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.each-footer-info h5 {
    margin-bottom: 12px;
}
.each-footer-info p {
    margin-bottom: 0;
}
.each-footer-info a:hover {
    color: #FCC000;
}
.footer-mid {
    margin: 40px 0;
    padding-bottom: 45px;
    position: relative;
}
.footer-mid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}
.footer-mid-txt {
    max-width: 246px;
    margin-left: auto;
}
.footer-mid-txt p {
    color: #fff;
    margin-bottom: 0;
}
.footer-privacy p {
    margin-bottom: 0;
}
.footer-privacy p a {
    color: rgba(255, 255, 255, 0.44);
    font-size: 2.4rem;
    letter-spacing: 0.48px;
    transition: 0.4s ease-in-out;
}
.footer-privacy p a:hover{
    color: #FCC000;
}
.footer-partner {
    text-align: end;
}
/*======================================diensten=============================================*/
/***inner-banner-sec****/
.inner-banner-sec {
    position: relative;
}
.inner-banner-text {
    position: absolute;
    top: 57%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}
/****service-list-sec****/
.service-list-sec {
    padding: 80px 0 90px;
}
.service-list-sec .row {
    margin: 0 -36px;
    row-gap: 57px;
}
.service-list-sec .col-lg-6 {
    padding: 0 36px;
}
.each-service-card-img {
    border-radius: 20px;
    overflow: hidden;
    height: 461px;
}
.each-service-card-img img {
    height: 100%;
    object-fit: cover;
}
.each-service-card-text {
    display: flex;
    align-items: center;
    margin-top: 19px;
}
.each-service-card-text h3 {
    width: 70%;
    line-height: 40px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-card-text h6 {
    position: relative;
    color: #fff;
    font-family: 'Causten-Medium';
    letter-spacing: normal;
    padding-right: 30px;
    text-align: right;
    width: 30%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-card-text h6::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 7px;
    right: 0;
    background-image: url(../images/txt-btn-arrow.svg);
    background-position: center center;
    background-size: 15px;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}
.each-service-card:hover .each-service-card-text h6,
.each-service-card:hover .each-service-card-text h3 {
    color: #FCC000;
}
.each-service-card:hover .each-service-card-text h6::after {
    filter: brightness(1) invert(0);
}
/*====================================popup======================================*/
.modal-area .modal-dialog {
    max-width: 1098px;
    margin: 8% auto 0;
}
.modal-area .modal {
    background-color: rgba(0, 0, 0, 0.6);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    border-radius: 20px;
    overflow: hidden;
}
.modal-area .popup-content img {
	width: 235px;
}
.modal-area .popup-content p {
	margin: 57px 0 37px;
    max-width: 400px;
    width: 100%;
}
.modal-area .popup-content {
    border-radius: 0;
    background-color: #fff;
    overflow: hidden;
    padding:  70px;
    position: relative;
}
.pop-up-image {
	height: 100%;
    overflow: hidden;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.modal-content-wrap .col-lg-5 {
    width: 47%;
}
.modal-content-wrap .col-lg-7 {
    width: 53%;
}
/*====================================aanbod======================================*/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 70px 0;
    position: relative;
    background-color: #F5F5F5;
}
.aanbod-filter-sec  .sec-mark {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    width: 48%;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #000;
	font-size: 1.4rem;
    font-family: 'Causten-Medium';
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #FCC000;
}
.filter-reset a:hover img{
   filter: brightness(0) saturate(100%) invert(72%) sepia(93%) saturate(1721%) hue-rotate(1deg) brightness(103%) contrast(104%); 
}
.select-style {
    width: 100%;
    height: 44px;
    color: #000;
    font-family: 'Causten-Medium';
    font-size: 1.6rem;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 0 30px 0 18px;
    background: url(../images/filter-arrow.svg) transparent no-repeat 91% center / 10px;
    appearance: none;
    line-height: 44px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
}
.select-style.show {
    border-radius: 5px 5px 0 0;
}
.select-style:hover {
    border-color: #FCC000;
    color: #FCC000;
    background-image: url(../images/filter-arrow-yellow.svg);
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
    font-family: 'Causten-Medium';
}
.filter-content {
    display: none;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #000;
    background-color: #F5F5F5;
    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: #000;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Causten-Medium';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #000;
    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 #000;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #FCC000;
    border-color: #FCC000;
    background-image: url(../images/check-tick.png);
    background-size: 9px;
    background-position: center center;
    background-repeat: no-repeat;
}
.auto-overview-tag {
    margin-right: 5px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #000;
    border-radius: 20px;
    background-color: rgba(252, 192, 0, 0.5);
    font-family: 'Causten-Medium';
    font-size: 1.4rem;
    border: 1px solid rgba(252, 192, 0, 0.5);
    flex-direction: row-reverse;
}
.cross-btn {
    width: 9px;
    margin-left: 0 !important;
    margin-right: 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.auto-overview-tag img {
    filter: invert(1);
}
.auto-overview-tag:hover {
    background-color: #FCC000;
    border-color: #FCC000;
    color: #0F0F0F;
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	width: 25%;
}
.hidden-filter .col-lg-3 h5 {
    display: none;
    font-family: 'Causten-Medium';
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #000;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 80px;
    background-color: #F5F5F5;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    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 {
    font-family: 'Causten-Medium';
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 100px;
    background-color: #FCC000;
    border-color: #FCC000;
    text-transform: capitalize;
    color: #161616;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #FCC000;
    color: #000;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #14181E;
	border-radius: 100%;
	color: #000;
    border: 1px solid #14181E;
	margin-left: 30px;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    display: none;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #F5F5F5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.mobile-filter-close span img {
	width: 9px;
    filter: brightness(0);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #FCC000;
    border: 1px solid #FCC000;
    color: #161616;
	padding: 10px;
	border-radius: 0 50px 50px 0;
    text-transform: capitalize;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: #000;
    border-color: #000;
    color: #FCC000;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort h6 {
	margin-right: 10px;
    color: #000;
    font-family: 'Causten-Medium';
    text-transform: none;
    letter-spacing: normal;
    display: none;
}
.filter-sort .each-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.show_selected_filter_cls {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}
/****aanbod-range-filter****/
.aanbod-range-filter label {
    font-size: 1.6rem;
}
.aanbod-range-filter .ui-slider .ui-slider-handle {
    width: 25px;
    height: 25px;
    background-color: #FCC000;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: rgba(252, 192, 0, 0.4);
    border-color: rgba(252, 192, 0, 0.4);
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #FCC000;
}
.aanbod-range-filter .ui-widget.ui-widget-content {
    border: 0;
}
.aanbod-range-filter .slider-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aanbod-range-filter .slider-inputs span {
    color: #000;
}
.aanbod-range-filter .slider-inputs input {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    padding: 8px;
    background-color: transparent;
    width: 100px;
    color: #000;
    font-size: 1.6rem;
    line-height: normal;
}
.mob-filter-visible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    margin: 0 auto;
    max-width: 510px;
    width: 100%;
}
.filter-sort {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}
.mob-filter-visible h6 {
    color: #000;
}
.mob-filter-visible strong {
    font-weight: normal;
    color: #FCC000;
}
/*****aanbod-product-sec*****/
.aanbod-product-sec {
    padding-bottom: 124px;
    background-color: #F5F5F5;
}
.aanbod-product-sec > .container > .row {
    row-gap: 16px;
}
.aanbod-product-sec .container {
    position: relative;
    z-index: 1;
}
/* ============================================== verkocht ============================================== */
/****verkocht-product-sec****/
.verkocht-product-sec {
    position: relative;
    padding: 186px 0 99px;
    background-color: #F5F5F5;
    overflow: hidden;
}
.verkocht-product-sec > .container > .row {
    row-gap: 16px;
}
.verkocht-product-sec .container {
    position: relative;
    z-index: 1;
}
.verkocht-product-sec .each-product-price {
    padding: 22px 15px;
    border-top: 0;
}
.verkocht-product-sec .each-product-top {
    padding-bottom: 0;
}
.verkocht-product-sec .sec-mark {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
}
/* ============================================== aanbod-dtl ============================================== */
/****back-btn****/
.back-btn {
    padding: 162px 0 32px;
}
.back-btn .common-btn {
    position: relative;
    z-index: 1;
    letter-spacing: normal;
}
/****aanbod-top-btn-sec****/
.aanbod-top-btn-sec {
    margin-bottom: 52px;
}
.aanbod-top-btn-wrap {
    margin-top: -78px;
}
.aanbod-top-btn ul {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}
.aanbod-top-btn li::before {
    display: none;
}
.aanbod-top-btn ul {
    column-gap: 10px;
    justify-content: end;
}
.aanbod-top-btn li {
    padding-left: 0;
    margin-bottom: 0;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-top-btn li a img {
    width: 15px;
}
.aanbod-top-btn li:hover {
    background-color: #FCC000;
    border-color: #FCC000;
}
/*===========================aanbod-dtl===============================*/
/****aanbod-top-sec****/
.aanbod-top-sec {
    position: relative;
    overflow-x: clip;
}
.aanbod-top-mark {
    position: absolute;
    top: -22%;
    left: 0;
    pointer-events: none;
    height: calc(100% + 22%);
}
.aanbod-top-mark img {
    height: 100%;
    object-fit: cover;
}
.aanbod-top-car-slider-wrap .col-lg-7 {
    width: 54%;
}
.aanbod-top-car-slider-wrap .col-lg-5 {
    width: 46%;
}
.each-aanbod-car-slider {
    border-radius: 10px;
    overflow: hidden;
}
.aanbod-car-slider .common-arrow {
    background-color: transparent;
    height: 57px;
    width: 57px;
}
.aanbod-car-slider .common-arrow img {
    width: 10px;
}
.aanbod-car-slider .common-arrow:hover {
    background-color: #FCC000;
}
.aanbod-car-slider .common-arrow:hover img {
    filter: brightness(100) invert(1);
}
.aanbod-car-slider .swiper-button-next {
    right: 7%;
}
.aanbod-car-slider .swiper-button-prev {
    left: 7%;
}
.aanbod-top-thumb-slide {
    margin-top: 22px;
}
.each-aanbod-car-thumb-img {
    border-radius: 10px;
    overflow: hidden;
}
.aanbod-car-dtls {
    border-radius: 10px;
    padding: 22px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.aanbod-car-dtls-title p {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 18px;
}
.aanbod-car-dtls-title h4 {
    color: #fff;
}
.aanbod-car-dtls-title h4 strong {
    color: #FCC000;
    font-weight: normal;
}
.aanbod-car-info {
    padding: 12px 0;
    margin: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.aanbod-car-info table,
.aanbod-car-info tbody {
    width: 100%;
}
.aanbod-car-info tr {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 60px;
}
.aanbod-car-info td h6 {
    color: #FFF;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.aanbod-car-info td h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 37px;
    height: 2px;
    background-color: rgba(252, 192, 0, 0.6);
}
.aanbod-car-info td h5 {
    color: #FFF;
    font-family: 'Causten-Regular';
}
.aanbod-contact-info li {
    padding-left: 0;
}
.aanbod-contact-info li::before {
    display: none;
}
.aanbod-contact-info h5 {
    color: #FFF;
    font-family: 'Arial-Regular';
    line-height: 30px;
    letter-spacing: normal;
}
.aanbod-contact-info ul {
    display: flex;
    gap: 11px;
    margin-top: 15px;
}
.aanbod-contact-info li:first-child {
    position: relative;
}
.aanbod-contact-dtl {
    display: flex;
    flex-wrap: wrap;
}
.aanbod-contact-dtl p {
    margin-bottom: 0;
    margin-right: 7px;
    padding-right: 7px;
}
.aanbod-contact-dtl p a {
    position: relative;
}
.aanbod-contact-dtl p a:hover {
    color: #FCC000;
}
.aanbod-contact-dtl p:first-child a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(12deg);
    right: -7%;
    width: 1px;
    height: 90%;
    background-color: #fff;
}
.aanbod-contact-dtl-area {
    display: flex;
    align-items: center;
    gap: 34px;
}
.aanbod-contact-img {
    min-width: 170px;
    width: 170px;
    height: 130px;
    border-radius: 5px;
    overflow: hidden;
}
.aanbod-contact-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.aanbod-contact-info .common-btn {
    padding-left: 14px;
    padding-right: 14px;
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.tab-main-area {
    position: relative;
    z-index: 2;
}
.kenmerken-tab li::before {
    display: none;
}
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 60px;
	margin-bottom: 38px;
    border: 0;
	justify-content: center;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    text-transform: none;
    font-family: 'Causten-Medium';
    padding-left: 0;
    position: relative;
    color: #fff;
    text-align: right;
    font-size: 2.4rem;
    line-height: 24px;
    letter-spacing: 0.48px;
}
.tab-btn .tabs li.active {
    background-color: transparent;
    opacity: 1;
	position: relative;
}
.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;
}
.tab_drawer_heading{
	display: none;
}
.tab-btn .tabs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 82px;
    padding-bottom: 40px;
    margin-bottom: 45px;
    padding-left: 0;
}
.tab-btn {
    position: relative;
}
.tab-btn::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.20);
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
	column-gap: 9px;
    row-gap: 12px;
}
.kenmerken-tab li {
    width: 49%;
    padding: 17px 31px;
    position: relative;
    color: rgba(255, 255, 255, 0.70);
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    border: 1px solid #191919;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 5px;
    background-color: #191919;
    font-family: 'Causten-Regular';
}
.kenmerken-tab li strong {
    font-weight: normal;
    display: block;
    color: #fff;
}
.kenmerken-tab li:hover {
    background: #FCC000;
    border-color: #FCC000;
    color: #000000;
}
.kenmerken-tab li:hover strong {
    color: #000000;
}
.kenmerken-tab li::after {
	display: none;
}
.kenmerken-tab {
	overflow: hidden;
    max-width: 713px;
    width: 100%;
}
.bullet-panel ul {
    margin-bottom: 0;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #FCC000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #fff;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel li::before {
    background-image: url(../images/bullet.svg);
    height: 7px;
    width: 7px;
    background-size: 7px;
    top: 8px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel li {
    margin-bottom: 10px;
    color: #fff;
}
.dtl-tab-sec .bullet-panel li::marker {
    color: #FCC000;
}
.tab_content p {
    color: #fff;
}
.left-bg-block {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FCC000;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 130px);
    border: 1px solid #FCC000;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.block-dtls h4,
.left-bg-block h6 {
    color: #fff;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
    color: #fff;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tab-btm-btn {
    margin-top: 66px;
    cursor: pointer;
}
.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(22, 22, 22, 0.6);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.tab-popup-area {
    border-radius: 30px;
    background: #191919;
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #FCC000;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(252, 192, 0, 0.2);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(252, 192, 0, 0.2);
    max-width: 93%;
}
.popup-cross {
    background: transparent;
    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 #FCC000;
}
.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: 35px;
}
.tab-popup-area h3 {
    margin-bottom: 12px;
}
.tab-popup-area p {
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.tab-popup-content h4 {
    margin-bottom: 20px;
    color: #fff;
}
.tab-popup-content li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    color: #fff;
    padding: 6px 0;
}
.tab-popup-content li::before {
	display: none;
}
.tab-popup-content li strong{
    width: 50%;
    font-weight: normal;
    color: rgba(247, 240, 236, 0.70);
}
.show-popup{
    display: none;
}
.tab-btn .tabs li::before {
    content: "";
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    position: absolute;
    top: auto;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: none;
    background-size: auto;
}
.tab-btn .tabs li:hover::before,
.tab-btn .tabs li.active::before {
    opacity: 1;
}
.tab-mark {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.tab-left-part {
    border-radius: 5px;
    border: 1px solid rgba(47, 55, 51, 0.10);
    background-color: #2F3733;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 8px 8px 0;
    margin-top: 80px;
}
.dtl-tab-sec .col-lg-9 {
    width: 70%;
}
.dtl-tab-sec .col-lg-3 {
    width: 30%;
}
.each-tab-car-slider {
    border-radius: 10px;
    overflow: hidden;
}
.tab-car-slider {
    max-width: 564px;
    margin-left: auto;
    width: 100%;
}
.tab-main-area .col-lg-8 {
    width: 60%;
}
.tab-main-area .col-lg-4 {
    width: 40%;
}
.tab_container.tab-content {
    padding-right: 30px;
}
/****aanbod-btm-sec****/
.aanbod-btm-sec {
    background-color: #fff;
    padding: 103px 0;
    position: relative;
    overflow: hidden;
}
.aanbod-btm-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}
.aanbod-btm-title {
    margin-bottom: 77px;
}
.aanbod-btm-title h2 {
    color: #020202;
}
.aanbod-btm-slider .each-product-text {
    background-color: #F5F5F5;
}
.aanbod-btm-slider .common-arrow {
    border-color: #000000;
    background-color: transparent;
}
.aanbod-btm-slider .common-arrow:hover {
    border-color: #FCC000;
    background-color: #FCC000;
}
.aanbod-btm-slider .common-arrow img {
    filter: brightness(100) invert(1);
    width: 10px;
}
.aanbod-btm-slider .swiper-button-prev {
    left: -5%;
}
.aanbod-btm-slider .swiper-button-next {
    right: -5%;
}
/* ============================================== diensten-dtl ============================================== */
/****dtl-header****/
.dtl-header {
    border-radius: 0 0 10px 10px;
    background-color: #000;
    overflow: hidden;
}
/****diensten-dtl-top****/
.diensten-dtl-top {
    background-color: #F5F5F5;
    padding-top: 180px;
    position: relative;
}
.diensten-dtl-top-mark {
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 0;
}
.diensten-dtl-top-img {
    height: 548px;
}
.diensten-dtl-top-img img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.diensten-dtl-top-info h2 {
    margin-bottom: 29px;
}
.diensten-dtl-top-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.diensten-dtl-top-info p {
    max-width: 544px;
    width: 100%;
}
.diensten-dtl-top-info {
    margin-bottom: 30px;
}
.diensten-dtl-top .col-lg-6 {
    padding-left: 25px;
    padding-right: 25px;
}
.diensten-dtl-top .row {
    margin-left: -25px;
    margin-right: -25px;
}
/****diensten-dtl-table****/
.diensten-dtl-table {
    background-color: #F5F5F5;
    padding: 44px 0 82px;
}
.diensten-dtl-table tr {
    display: flex;
    column-gap: 50px;
    flex-wrap: wrap;
}
.diensten-dtl-table td {
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    padding: 35px 46px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 48.2%;
    position: relative;
}
.diensten-dtl-table td p{
    margin-bottom: 0;
}
.diensten-dtl-table td h4 {
    margin-bottom: 18px;
}
.diensten-dtl-table td::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url(../images/diens-dtl-hover-mark.png);
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.diensten-dtl-table td:hover {
    background-color: #FCC000;
}
.diensten-dtl-table td:hover::after {
    opacity: 1;
}
/****form-sec****/
.form-sec {
    padding: 120px 0 85px;
}
.form-vector-img {
    display: table;
    margin-right: 0;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 35%;
    transform: translateX(-50%);
    filter: brightness(0.4);
}
.form-main-area .form-group {
    margin-bottom: 58px;
    position: relative;
}
.form-main-area .form-group-textarea {
    margin-bottom: 0 !important;
}
.form-main-area .form-styl {
    resize: none;
    border-radius: 0;
    overflow: hidden;
    font-family: 'Causten-Regular';
    color: #fff;
    font-size: 2rem;
    line-height: 24px;
    letter-spacing: 0.4px;
    padding: 12px 0;
    padding-right: 40px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
}
.form-main-area .form-styl:placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.form-main-area .form-styl:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.form-main-area .form-styl::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.form-main-area .form-styl:focus {
    box-shadow: none;
    color: #fff;
    border-bottom: 1px solid #fff;
}
.form-main-area .form-styl:focus ~ .form-vector-img {
    filter: brightness(1);
}
.form-main-area .form-styl:focus::placeholder {
    color: #fff;
}
.form-main-area .form-group textarea.form-control {
    min-height: auto;
    height: 58px;
}
.form-main-area .form-styl.photo_upload,
.form-main-area .form-styl.foto_upload {
    color: rgba(255, 255, 255, 0.4);
}
.form-btn {
    margin-top: 40px;
}
.form-left-title h2 {
    color: #fff;
    margin: 10px 0 15px;
}
.form-left-title {
    margin-bottom: 60px;
}
.form-left-title p {
    color: #fff;
    max-width: 600px;
    width: 100%;
}
.each-form-left-contact h4 {
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 14px;
    position: relative;
}
.each-form-left-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(252, 192, 0, 0.7);
    width: 60%;
    height: 1px;
}
.form-left-contact {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 20px;
}
.each-form-left-contact {
    width: 49%;
}
.form-left-title h6 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-left-title h6 em {
    background-color: #FCC000;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.each-form-left-contact tr {
    display: flex;
    flex-direction: column;
}
.each-form-left-contact a,
.each-form-left-contact td {
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
    letter-spacing: 0.32px;
}
.each-form-left-contact a:hover {
    color: #fff;
}
.form-left {
    padding-right: 20px;
}
.form-left-title-mobile {
    display: none;
}
/****dtl-slider-sec****/
.dtl-slider-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.dtl-slider-mark {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.dtl-slider-title {
    margin-bottom: 63px;
    text-align: center;
}
.dtl-slider-title h2 {
    color: #fff;
}
.dtl-slider .common-arrow {
    top: 42%;
}
.dtl-slider .swiper-button-next {
    right: -7%;
}
.dtl-slider .swiper-button-prev {
    left: -7%;
}
/* ============================================== werkplaats-dtl ============================================== */
/****werkplaats-dtl-top****/
.werkplaats-dtl-top .diensten-dtl-top-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.werkplaats-dtl-top .diensten-dtl-top-info p {
    max-width: 1005px;
}
.werkplaats-dtl-top .diensten-dtl-top-info li {
    width: 49.6%;
}
.werkplaats-dtl-top .diensten-dtl-top-info li::before {
    background-image: url(../images/yellow-bullet.svg);
}
/****werkplaats-dtl-table****/
.werkplaats-dtl-table tr {
    gap: 36px;
}
.werkplaats-dtl-table td {
    width: 31.6%;
}
/* ============================================== vacature-dtl ============================================== */
/****vacature-dtl-table****/
.vacature-dtl-table li::before {
    background-image: url(../images/yellow-bullet.svg);
}
.vacature-dtl-table td:hover li::before {
    background-image: url(../images/black-bullet.svg);
}
/* ============================================== contact ============================================== */
/****map-sec****/
.map-sec {
    position: relative;
}
.map-sec::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}
.map  {
    height: 540px;
}
/* ============================================== Over-ons ============================================== */
/****inner-banner-sec****/
.over-ons-banner-right {
    margin-top: -6%;
}
/****over-ons-top****/
.over-ons-top {
    position: relative;
    padding-top: 69px;
    overflow: hidden;
}
.over-ons-top-mark {
    position: absolute;
    left: 0;
    top: -14%;
    pointer-events: none;
}
.over-ons-top .container {
    position: relative;
    z-index: 1;
}
.over-ons-top-img {
    padding-right: 36px;
    height: 100%;
}
.over-ons-top-img img {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.over-ons-top-info h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    margin-bottom: 10px;
}
.over-ons-top-info h6 em {
    background-color: #FCC000;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.over-ons-top-info h2 {
    color: #fff;
    margin-bottom: 25px;
}
.over-ons-top-info p {
    color: #FFF;
}
.each-counter-wrap {
    display: flex;
    align-items: center;
    column-gap: 94px;
    position: relative;
    z-index: 1;
}
.each-counter-wrap h6 {
    border-bottom: 1px solid rgba(252, 192, 0, 0.7);
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #fff;
}
.each-counter-wrap h2 {
    color: #fff;
}
.counter-area {
    position: relative;
    padding: 33px 0 33px;
}
.counter-area::after {
    content: '';
    background-color: #191919;
    position: absolute;
    left: -80px;
    top: 0;
    height: 100%;
    width: 100vw;
    z-index: -1;
}
.each-counter {
    width: 25%;
}
.over-ons-top-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.over-ons-top-info {
    margin-top: 48px;
}
/****over-ons-about-sec****/
.over-ons-about-sec {
    padding: 70px 0 97px;
    background-color: #F5F5F5;
}
.over-ons-about-sec .about-area {
    margin-top: 0;
}
.over-ons-about-sec .about-right-txt p {
    color: #000;
}
.over-ons-about-sec .each-about-usp-text h4 {
    color: #000;
}
.over-ons-about-sec .each-about-usp-text p {
    color: #000;
}
.over-ons-about-sec .about-usp-nav button {
    border-color: #000;
    color: #000;
}
.over-ons-about-sec .about-usp-nav button:hover {
    border-color: #FCC000;
    color: #FCC000;
}
.over-ons-about-sec .about-usp-nav {
    bottom: 60px;
}
/****team-slider-sec****/
.team-slider-sec {
    background-color: #F5F5F5;
    padding-bottom: 86px;
}
.team-slider-title {
    text-align: center;
    margin-bottom: 42px;
}
.each-team-slider {
    background-color: #191919;
    border-radius: 10px;
    overflow: hidden;
    padding: 47px 10px 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-team-slider-info {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    overflow: hidden;
    padding: 10px 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-team-slider-info h4,
.each-team-slider-info h6 {
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-team-slider-img {
    height: 332px;
}
.each-team-slider-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-team-slider:hover .each-team-slider-info {
    background-color: #FCC000;
}
.each-team-slider:hover .each-team-slider-info h4 {
    color: #191919;
}
.each-team-slider:hover .each-team-slider-info h6 {
    color: #191919;
}
.team-slider .swiper-button-next {
    right: -5.2%;
}
.team-slider .swiper-button-prev {
    left: -5.2%;
}
.team-slider .common-arrow {
    border-color: #000;
    background-color: transparent;
}
.team-slider .common-arrow:hover {
    background-color: #FCC000;
    border-color: #FCC000;
}
/****over-ons-google-review****/
.over-ons-google-review {
    background-color: #F5F5F5;
}
.vacature-dtl-table table {
    width: 100%;
}
.dbcfRs {
    display: none !important;
}

/*******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: #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;
}
.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(#FCC000  calc(1*100%/6),#fff 0 calc(3*100%/6),#FCC000  0),
              linear-gradient(#FCC000  calc(2*100%/6),#fff 0 calc(4*100%/6),#FCC000  0),
              linear-gradient(#FCC000  calc(3*100%/6),#fff 0 calc(5*100%/6),#FCC000  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: #FCC000 ;
  }


.carpass-img {
    width: 115px;
}










.widget-btn-area {
  bottom: 2rem;
  left:3rem;
  z-index: 99;
  font-family: "Nunito Sans", sans-serif;
}
.widget-btn {
  border-radius: 10px;
  background: #FF7100;
  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:-.5rem;
  content: '';
  width:1rem;
  height: 1rem;
  background: url(../images/next-white.svg) no-repeat center/ contain;
}
.widget-content {
  background: #1c1c1c;
  padding: 4.5rem;
  -webkit-box-shadow:-5px 1px 17px 3px rgba(0,0,0,0.2);
  -moz-box-shadow:-5px 1px 17px 3px rgba(0,0,0,0.2);
  box-shadow:-5px 1px 17px 3px rgba(0,0,0,0.2);
  border-radius: 20px;
  width: 51rem;
  display: none;
}
.arw-rotate {
  margin-top:-2.5rem;
  margin-bottom: 1rem;
  transform: rotate(-90deg);
  cursor:pointer;
}
.widget-content h4, .widget-content h5 {
  text-transform: unset;
  color: #fff;
  letter-spacing: normal;
}
.widget-content h4 {
  font-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: #FF7100;
}
.widget-content button, .widget-mobile button {
  border-radius: 5px;
  color: #fff;
  border: 2px solid #FF7100;
  background: #FF7100;
  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: #FF7100 !important;
}
.monthly_amount{
  cursor:pointer;
}
.showroom-view {
    width: 100%;
    height: 100%;
}

/* whats app lab start  */

.fixed-whatsapp-icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    bottom: 2%;
    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: 18px 0;
    position: absolute;
    z-index: 1;
    bottom: -10px;
    right: 5vw;
    font-size: small;
}

.notifcation {
    position: relative;
}

.alert-number {
    display: none;
    position: absolute;
    bottom: 43px;
    right: 12px;
    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;
    }
}
/* whatapp lab end  */



@media(max-width: 767.98px){
    .morgeninternet-footer.viewcar-footer {
        margin-bottom: 68px !important;
        height: 50px;
    }
    .widget-mobile {
        background: #1c1c1c;
        padding: 1.5rem 1.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 99;
        font-family: "Nunito Sans", sans-serif;
    }
    .widget-mobile .d-flex {
        gap: 5px;
    }
    .widget-mobile button {
        padding: .65rem;
        font-size: 1.45rem;
    }

    .widget-mobile h6 span {
        font-size: 1.45rem;
        cursor: pointer;
        font-weight: 600;
        padding-right: 2.5rem;
        color: #fff;
        margin-right: .75rem;
    }
    .widget-mobile h6 span:after {
        background: url(../images/arw-color.svg) no-repeat center/ contain;
        right: 0;
    }
    .widget-mobile h6 span:not(.active):after {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    .widget-mobile h6 span.active {
        color: #FF7100;
    }
    .widget-mobile h6 span.active:after {
        transform: translateY(-50%) rotate(-90deg);
    }
    .widget-mobile-content {
        bottom: 6.5rem;
        background: #121212;
        padding: 3rem 1.5rem 1.5rem;
        z-index: 99;
        display: none;
    }

    .widget-mobile-content.show-div {
        display: block;
    }
    .widget-content-wrap {
        background: #1c1c1c;
        border: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem;
    }
    .widget-mobile-content td {
        color: #fff;
        vertical-align: top;
        font-size: 1.45rem;
        font-weight: 400;
        padding: 4px 0;
    }
    .widget-mobile-content td a {
        color: #fff;
        text-decoration: none;
    }
    .widget-mobile-content td a:hover {
        color: #FF7100;
    }
    .whatsapp-block {
        background: #25D366;
        border-radius: 5px;
        width:3.7rem;
        height: 3.7rem;
    }
    .whatsapp-block img {
        width: 1.8rem;
    }
    .widget-mobile-content td span {
        width: 2.2rem;
        height: 2.2rem;
        border: 1px solid rgba(255,255,255,0.1);
        margin-right: 1.8rem;
    }
}
.share-social-media-button .a2a_dd svg {
    margin-right: 0 !important;
}
.share-social-media-button .a2a_dd {
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-social-media-button a span {
    line-height: 0;
    font-size: 0;
}
.aanbod-top-car-slider-wrap .row {
    --bs-gutter-x: 22px;
}
.overons-marquee .usp-marquee-wrap ul li::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
}
.modal-area .popup-content .black-border-btn:hover{
    background-color: #6EE37A;
    border-color: #6EE37A;
}
.fix-rating {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.team-slider-sec .swiper-button-next.swiper-button-disabled, .team-slider-sec .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}
.fix-wp {
    position: relative;
    right: -30px;
}
.aanbod-btm-sec .swiper-button-next.swiper-button-disabled, .aanbod-btm-sec .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}
.privacy_section p{
    color: #FFF;
}
.privacy_section {
    padding: 120px 0;
}
.acties-left-content h2{
    color: #FFF;
}
.formError .formErrorContent {
    position: absolute !important;
}
.footer-partner img{
	width: 140px;
}

.lease-content iframe {
    width: 100%;
    height: 1100px;
}