body {
	padding: 0px;
	margin: 0px;
    font-family: 'Inter-Regular';
    font-size: 16px;
    color: #1c1c1c;
    background: #F9F9F9;
    /*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; 
}
/****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;
}
/******glass-effect******/
.glass-necessary .glass-element {
	display: none;
}
.glass-container {
	position: relative;
	overflow: hidden;
}
.glass-filter {
	position: absolute;
	inset: 0;
	z-index: 0;
	backdrop-filter: blur(0px);
	filter: url(#lg-dist);
	isolation: isolate;
}
.glass-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.glass-specular {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    overflow: hidden;
    box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 0px 0px rgb(255 255 255 / 15%);
}
.glass-content {
	position: relative;
	z-index: 3;
}
/*************fix-wp***************/
.fix-wp {
    position: fixed;
    right: 38px;
    bottom: 5%;
    z-index: 98;
}
.fix-wp a {
    width: 63px;
    height: 63px;
    border-radius: 50px;
    background-color: #36D927;
    border: 1px solid #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 27px;
}
/*****************header****************/
/* header-top */
.header-top{
    border-radius: 10px;
    margin-top: 16px;
    overflow: hidden;
    background: #FF5300;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-marquee-wrap {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
}
.header-marquee-wrap ul{
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.header-marquee-wrap ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    background-image: url(../images/header-li-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px;
    height: 19px;
    width: 19px;
}
.header-marquee-wrap ul li {
    padding-left: 24px;
    margin-bottom: 0px;
}
/* header-wrap */
.header-wrapper{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-wrap{
    padding: 16px 0;
}
.header-active {
    background-color: #FFF;
    box-shadow: 0px 0px 3px 2px #0000001f;
}
.header-active .header-wrap{
    padding: 24px 0;
}
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    overflow-x: clip;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background: #F9F9F9;
}
.header-active .header-top{
    margin-top: -44px;
}
.header-logo img {
    width: 234px;
}
.header-nav > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    list-style: none;
    margin-bottom: 0;
}
.header-nav > ul > li{
    margin: 0;
    padding: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a{
    color: rgba(1, 1, 1, 0.62);
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Inter-Medium';
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a:hover{
    color: #010101;
}
.header-nav > ul > li > a:hover img{
    filter: brightness(1) invert(1);
}
.header-nav > ul > li::after{
    display: none;
}
.header-btn {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}
.parent-dropdown {
	position: relative;
}
.parent-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	left: 0;
	top: 0px;
	border-radius: 5px;
    border: 1px solid #FF5300;
    background-color: #FF5300;
	min-width: 186px;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown ul li {
	color: #FFF;
    padding-left: 0;
    border-bottom: 1px solid #ffffff3b;
    margin-bottom: 0;
}
.parent-dropdown ul li:last-child{
    border-bottom: 0px;
}
.parent-dropdown ul li::after{
    display: none;
}
.parent-dropdown ul li a {
	color: #FFF;
	padding: 8px 10px;
	display: block;
    text-align: left;
	width: 100%;
}
.parent-dropdown ul li:last-child a {
	border-bottom: 0;
}
.parent-dropdown ul li a:hover {
	color: #FFF;
    text-decoration: underline;
}
.parent-dropdown:hover ul {
    top: 24px;
    opacity: 1;
    pointer-events: all;
}
.parent-dropdown:hover ul li::after{
    display: none;
}
.parent-dropdown img {
    cursor: pointer;
    width: 8px;
    margin-left: 3px;
    filter: brightness(1) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-top: -3px;
    opacity: 0.6;
}
.parent-dropdown.active img {
    margin-left: 3px;
    margin-top: -3px;
}
.parent-dropdown:hover img {
    transform: rotate(180deg);
    opacity: 1;
}
.parent-dropdown:hover {
    z-index: 1;
}
/*****mobile-menu*****/
.header-menu-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
}
.mobile-menu-wrap {
    height: 100%;
    padding: 140px 24px;
}
.menu-btn {
    padding: 0;
    width: 45px;
    height: 16px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    display: none;
}
.header-navbar.active .menu-btn{
    opacity: 0;
}
.menu-btn span:nth-child(1) {
    width: 100%;
    height: 1px;
    background: #010101;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.menu-btn span:nth-child(2) {
    width: 100%;
    height: 1px;
    background: #010101;
    position: absolute;
    content: "";
    top: 6px;
    right: 0px;
    border-radius: 2px;
}
.menu-btn span:nth-child(3) {
    width: 100%;
    height: 1px;
    background: #010101;
    position: absolute;
    content: "";
    top: 12px;
    right: 0px;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.menu-btn.active span:nth-child(2){
    display: none;
}
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
}
.menu-btn.active span:nth-child(3){
    transform: rotate(-45deg);
    top: 0;
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0px;
    height: 100vh;
    width: 67%;
    z-index: 98;
    clip-path: inset(0 0 0 100%);
    background-color: #F9F9F9;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-navbar .menu-close {
    border-radius: 120px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #EEC658;
    width: 50px;
    height: 44px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-menu-active {
	clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.mobile-menu ul {
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
.body-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(17 17 17 / 82%);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 0;
}
.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-wrap ul li{
    margin-bottom: 30px;
    padding: 0;
}
.mobile-menu-wrap ul li::after{
    display: none;
}
.mobile-menu-wrap > ul > li::before {
    position: absolute;
    content: "";
    background: linear-gradient(153deg, rgb(169 169 169 / 82%) 35.1%, rgba(255, 255, 255, 0.00) 100%);
    right: 0;
    bottom: -15px;
    width: 100vw;
    height: 1px;
}
.mobile-menu-wrap ul li a {
    color: #010101;
    font-size: 2.8rem;
}
.mobile-menu-wrap .parent-dropdown ul li{
    margin-bottom: 0;
}
.mobile-menu-wrap .parent-dropdown ul li a{
    font-size: 1.6rem;
}
/* ========= HOME PAGE START HERE =========  */
/* home-banner-sec */
.home-banner-sec {
    position: relative;
    z-index: 1;
    padding-top: 85px;
}
.home-banner-video,
.home-each-banner {
    height: 810px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.home-banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.home-each-banner img {
    height: 100%;
    object-fit: cover;
}
.home-banner-content {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 144px;
    width: 100%;
}
.home-banner-heading h1{
    margin: 24px 0;
}
.home-banner-heading .font-bg h6{
    color: #FFF;
    display: none;
}
.home-banner-heading .font-bg {
    background: rgb(255 83 0 / 14%);
    max-width: max-content;
    margin: 0 auto 55px;
}
.home-banner-heading .common-btn {
    max-width: max-content;
    margin: 0 auto;
}
.home-banner-heading .common-btn:hover{
    border-color: #FF5300;
}
.home-banner-heading {
    display: grid;
}
/* home-product-sec */
.home-product-sec{
    padding-top: 120px;
    padding-bottom: 56px;
}
.home-product-heading h2{
    margin-top: 18px;
    margin-bottom: 23px;
}
.each-product{
    border-radius: 26px;
    background: #FFF;
    padding: 16px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info {
    width: 100%;
}
.each-product:hover{
    box-shadow: 0 0 9px 0 rgba(1, 1, 1, 0.10);
}
.each-product-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
    height: 100%;
}
.each-product-img-wrap {
	height: 100%;
	width: 100%;
}
.each-product-img img {
	display: none;
    height: 100%;
    object-fit: cover;
}
.each-product-img-wrap img.active {
	display: block;
}
.each-product-progress {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 10px;
	z-index: 1;
    border-radius: 0 0 10px 10px;
	display: none;
}
.each-product-progress span {
	background: linear-gradient(90deg, rgba(255, 83, 0, 0.52) 0%, #FF5300 100%);
	display: block;
	height: 100%;
	width: 0;
    opacity: 1;
    border-radius: 0 0 10px 10px;
}
.each-product-text h4{
    margin-top: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-text p{
    color: rgba(1, 1, 1, 0.50);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.each-product-heading{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
}
.each-product-heading table,
.each-product-heading tbody{
    width: 100%;
}
.each-product-heading table tr{
    display: flex;
    align-items: center;
    column-gap: 18px;
    row-gap: 8px;
    flex-wrap: wrap;
}
.each-product-heading table tr td{
    color: #010101;
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
}
.each-product-heading table tr td::after {
    position: absolute;
    content: "";
    background-color: #010101;
    width: 1px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}
.each-product-heading table tr td:last-child:after {
    display: none;
}
.each-product-price h6{
    color: #FF5300;
    font-family: 'Inter-Bold';
    margin-top: 19px;
}
.each-product-price h6 strong {
    color: rgba(1, 1, 1, 0.50);
    font-family: 'Inter-Regular';
    font-weight: normal;
    position: relative;
    display: inline-block;
    /* top: -3px; */
    top: 0;
}
.product-btn .common-arrow {
    top: 50%;
    transform: translateY(-50%);
}
.product-btn .common-arrow:hover{
    background-color: #FF5300;
    border-color: #FF5300;
}
.product-btn .swiper-button-next {
    right: -73px;
}
.product-btn .swiper-button-prev {
    left: -73px;
}
.product-more-btn {
    text-align: center;
    margin-top: 24px;
}
.home-product-wave .home-product-wave1 {
    position: absolute;
    left: -40px;
    top: -139px;
    pointer-events: none;
}
.home-product-wave .home-product-wave2 {
    position: absolute;
    right: -40px;
    top: -139px;
    pointer-events: none;
}
.home-product-sec .home-product-slider .swiper{
    padding: 8px;
}
.anbd-related-slider .swiper {
    padding: 8px;
}
/* home-service-sec */
.home-service-wrap{
    background-color: #2C2C2C;
    border-radius: 20px;
    padding-top: 46px;
    padding-bottom:37px;
}
.home-service-heading .font-bg h6{
    color: #FFF;
}
.home-service-heading .border-btn .default-bg-circle{
    background-color: #2C2C2C;
}
.home-service-heading h2{
    color: #FFF;
    margin-top: 24px;
    margin-bottom: 40px;
}
.home-service-heading .border-btn{
    border-color: #FF5300;
    color: #FFFFFF;
}
.home-service-heading .border-btn::after{
    background-image: url(../images/btn-icon.svg);
}
.home-service-wrapper > .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}
.home-service-wrapper > .row .col-lg-4 {
    width: 37.4%;
}
.home-service-wrapper > .row .col-lg-8 {
    width: 62.6%;
}
.home-service-wrapper {
    margin-top: 40px;
}
.home-service-thmb .swiper{
    height: 400px;
}
.each-service-thmb{
    background-color: #232323;
    border-radius: 32px;
    padding: 24px 20px 24px 75px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.home-service-thmb .swiper-slide-thumb-active .each-service-thmb{
    background-color: #FF5300;
}
.each-service-thmb:hover{
    background-color: #FF5300;
}
.each-service-thmb h3{
    position: relative;
}
.each-service-thmb h3::after {
    position: absolute;
    content: "";
    background-image: url(../images/service-thmb-icon.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 40px;
    width: 40px;
    height: 40px;
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
}
.home-service-slider {
    border-radius: 32px;
    overflow: hidden;
}
.each-service {
    background-color: #232323;
    border-radius: 32px;
    height: 100%;
    overflow: hidden;
    padding: 24px;
}
.each-service .row {
    --bs-gutter-x: 24px;
}
.each-service-img {
    height: 350px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.each-service-img img{
    height: 100%;
    object-fit: cover;
}
.each-service-heading h3{
    color: #FFF;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 2.4rem;
}
.each-service-heading p{
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
}
.each-service-heading {
    max-width: 337px;
}
.ach-service-heading ul{
    padding: 0;
    margin: 0;
}
.each-service-btn {
    margin-top: 40px;
}
.each-service-btn .border-btn .default-bg-circle{
    background-color: #232323;
}
/* home-about-sec */
.home-about-sec{
    padding-top: 120px;
}
.home-about-sec .row .col-lg-5 {
    width: 37%;
}
.home-about-sec .row .col-lg-7 {
    width: 63%;
}
.home-about-heading h2{
    margin-top: 16px;
    margin-bottom: 26px;
}
.home-about-heading p{
    margin-bottom: 40px;
}
.home-about-wrapper{
    position: relative;
}
.home-about-wrapper::after {
    position: absolute;
    content: "";
    border-radius: 24px;
    background: linear-gradient(180deg, #FFE7DC 0%, rgba(255, 231, 220, 0.00) 100%);
    width: 335.156px;
    height: 412.5px;
    bottom: -136px;
    right: 0;
    z-index: 0;
}
.home-about-info {
    width: 457px;
    height: 457px;
    border-radius: 457px;
    background: #FFF;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.home-about-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    padding: 20px 60px;
}
.home-about-text img{
    margin-bottom: 16px;
}
.home-about-text p{
    color: rgba(1, 1, 1, 0.50);
    font-style: italic;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-about-sign h3{
    color: #FF5300;
    font-family: 'Cedarville-Cursive';
    line-height: 32px;
}
.home-about-sign {
    text-align: center;
    width: 100%;
    margin-top: 27px;
}
.home-about-box {
    width: 180px;
    height: 180px;
    background: #F9F9F9;
    border-radius: 50%;
    padding: 10px;
    overflow: hidden;
    position: absolute;
    bottom: -30px;
    left: -47px;
}
.home-about-box img{
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.about-box-icon {
    width: 94px;
    height: 94px;
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 50%;
    border: 10px solid #F9F9F9;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 24px;
}
.about-box-icon img{
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.home-about-wave{
    position: absolute;
    top: 0;
    right: 0;
}
.home-about-wave {
    position: absolute;
    top: -120px;
    right: -25px;
    z-index: -1;
    pointer-events: none;
}
/* home-counter-sec */
.home-counter-sec {
    padding-top: 80px;
    padding-bottom: 157px;
}
.home-counter-slider {
    border-radius: 20px;
    background: linear-gradient(86deg, #F3AA87 1.07%, #FDC 99.13%);
    padding: 32px;
    position: relative;
    z-index: 1;
}
.home-counter-wrap{
    position: relative;
}
.home-counter-wrap::after {
    position: absolute;
    content: "";
    border-radius: 20px;
    background: #FFF;
    width: 558px;
    height: 106px;
    bottom: -37px;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
}
.home-counter-sec .container > .row .col-lg-6:first-child {
    width: 52%;
}
.home-counter-sec .container > .row .col-lg-6:last-child {
    width: 48%;
}
.each-counter h3{
    margin-bottom: 4px;
}
.each-counter p{
    color: #FFF;
    margin-bottom: 0;
}
.home-conter-info h6{
    color: #010101;
    font-family: 'Inter-Bold';
    line-height: normal;
    margin-bottom: 12px;
}
.home-conter-info p{
    margin-bottom: 0;
    color: rgba(1, 1, 1, 0.50);
}
.home-counter-slider .swiper-wrapper .swiper-slide:nth-child(2) {
    margin-left: -28px;
}
.home-counter-slider .swiper-wrapper .swiper-slide:nth-child(3) {
    margin-left: 0px;
}
.home-counter-slider .swiper-wrapper .swiper-slide:nth-child(4) {
    margin-left: 30px;
}
.home-counter-content {
    max-width: 560px;
    margin-left: auto;
}
.home-counter-content .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
}
.counter-line {
    margin-bottom: 30px;
}
.home-conter-info {
    max-width: 277px;
}
/* home-faq-sec */
.home-faq-heading h2{
    margin-bottom: 32px;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
	border-radius: 10px;
	background-color: #FFFFFF;
	padding: 27px 80px 27px 24px;
	margin-bottom: 16px;
}
.acc-block li.show_accordian{
    background: #FF5300;
    padding-top: 24px;
    padding-bottom: 24px;
}
.acc-block li.show_accordian h4{
    color: #FFF;
}
.acc-block li::after {
    display: none;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block li h4 {
	position: relative;
	cursor: default;
	padding-right: 28px;
    color: #010101;
    font-family: 'Inter-Regular';
}
.acc-block li h4::after {
    position: absolute;
    height: 44px;
    width: 40px;
    background-image: url(../images/acc-down-arrow.svg);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    top: -5px;
    right: -56px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.show_accordian h4::after {
	transform: rotate(180deg);
}
.acc-block p {
	margin-top: 16px;
	margin-bottom: 0;
	width: 100%;
    color: #FFF;
}
/* review-sec */
.review-sec{
    padding-top: 120px;
    padding-bottom: 16px;
}
/* footer area */
.ft-wrap{
    background-color: #2C2C2C;
    border-radius: 20px;
    padding: 56px 0;
    margin-bottom: 16px;
}
.ft-logo {
    text-align: center;
}
.ft-logo img {
    width: 304px;
}
.ft-info h4{
    color: #FFF;
    margin-bottom: 25px;
}
.ft-info p{
    margin-bottom: 3px;
}
.ft-info p:last-child{
    margin-bottom: 0px;
}
.ft-info p a{
    color: rgba(255, 255, 255, 0.70);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.ft-info p a:hover{
    color: #FF5300;
}
.ft-info-addr p a {
    line-height: 30px;
}
.ft-info-addr table{
    width: 100%;
}
.ft-info table tr td{
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
.ft-middle {
    display: flex;
    max-width: 893px;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 80px;
}
.ft-info table tbody tr{
    display: flex;
    align-items: center;
}
.ft-info table tbody tr td:first-child {
    width: 120px;
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: 24px;
    margin-top: 80px;
}
.ft-bottom li img {
    width: 20px;
}
.ft-bottom ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ft-bottom ul li::after{
    display: none;
}
.ft-bottom ul li{
    padding: 0;
    margin: 0;
}
.ft-bottom ul li a{
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.ft-bottom ul li a:hover{
    background-color: #FF5300;
}
.ft-bottom ul li a:hover img{
    filter: brightness(0) invert(1);
}
.ft-bottom p{
    margin-bottom: 0;
}
.ft-bottom p a{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    color: rgba(255, 255, 255, 0.70);
}
.ft-bottom p a:hover{
    color: #FF5300;
}
/* ========= HOME PAGE END HERE ========= */
/* ========= DIESTEN PAGE START HERE ========= */
.inner-banner-sec {
    padding-top: 142px;
}
.inner-banner-bg{
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}
.inner-banner-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-banner-heading{
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 180px;
    width: 100%;
}
.inner-banner-text h1{
    margin-top: 24px;
}
.inner-banner-text .font-bg h4{
    color: #FFF;
    font-family: 'Inter-Regular';
}
.inner-banner-text .font-bg {
    background: rgb(255 83 0 / 11%);
}
/* listing-sec */
.listing-sec{
    background: #F9F9F9;
    padding: 120px 0;
    overflow: hidden;
}
.listing-wave .listing-wave1 {
    position: absolute;
    top: -120px;
    left: -47px;
}
.listing-wave .listing-wave2 {
    position: absolute;
    top: -120px;
    right: -47px;
}
.each-list{
    border-radius: 32px;
    background: #FFF;
    padding: 24px 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list:hover{
    background-color: #FF5300;
}
.each-list:hover .each-list-wave img {
    filter: brightness(0) invert(1);
}
.each-list-wave {
    position: absolute;
    right: 110px;
    top: 0;
}
.each-list-img {
    border-radius: 10px;
    overflow: hidden;
    height: 348px;
}
.each-list-img img{
    height: 100%;
    object-fit: cover;
}
.each-list-text h3{
    color: #131313;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list-text p{
    color: rgba(19, 19, 19, 0.70);
    margin: 24px 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-list-text ul li{
    color: #131313;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list-text ul{
    margin-bottom: 40px;
}
.each-list .row .col-lg-4 {
    width: 35.5%;
}
.each-list .row .col-lg-8 {
    width: 64.5%;
}
.each-list-text {
    padding-left: 54px;
    padding-right: 204px;
}
.each-list:hover h3{
    color: #FFFFFF;
}
.each-list:hover p{
    color: rgba(255, 255, 255, 0.70);
}
.each-list:hover ul li{
    color: #FFFFFF;
}
.each-list:hover ul li::after{
    filter: brightness(0) invert(1);
}
.each-list-text .border-btn{
    border: 1px solid #010101;
    color: #010101;
}
.each-list-text .border-btn::after {
    filter: brightness(0) invert(0);
}
.each-list:hover .border-btn{
    background: #FFF;
    border-color: #FFF;
    color: #FF5300;
}
.each-list:hover .border-btn::after{
    filter: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(4409%) hue-rotate(1deg) brightness(102%) contrast(106%);
}
.listing-wrap .each-list:nth-child(even) .row {
    flex-direction: row-reverse;
}
.listing-wrap .each-list:nth-child(even){
    margin: 24px 0; 
}
.listing-wrap .each-list:nth-child(even):last-child{
    margin-bottom: 0;
}
.listing-wrap .each-list:nth-child(even) .each-list-text {
    padding-left: 68px;
    padding-right: 154px;
}
.listing-wrap .each-list:nth-child(even) .each-list-wave{
    display: none;
}
.each-list-text .border-btn .accent-bg-circle{
    background-color: #010101;
}
.each-list-text .border-btn:hover{
    color: #FFF;
}
.each-list-text .border-btn:hover::after{
    filter: brightness(0) invert(1);
}
/* ========= DIESTEN PAGE END HERE ========= */
/****************aanbod-list*****************/
/****aanbod-top-info****/
.aanbod-top-info {
    padding: 212px 0 20px;
    max-width: max-content;
    margin: 0 auto;
    text-align: center;
}
.aanbod-top-info h2 {
    margin-bottom: 5px;
}
.aanbod-top-info h2 strong {
    color: #FF5300;
}
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    position: relative;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.desk-filter-reset a::after {
    display: none;
}
.desk-filter-reset .common-btn {
    padding: 12px 42px;
}
.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: #000;
    opacity: 0.5;
} */
.select-style {
    width: 100%;
    color: #626262;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    border: 1px solid #626262;
    border-radius: 100px;
    padding: 12px 35px 12px 22px;
    background: url(../images/filter-arrow.svg) transparent no-repeat 89% center / 10px;
    appearance: none;
    line-height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
}
.select-style.show {
    border-radius: 10px 10px 0 0;
}
.select-style:hover {
    border-color: #010101;
    color: #010101;
    background-image: url(../images/filter-arrow-black.svg);
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
    font-family: 'Inter-Regular';
}
.filter-content {
    display: none;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #010101;
    background-color: #F9F9F9;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    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: #010101;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Inter-Medium';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #010101;
    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 #010101;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #FF5300;
    border-color: #FF5300;
    background-image: url(../images/check-tick.svg);
    background-size: 16px;
    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: #010101;
    border-radius: 100px;
    background-color: rgba(255, 83, 0, 0.5);
    font-family: 'Inter-Medium';
    font-size: 1.4rem;
    border: 1px solid rgba(255, 83, 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: #FF5300;
    border-color: #FF5300;
    color: #fff;
}
.auto-overview-tag:hover img {
    filter: invert(0);
}
.filter-reset.desk-filter-reset {
    display: flex;
    align-items: end;
    justify-content: end;
    margin-bottom: -60px;
    margin-top: 15px;
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	width: 20%;
}
.hidden-filter .col-lg-4 {
    width: 25%;
}
.hidden-filter .col-lg-3 h5 {
    display: none;
    font-family: 'Inter-Medium';
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #010101;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 142px;
    background-color: #F5F5F5;
    border-top: 1px solid rgba(1, 1, 1, 0.3);
    border-bottom: 1px solid rgba(1, 1, 1, 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: 'Inter-Medium';
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 100px;
    background-color: #FF5300;
    border-color: #FF5300;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn::after {
    display: none;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #FF5300;
    color: #FF5300;
}
.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: #f9f9f9;
    border-bottom: 1px solid rgba(1, 1, 1, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid rgba(1, 1, 1, 1);
}
.mobile-filter-close span img {
	width: 9px;
    filter: brightness(0);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #FF5300;
    border: 1px solid #FF5300;
    color: #fff;
	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::after {
    display: none;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: rgba(255, 83, 0, 0.5);
    border-color: rgba(255, 83, 0, 0.5);
    color: #fff;
}
.cursor-pointer {
	cursor: pointer;
}
/* .filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
} */
.filter-sort h6 {
	margin-right: 10px;
    color: #010101;
    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;
}
.mob-filter-visible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    column-gap: 10px;
    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: #010101;
}
.mob-filter-visible strong {
    font-weight: normal;
    color: #FF5300;
}
/****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: #FF5300;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: rgba(255, 83, 0, 0.5);
    border-color: rgba(255, 83, 0, 0.5);
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #FF5300;
}
.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: #010101;
}
.aanbod-range-filter .slider-inputs input {
    border-radius: 100px;
    border: 1px solid rgba(1, 1, 1, 0.6);
    padding: 8px;
    background-color: transparent;
    width: 100px;
    color: #010101;
    font-size: 1.6rem;
    line-height: normal;
}
/****aanbod-list-product-sec****/
.aanbod-list-product-sec {
    padding: 68px 0 118px;
}
.aanbod-list-product-sec .row {
    row-gap: 20px;
}
/* ========= INNER DETAIL PAGE START HERE ========= */
/****list-detail-sec****/
.list-detail-sec {
    padding-top: 246px;
    padding-bottom: 80px;
}
.list-detail-img{
    border-radius: 10px;
    overflow: hidden;
}
.list-detail-content{
    padding-left: 46px;
}
.list-detail-content h2{
    margin-bottom: 24px;
}
.list-detail-content p{
    margin-bottom: 24px;
}
.list-detail-content h6 {
    color: #010101;
    font-family: 'Inter-Bold';
    margin-bottom: 2px;
}
.list-detail-wave .listing-wave1 {
    position: absolute;
    top: -148px;
    left: -49px;
}
.list-detail-wave .listing-wave2 {
    position: absolute;
    top: -148px;
    right: -49px;
}
/****detail-box-sec****/
.detail-box-sec{
    padding-bottom: 120px;
}
.detail-box-sec table,
.detail-box-sec tbody{
    width: 100%;
}
.detail-box-sec tr{
    display: flex;
    row-gap: 24px;
    column-gap: 32px;
    flex-wrap: wrap;
}
.detail-box-sec tr td {
    border-radius: 20px;
    background: linear-gradient(86deg, #FFF 1.07%, #FFF 99.13%);
    padding: 32px 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 31.6%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.detail-box-sec tr td::after{
    position: absolute;
    content: "";
    background: linear-gradient(86deg, #F3AA87 1.07%, #FDC 99.13%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 0;
}
.detail-box-sec tr td:hover::after{
    opacity: 1;
}
.detail-box-sec tr td h6{
    color: #010101;
    font-family: 'Inter-Bold';
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.detail-box-sec tr td p{
    color: rgba(1, 1, 1, 0.50);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.detail-box-border {
    line-height: 0;
    margin-bottom: 40px;
}
/****contact-sec****/
.contact-warp {
    background-color: #2C2C2C;
    border-radius: 20px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.form-height-add{
    margin-bottom: 16px;
}
.contact-gap{
    margin-bottom: 16px;
}
body .form-wrap .error_cls,
body .form-wrap .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
.contact-heading .font-bg h6 {
    color: #fff;
}
.contact-heading h2 {
    color: #fff;
    margin: 25px 0 18px;
}
.contact-heading p {
    color: #fff;
}
.contact-heading {
    margin-bottom: 42px;
}
.form-wrap {
    padding-right: 55px;
}
.form-wrap .form-group {
    position: relative;
    margin-bottom: 12px;
}
.form-wrap .form-group label  {
    position: absolute;
    top: 30px;
    left: 0;
    color: rgba(227, 217, 208, 0.5);
    transition: 0.3s;
    pointer-events: none;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Inter-Regular';
}
.form-wrap .form-group.focused label {
    top: 0;
}
.form-wrap .form-style:focus + label{
    top: 0;
}
.form-wrap .form-style {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(227, 217, 208, 0.5);
    background: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
    height: 100%;
    padding: 28px 0 15px;
    padding-left: 0;
    color: #F4F4F4;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: normal;
}
.form-wrap .form-style::placeholder {
    color: rgba(227, 217, 208, 0.5);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-wrap .form-style:-ms-input-placeholder {
    color: rgba(227, 217, 208, 0.5);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-wrap .form-style:focus {
    box-shadow: none;
    border-color: #F4F4F4;
    background: transparent;
    color: #F4F4F4;
}
.form-wrap .form-style:focus::placeholder {
    color: #F4F4F4;
}
.form-wrap textarea.form-style {
    height: 126px;
    resize: none;
}
.form-wrap .form-style.photo_upload,
.form-wrap .form-style.foto_upload {
    color: rgba(227, 217, 208, 0.5);
}
.form-btn {
    margin-top: 40px;
}
.form-btn .common-btn {
    background-color: transparent;
}
.form-btn .common-btn .accent-bg-circle{
    background-color: #FF5300;
}
.form-btn .common-btn .default-bg-circle{
    background-color: #2C2C2C;
}
.form-img {
    height: 426px;
    width: 426px;
    border: 10px solid rgba(255, 255, 255, 0.15);
    border-radius: 228.5px;
    overflow: hidden;
    margin-right: 0;
    margin-left: auto;
}
.form-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.contact-warp .col-lg-8 {
    width: 65.5%;
}
.contact-warp .col-lg-4 {
    width: 34.5%;
}
.each-form-info h4 {
    color: #fff;
    margin-bottom: 26px;
}
.each-form-info a,
.each-form-info td {
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
}
.each-form-info td {
    font-size: 1.6rem;
}
.each-form-info td:first-child {
    padding-right: 69px;
}
.form-info-block-wrap {
    max-width: 71%;
    margin: 70px auto 0;
}
.form-info-block {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.each-form-info a:hover {
    color: #FF5300;
}
/****dtl-slider-sec****/
.dtl-slider-sec {
    padding: 120px 0;
}
.dtl-slider-title {
    text-align: center;
    margin-bottom: 40px;
}
.each-dtl-slider {
    border-radius: 26px;
    background-color: #FF5300;
    overflow: hidden;
    padding: 15px 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-dtl-slider-img img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.each-dtl-slider-info h4 {
    color: #fff;
    max-width: 80%;
}
.dtl-round {
    height: 53px;
    width: 53px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.dtl-round img {
    filter: brightness(0) invert(1);
}
.each-dtl-slider-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}
.d-dtl-wave .d-dtl-wave1 {
    position: absolute;
    top: -148px;
    left: -49px;
}
.d-dtl-wave .d-dtl-wave2 {
    position: absolute;
    top: -148px;
    right: -49px;
}
.dtl-slider-title h2 {
    margin-top: 22px;
}
.each-dtl-slider:hover .dtl-round {
    background-color: #fff;
}
.each-dtl-slider:hover .dtl-round img {
    filter: brightness(1);
}
.each-dtl-slider-img {
    height: 314px;
}
/* ========= INNER DETAIL PAGE END HERE ========= */
/********************vacature-dtl******************/
/****vacature-detail-box-sec****/
.vacature-detail-box-sec li {
    color: rgba(1, 1, 1, 0.5);
    z-index: 1;
}
.vacature-detail-box-sec tr td {
    width: 48.7%;
}
/********************contact******************/
/****map-sec****/
.map-sec {
    padding: 60px 0;
}
.map {
    height: 500px;
    border-radius: 20px;
}
/********************verkocht******************/
/****verkocht-top****/
.verkocht-top {
    max-width: max-content;
    margin: 0 auto;
    text-align: center;
    padding-top: 210px;
}
/****verkocht-product-sec****/
.verkocht-product-sec .each-product-price {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}
/********************over-ons******************/
/****over-ons-top****/
.over-ons-top {
    padding: 120px 0 160px;
}
.over-ons-top-wave .over-ons-top-wave1 {
    position: absolute;
    top: -135px;
    left: -49px;
}
.over-ons-top-wave .over-ons-top-wave2 {
    position: absolute;
    top: -135px;
    right: -49px;
}
.over-ons-big-round {
    position: relative;
    height: 457px;
    width: 457px;
    border-radius: 50%;
    z-index: 1;
}
.over-ons-big-round img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}
.over-ons-small-round {
    position: absolute;
    bottom: -50px;
    left: -50px;
    height: 223px;
    width: 223px;
}
.over-ons-small-round img {
    border-radius: 273px;
    border: 10px solid #F9F9F9;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.over-ons-right {
    /* max-width: max-content;
    margin: 0 auto; */
    position: relative;
}
.over-ons-left h6 {
    color: #010101;
    font-family: 'Inter-Bold';
    margin-bottom: 2px;
}
.over-ons-right::after {
    content: '';
    position: absolute;
    right: -1.5%;
    top: 37%;
    border-radius: 24px;
    background: linear-gradient(180deg, #FFE7DC 0%, rgba(255, 231, 220, 0.00) 100%);
    height: 412px;
    width: 335px;
}
.over-ons-left {
    padding-right: 40px;
}
.over-ons-left h2 {
    margin: 20px 0 26px;
}
/****over-ons-mid-block****/
.over-ons-mid-wrap {
    background-color: #2C2C2C;
    border-radius: 20px;
    padding: 70px 0;
    position: relative;
    z-index: 1;
}
.over-ons-mid-title {
    text-align: center;
    margin-bottom: 72px;
}
.over-ons-mid-title h2 {
    color: #fff;
}
.each-over-ons-mid-left h6,
.each-over-ons-mid-right h6 {
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Inter-Bold';
    margin-bottom: 12px;
}
.each-over-ons-mid-left p, .each-over-ons-mid-right p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 345px;
    width: 100%;
}
.over-ons-mid-img {
    height: 381px;
    width: 381px;
}
.over-ons-mid-img img {
    border-radius: 381px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-over-ons-mid-left-wrap,
.each-over-ons-mid-right-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 160px;
}
.each-over-ons-mid-right-wrap {
    padding-left: 48px;
}
.each-over-ons-mid-left-wrap {
    padding-right: 75px;
}
.over-ons-mid-wave .over-ons-mid-wave1 {
    position: absolute;
    top: -80px;
    left: -42px;
}
.over-ons-mid-wave .over-ons-mid-wave2 {
    position: absolute;
    top: -80px;
    right: -42px;
} 
/****over-ons-team-sec****/
.over-ons-team-sec {
    padding: 60px 0 28px;
}
.over-ons-team-wave .over-ons-team-wave1 {
    position: absolute;
    top: -102px;
    left: -49px;
}
.over-ons-team-wave .over-ons-team-wave2 {
    position: absolute;
    top: -102px;
    right: -49px;
} 
.over-ons-team-title {
    margin-bottom: 50px;
    text-align: center;
}
.each-team-slider h6 {
    font-style: italic;
    max-width: max-content;
    width: 100%;
    margin: 10px 0 16px;
    /* height: 96px;
    overflow-y: auto; */
    text-align: center;
}
.each-team-slider h6::-webkit-scrollbar {
    width: 3px;
    height: 12px;
    border-radius: 5px;
    overflow: hidden;
}
.each-team-slider h6::-webkit-scrollbar-track {
    background: #00000033;
}
.each-team-slider h6::-webkit-scrollbar-thumb {
    background: #FF5300;
    border-radius: 5px;
    border: 1px solid #FF5300;
    transition: 0.6s ease-in-out;
}
.each-team-slider h3 {
    color: #FF5300;
    font-family: 'Cedarville-Cursive';
    line-height: 32px;
    text-align: center;
}
.each-team-slider p {
    color: rgba(1, 1, 1, 0.5);
    text-align: center;
}
/* .each-team-slider {
    border-radius: 388px;
    border: 1px solid #fff;
    background: #fff;
    height: 388px;
    width: 388px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */
.each-team-slider-vector {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.each-team-slider-vector img {
    width: 17px;
}
.over-ons-team-member-img {
    height: 329px;
    width: 329px;
    position: relative;
}
.over-ons-team-member-img img {
    border-radius: 329px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.over-ons-team-slider .swiper {
    padding-bottom: 20px;
}
.over-ons-team-left-car {
    height: 144px;
    width: 144px;
    position: absolute;
    bottom: 0;
    left: -10%;
}
.over-ons-team-left-car img {
    border-radius: 273px;
    border: 10px solid #F9F9F9;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-team-slider-wrap {
    padding-left: 37px;
    padding-right: 37px;
}
.each-team-slider-info {
    border-radius: 24px;
    background: linear-gradient(180deg, #FFE7DC 0%, rgba(255, 231, 220, 0.00) 100%), linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    overflow: hidden;
    padding: 220px 30px 13px;
    margin-top: -67%;
}

/********************Annbod-Detail******************/
/* anbd-detail-sec */
.anbd-detail-sec {
    padding-top: 242px;
}
.anbd-detail-sec .container > .row{
    --bs-gutter-x: 32px;
    --bs-gutter-y: 0;
    align-items: unset !important;
}
.anbd-detail-sec .container > .row .col-lg-7 {
    width: 59%;
}
.anbd-detail-sec .container > .row .col-lg-5 {
    width: 41%;
}
.anbd-detail-wrapper {
    border-radius: 20px;
    padding: 22px;
    background: #FEFFFD;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
    height: 100%;
    display: flex;
    align-items: center;
}
.anbd-detail-img{
    border-radius: 20px;
    overflow: hidden;
}
.anbd-detail-text h3{
    color: #010101;
}
.anbd-detail-text p{
    color: rgba(1, 1, 1, 0.50);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    text-transform: uppercase;
}
.anbd-detail-text table{
    width: 100%;
}
.anbd-detail-text table tr{
    display: flex;
    align-items: center;
    row-gap: 12px;
    column-gap: 28px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    padding: 16px 0;
    margin: 24px 0;
}
.anbd-detail-text table tr td{
    color: #010101;  
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
}
.anbd-detail-text table tr td::after{
    position: absolute;
    content: "";
    background-color: #010101;
    width: 1px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    right: -14px;
}
.anbd-detail-text table tr td:last-child::after{
    display: none;
}
.anbd-price {
    display: flex;
    align-items: end;
    gap: 8px;
}
.anbd-price h4{
    color: #FF5300;
} 
.anbd-price h6{
    color: rgba(1, 1, 1, 0.50);
} 
.anbd-detail-btn {
    padding: 30px 0;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.anbd-profile-img {
    width: 106px;
    height: 106px;
    border: 10px solid #F9F9F9;
    border-radius: 50%;
    overflow: hidden;
}
.anbd-profile-img img{
    height: 100%;
    object-fit: cover;
}
.anbd-detail-box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.anbd-profile-warp {
    display: flex;
    align-items: center;
    gap: 22px;
}
.anbd-profile-info h6{
    color: #010101;
    font-family: 'Inter-Bold';
    margin-bottom: 8px;
}
.anbd-profile-info p{
    margin-bottom: 6px;
    color: #010101;
    text-transform: unset;
}
.anbd-profile-info p:last-child{
    margin-bottom: 0;
}
.anbd-profile-info a{
    color: #010101;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: flex;
    width: max-content;
    align-items: center;
    gap: 8px;
}
.anbd-profile-info a:hover{
    color: #FF5300;
}
.anbd-profile-info a img{
    width: 20px;
}
.anbd-shre a{
    border: 1px solid rgba(46, 44, 40, 0.50);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s; 
}
.anbd-shre a:hover{
    border-color: #FF5300;
    background-color: #FF5300;
}
.anbd-shre a:hover img{
    filter: brightness(0) invert(1);
}
.anbd-shre a svg path{
    transition: 0.5s ease-in-out;
}
.anbd-shre a:hover svg path{
    fill: #FFF;
}
.anbd-slider-btn .common-arrow{
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFF;
}
.anbd-slider-btn .swiper-button-next{
    right: -24px;
}
.anbd-slider-btn .swiper-button-prev{
    left: -24px;
}
.anbd-slider-btn .common-arrow:hover{
    background-color: #FF5300;
}
/* dtl-tab-sec */
.header-bg{
    background-color: #FFF;
}
.dtl-tab-sec {
    position: relative;
}
.tab-main-area {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 120px;
}
.tab-btn ul.tabs li {
    position: relative;
    word-break: break-word;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 24px;
    color: rgba(1, 1, 1, 0.70);
    font-family: 'Inter-Bold';
    background-color: transparent;
    border: 0;
    padding: 15px 51px;
    margin: 0;
    text-align: center;
    border-radius: 50px;
    transition: 0.4s ease-in-out;
}
.tab-btn .tabs li.active::before {
    position: absolute;
    content: "";
    background-image: url(../images/tab-li-icon.svg);
    background-repeat: no-repeat;
    background-size: 25px;
    bottom: -22px;
    right: 34px;
    width: 25px;
    height: 25px;
    transition: 0.4s ease-in-out;   
}
.tab-btn .tabs li.active {
    background-color: #FF5300;
    color: #FFF;
    opacity: 1;
	position: relative;
}
.tab-btn ul.tabs li:hover{
    background-color: #FF5300;
    color: #FFF;
}
.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: 20px;
    margin-bottom: 0;
    padding-bottom: 47px;
    padding-left: 0px;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    row-gap: 30px;
    column-gap: 5%;
}
.kenmerken-tab li {
    width: 30%;
    position: relative;
    padding: 16px 24px;
    display: flex;
    margin-bottom: 0;
    color: #010101;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    justify-content: space-between;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 100px;
}
.kenmerken-tab li strong {
    font-weight: normal;
    width: 46%;
    color: rgba(1, 1, 1, 0.70);
}
.kenmerken-tab li::after {
    display: none;
}
.kenmerken-tab li:hover{
    background: rgba(255, 83, 0, 0.20);
}
.kenmerken-tab{
	overflow: hidden;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #C2C2C2;
    padding-bottom: 10px;
	margin-bottom: 20px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul {
    padding-left: 0px;
}
.dtl-tab-sec .bullet-panel li { 
	margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 30px;
    color: #010101;
}
.left-bg-block {
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF5300;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #FF5300;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.left-bg-block h6 {
    color: #fff;
    font-size: 1.6rem;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
}
.each-onderhoud-block h5:last-child{
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tabs li::after {
    display: inline-block;
    content: '';
    position: relative;
    top: 0;
    left: 6px;
    background-color: transparent;
    background-image: url(../images/tab_arrow.svg);
    width: 11px;
    height: 11px;
    background-size: 7px;
    background-repeat: no-repeat;
    display: none;
}
.tab-btn .tabs li.active::after {
    background-image: url(../images/tab_down_arrow.svg);
    background-size: 13px;
    width: 13px;
    height: 13px;
    top: 4px;
    display: none;
}
.tab-btm-btn {
    margin-top: 37px;
    width: max-content;
    cursor: pointer;
    color: #FF5300;
    font-size: 1.6rem;
    line-height: 24px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab-btm-btn:hover{
    color: #010101;
}
/****kenmarken-popup****/
.kenmarken-popup {
    display: none;
}
.kenmarken-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.kenmarken-popup-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    background-color: #00000096;
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    border-radius: 10px;
    background-color: #FFF;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #ffffff32;
}
.kenmarken-popup-close {
    background-color: #FF5300;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #FF5300;
}
.kenmarken-popup-close img {
    width: 15px;
    filter: brightness(0) invert(1);
}
.kenmarken-popup-content {
    overflow-y: scroll;
    height: calc(100% - 116px);
    padding-right: 20px;
    overflow-x: clip;
}
.kenmarken-popup-content::-webkit-scrollbar  {
    background-color: #5B5A5E;
    width: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
    background-color: #999999;
}
.kenmerken-popup-model {
    padding-bottom: 30px;
    padding-right: 40px;
}
.kenmerken-popup-model p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.kenmerken-popup-model h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.kenmarken-popup-content h3 {
    margin-bottom: 15px;
    color: #fff;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 61px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1.5px solid #a1a1a14f;
    color: #010101;
}
.kenmarken-popup-content li:nth-child(even) {
    color: #010101;
}
.kenmarken-popup-content li::after {
    display: none;
}
/* anbd-related-sec */
.anbd-related-sec{
    padding: 120px 0;
}
.anbd-related-heading h2{
    margin-top: 20px;
    margin-bottom: 44px;
}
.anbd-related-sec .home-product-wave .home-product-wave1 {
    height: 550px;
}
.anbd-related-sec .home-product-wave .home-product-wave2 {
    height: 550px;
}
/* ========= thank-you-sec ======== */
.thank-you-sec .home-banner-heading .font-bg h4{
    color: #FFF;
    font-family: 'Inter-Regular';
}
.thank-you-sec  .home-banner-heading p{
    color: #FFF;
}
.thank-you-sec  .home-banner-heading h1{
    margin: 24px 0;
}
.thank-you-sec  .home-banner-heading p{
    margin-bottom: 24px;
}
.thank-you-sec  .home-banner-content {
    bottom: 160px;
}
.thank-you-sec {
    margin-bottom: 16px;
}
/* ===== POPUP CSS START HERE ===== */
.modal-area .modal-dialog {
    max-width: 1520px;
    margin: 8% auto 0;
}
.modal-area .modal {
    background: rgba(1, 1, 1, 0.60);
    backdrop-filter: blur(4px);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 20px;
    padding: 20px;
    background-color: #F9F9F9;
	position: relative;
}
.modal-area .modal-content-wrap {
    border-radius: 0px;
    overflow: hidden;
}
.modal-content .col-lg-5 {
    width: 44.5%;
}
.modal-content .col-lg-7 {
    width: 55.5%;
}
.modal-area .popup-content {
    padding: 80px 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.modal-area .popup-content h2{
    margin-bottom: 40px;
}
.modal-area .popup-content h2 strong{
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}
.modal-area .pop-up-image {
	height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.modal-area .pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.modal-area .close-img {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    height: 45px;
    width: 45px;
    background-color: #FF5300;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 3;
    display: none;
}
.modal-area .close-img img {
    width: 14px;
}
.popup-inner-content{
    position: relative;
    z-index: 1;
}
.popup-inner-content img {
    width: 79px;
    margin-bottom: 35px;
}
.popup-inner-content p{
    color: #010101;
    margin-bottom: 32px;
}
.modal-area .popup-content ul li{
    color: #010101;
}
.modal-area .popup-content ul{
    margin-bottom: 40px;
}
.popup-inner-content p:last-child{
    margin-bottom: 0;
}
/****marquee-sec****/
.marquee-sec {
    padding-bottom: 5px;
}
.marquee-sec .contact-warp {
    border-radius: 10px;
    margin-top: 16px;
    overflow: hidden;
    background: #FF5300;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding: 1px 0;
}
.marquee-sec .marquee-bg {
    max-width: max-content;
    margin: 0 auto;
}
.marquee-sec .marquee-wrap {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
}
.marquee-sec .marquee-wrap ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.marquee-sec .marquee-wrap ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    background-image: url(../images/header-li-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px;
    height: 19px;
    width: 19px;
}
.marquee-sec .marquee-wrap ul li {
    padding-left: 24px;
    margin-bottom: 0px;
}
/****home-gallery-sec****/
.home-gallery-sec {
    padding-bottom: 105px;
    overflow: hidden;
}
.each-home-gal-img img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-home-gal-img {
    height: 295px;
    border-radius: 10px;
    overflow: hidden;
}
.home-gallery-slider .swiper-button-next {
    right: 23%;
}
.home-gallery-slider .common-arrow {
    background-color: #fff;
    border-color: #fff;
    top: 44%;
    display: none;
}
.home-gallery-slider .common-arrow:hover {
    background-color: #FF5300;
    border-color: #FF5300;
}
.home-gallery-slider {
    margin-right: -18%;
}
.home-gallery-slider .swiper-button-prev {
    left: 7%;
}
.each-home-gal-img:hover img {
    transform: scale(1.1);
}





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


.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 {
    width: 18px;
    margin-right: 0px !important;
}
.privacy_section {
    padding: 160px 0 80px;
}
.finance_leas iframe {
    width: 100%;
    height: 1200px;
}
.each-service-thmb h3{
	font-size: 2.4rem;
}



.filter-main .col-xl-2{
    width: 100%;
    max-width: 195px;
    margin-left: auto;
}
.filter-main .col-xl-10{
    width: 100%;
}
.filter-main .row{
    justify-content: center;
}
