body {
	padding: 0px;
	margin: 0px;
    font-family: 'Alexandria-Regular';
    font-size: 16px;
    color: #FFF;
    background: #111;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/****cookie-fix****/
.cmn-cookie-info ul {
    margin-bottom: 0;
}
.cmn-cookie-info li {
    padding-left: 0;
    margin-bottom: 0;
}
.cmn-cookie-info li::after {
    display: none;
}
.cookie-close img {
    width: 15px;
}
.privacy_section p {
	margin-bottom: 10px;
}
.star_icon p { 
    margin-bottom: 0; 
}
/***fix-wp***/
.fix-wp {
	position: fixed;
	bottom: 60px;
	right: 50px;
	z-index: 97;
	height: 52px;
	width: 52px;
	background-color: #25D366;
	border-radius: 100%;
}
.fix-wp a {
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.fix-wp img {
	width: 25px;
}
/*****************header****************/
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0px;
    overflow-x: clip;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background: rgba(17, 17, 17, 0.20);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #0CBD52;
}
.header-active{
    backdrop-filter: blur(0px); 
    background-color: #111; 
}
.header-logo img {
    width: 150px;
}
.company-logo img {
    width: 105px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 45px;
}
.header-nav > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    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::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: 50%;
	transform: translateX(-50%);
	top: 0px;
	border-radius: 5px;
    border: 1px solid #0CBD52;
    background-color: #0CBD52;
	min-width: 170px;
	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;
}
.parent-dropdown ul li::after{
    display: none;
}
.parent-dropdown ul li a {
	color: #FFF;
	padding: 5px 10px;
	display: block;
	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: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-top: -3px;
    opacity: 0.6;
}
.parent-dropdown.active img {
    filter: brightness(0) invert(1);
    margin-left: 3px;
    margin-top: -3px;
}
.parent-dropdown:hover img {
    transform: rotate(180deg);
    opacity: 1;
}
.parent-dropdown:hover {
    z-index: 1;
}
/*****mobile-menu*****/
.menu-btn {
    border-radius: 0px;
    padding: 0;
    color: #FFF;
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn span{
    position: relative;
}
.menu-btn span:nth-child(1)::after {
    width: 38px;
    height: 1px;
    background: #FFF;
    position: absolute;
    content: "";
    top: -6px;
    right: 0px;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.menu-btn span:nth-child(2)::after {
    width: 38px;
    height: 1px;
    background: #FFF;
    position: absolute;
    content: "";
    top: 1px;
    right: 0px;
    border-radius: 2px;
}
.menu-btn span:nth-child(3)::after {
    width: 38px;
    height: 1px;
    background: #FFF;
    position: absolute;
    content: "";
    top: 8px;
    right: 0px;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.menu-btn.active span:nth-child(1)::after {
    transform: rotate(-48deg);
    top: 0;
}
.menu-btn.active span:nth-child(3)::after {
    transform: rotate(45deg);
    top: 0;
}
.menu-btn.active span:nth-child(2)::after {
    opacity: 0;
}
.header-navbar {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0px;
    height: 100vh;
    width: 35%;
    background-color: #111;
    padding: 99px 20px;
    z-index: 98;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-menu-wrap {
    overflow-y: auto;
    height: 100vh;
}
.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;
}
.mobile-menu  .mobile-menu-wrap > ul > li {
    font-size: 1.6rem;
    display: table;
    padding: 0px 0px;
    margin-bottom: 18px;
}
.mobile-menu  .mobile-menu-wrap > ul > li::after{
    display: none;
}
.mobile-menu  .mobile-menu-wrap > ul > li > a {
    color: #FFF;
}
.mobile-menu  .mobile-menu-wrap > ul > li > a:hover {
    color: #0CBD52;
}
.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;
}
/* ------------- HOME PAGE START HERE -------------- */
/* home-banner-sec */
.home-banner-sec{
    position: relative;
    z-index: 1;
}
.home-banner-video,
.home-each-banner {
    height: 800px;
    overflow: hidden;
    position: relative;
}
.home-banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.home-banner-video::after,
.home-each-banner::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(14, 14, 14, 0.20) 0%, rgba(14, 14, 14, 0.20) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.home-banner-video::before,
.home-each-banner::before{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 0%, #111 100%);
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
}
.home-each-banner img {
    height: 100%;
    object-fit: cover;
}
.home-banner-content {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 88px;
    width: 100%;
}
.home-banner-heading h1 {
    margin-bottom: 32px;
}
.home-banner-heading .common-btn{
    font-size: 2.4rem;
    line-height: 32px;
    letter-spacing: 0.48px;
}
/* home-product-sec */
.home-product-sec{
    overflow: hidden;
    padding: 100px 0px;
}
.home-product-sec .row .col-lg-4{
    width: 31.7%;
}
.home-product-sec .row .col-lg-8{
    width: 68.3%;
}
.home-product-heading{
    padding-right: 90px;    
}
.home-product-heading h2{
    margin-bottom: 16px;
}
/* home-filter-sec */
.home-filter-sec {
    padding-top: 72px;
    padding-bottom: 0;
    padding-right: 90px;
}
.home-filter-heading h4{
    margin-bottom: 16px;
}
.home-filter-sec .hidden-filter .col-lg-3 {
    margin-bottom: 16px;
    width: 100%;
    padding: 0;
}
.home-filter-sec .hidden-filter .col-lg-3:last-child{
    margin-bottom: 0;
}
.home-filter-sec .select-style {
    width: 100%;
    height: 48px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 1.6rem;
    letter-spacing: 0.32px;
    font-family: 'Alexandria-Regular';
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 100px;
    padding: 0 30px 0 24px;
    background: url(../images/filter-arrow.svg) #111 no-repeat 95% center / 14px;
    appearance: none;
    line-height: 46px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    backdrop-filter: blur(3px);
}
.home-filter-sec .select-style:hover{
    background: url(../images/filter-arrow-white.svg) #0CBD52 no-repeat 95% center / 14px;
    border-color: #0CBD52;
    color: #FFFFFF;
}
.home-filter-sec .select-style.show{
    background: url(../images/filter-arrow-white.svg) #0CBD52 no-repeat 95% center / 14px;
    border-color: #0CBD52;
    color: #FFFFFF;
}
.home-filter-sec .filter-content {
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-top: 0;
}
.home-filter-sec .form-check-input:checked {
    background-color: #0CBD52;
    border-color: #0CBD52;
}
.home-filter-sec .filter-main {
    margin-bottom: 0px;
}
.home-product-slider::after {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.00) 0%, #111 100%);
    width: 228px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.each-product {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;    
}
.each-product-img{
    border-radius: 10px;
    overflow: hidden;
}
.each-product-detail {
    margin-top: 16px;
    border-radius: 10px;
    background: #282828;
    padding: 16px;
    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 p{
    color: rgba(255, 255, 255, 0.50);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.each-product-table{
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    margin-top: 16px;
    padding: 16px 0;
}
.each-product-table table{
    width: 100%;
}
.each-product-table table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
}
.each-product-table table tbody tr td img {
    width: 19px;
}
.each-product-table table tbody tr td{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: 'Alexandria-Regular';
    font-size: 1.4rem;
    line-height: 22px;
    letter-spacing: 0px;
}
.each-product-price {
    border: 1px solid #FFF;
    padding: 11px 45px 11px 24px;
    backdrop-filter: blur(3px);
    border-radius: 100px;
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    font-family: 'Alexandria-Regular';
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbd-detail-wrap .each-product-price {
    max-width: 215px;
    margin-left: auto;
}
.aanbd-detail-wrap .each-product-price:hover{
    background-color: #0CBD52;
    border-color: #0CBD52;
}
.each-product-price strong{
    font-weight: normal;
    color: rgba(255, 255, 255, 0.70);
}
.each-product-price::after {
    position: absolute;
    content: "";
    background-image: url(../images/product-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 10px;
    width: 14px;
    height: 14px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.each-product:hover .each-product-price{
    background-color: #0CBD52; 
    border-color: #0CBD52;
    color: #FFF;
}
.product-btn .swiper-button-prev {
    left: -22px;
    top: 52%;
    transform: translateY(-50%);
}
.product-btn .swiper-button-next {
    top: 52%;
    transform: translateY(-50%);
    right: 18%;
}
.logged-in{
    /*display: none;*/
}
/* home-service-sec */
.home-service-sec{
    background-color: #282828;
    padding: 80px 0;
    position: relative;
    overflow-x: clip;
}
.service-wave{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}
.home-service-wrap .row{
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0px;
}
.service-heading-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}
.home-service-wrap {
    position: relative;
    z-index: 1;
}
.each-service-img {
    height: 100%;
    width: 100%;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.each-service{
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service:hover::after{
    opacity: 0;
}
.each-service:hover::before{
    top: 0;
}
.each-service:hover .each-service-detail{
    bottom: 0;
}
.each-service:hover .ecah-service-heading {
    bottom: -100px;
}
.each-service::after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 0%, rgba(17, 17, 17, 0.40) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 189, 82, 0.90) 0%, rgba(12, 189, 82, 0.90) 100%);
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-detail {
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    padding: 16px;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 100%;
    display: flex;
    align-items: self-end;
}
.each-service-text {
    max-width: 304px;
}
.ecah-service-heading {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.ecah-service-heading h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.each-service-text h3{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.each-service-text p{
    margin-top: 8px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.more-btn{
    color: #FFF;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-decoration: underline;
}
/* home-about-sec */
.home-about-sec {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}
.home-about-sec::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.70) 0%, rgba(17, 17, 17, 0.70) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.home-about-heading {
    position: relative;
    z-index: 1;
    max-width: 540px;
}
.home-about-heading h2{
    margin-bottom: 16px;
}
.home-about-heading p{
    margin-bottom: 24px;
}
.home-counter-wrap {
    position: relative;
    z-index: 1;
    text-align: right;
}
.each-counter h2{
    margin-bottom: 16px;
}
.each-counter p{
    margin-bottom: 0;
}
.home-counter-wrap .each-counter {
    margin-bottom: 32px;
}
.home-counter-wrap .each-counter:last-child {
    margin-bottom: 0px;
}
.about-box-wrap{
    position: relative;
    z-index: 1;
    margin-top: 205px;
}
.about-box-wrap::after{
    position: absolute;
    content: "";
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    top: 0;
    left: 0;
    height: 1px;
    width: 100vw;
    margin-left:-50vw;
    left: 50%;
}
.about-box-wrap .about-box-item {
    padding: 30px 0;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-box-wrap .about-box-item::after{
    position: absolute;
    content: "";
    background-color: #0CBD52;
    top: 0;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+1) .about-box-item{
    padding-right: 90px;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+1) .about-box-item::after{
    width: 100vw;
    right: 0%;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+1) .about-box-item:hover::after{
    opacity: 1;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+2) .about-box-item{
    padding-left: 90px;
    padding-right: 90px;
    border-left: 1px solid rgba(255, 255, 255, 0.50);
    border-right: 1px solid rgba(255, 255, 255, 0.50);
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+2) .about-box-item::after{
    width: 100%;
    left: 0;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+2) .about-box-item:hover::after{
    opacity: 1;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+3) .about-box-item{
    padding-left: 90px;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+3) .about-box-item::after{
    width: 100vw;
    left: 0%;   
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+3) .about-box-item:hover::after{
    opacity: 1;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+1),
.about-box-wrap .row > .col-lg-4:nth-child(3n+3) {
    width: 32%;
}
.about-box-wrap .row > .col-lg-4:nth-child(3n+2) {
  width: 36%;
}
.about-box-item h4{
    margin-bottom: 16px;
}
.about-box-item p{
    margin-bottom: 0px;
}
/* footer-area */
.footer-area{
    padding-top: 120px;
    position: relative;
    overflow-x: clip;
}
.footer-area::after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #111 0%, rgba(17, 17, 17, 0.00) 100%);
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
}
.ft-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.ft-wave img{
    height: 100%;
}
.ft-logo{
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding: 20px 0;
}
.ft-logo img{
    width: 170px;
}
.ft-menu{
    max-width: 957px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 56px;
}
.ft-menu-item h4{
    margin-bottom: 16px;
}
.ft-menu-item p{
    margin-bottom: 8px;
}
.ft-menu-item p:last-child{
    margin-bottom: 0;
}
.ft-menu-item p a:hover{
    color: #0CBD52;
}
.ft-address p {
    line-height: 32px;
}
.ft-menu-item table{
    width: 100%;
}
.ft-menu-item table tbody tr td{
    color: #FFF;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.ft-menu-item table tbody tr td:nth-child(odd) {
    padding-right: 5px;
}
.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding: 24px 0px 18px;
}
.privacy-item p{
    margin-bottom: 0;
}
.privacy-item p a{
    color: rgba(255, 255, 255, 0.70);
}
.privacy-item p a:hover{
    color: #0CBD52;
}
.ft-social ul li{
    padding: 0;
}
.ft-social ul li::after{
    display: none;
}
.ft-social ul li a{
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.ft-social ul li a:hover{
    background-color: #0CBD52;
    border-color: #0CBD52;
}
.ft-social ul{
    display: flex;
    align-items: center;
    gap: 8px;
}
.ft-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ------------- HOME PAGE END HERE -------------- */
/* ------------- AANBOD LIST PAGE STRAT HERE ------------- */
/****aanbod-filter-sec****/
.aanbd-sec{
    padding-top: 177px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	font-size: 1.6rem;
    color: #0CBD52;
    font-family: 'Alexandria-Regular';
    line-height: 24px;
    letter-spacing: 0.32px;
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #FFF;
}
.select-style {
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 1.6rem;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0 30px 0 24px;
    background: url(../images/filter-arrow.svg) #0F0F0F no-repeat 91% center / 10px;
    appearance: none;
    line-height: 46px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
}
.aanbd-sec .select-style {
    background: url(../images/aanbd-filter-arrow.svg) #0F0F0F no-repeat 92% center / 14px;
    letter-spacing: 0.32px;
}
.aanbd-sec .select-style:hover {
    background: url(../images/filter-arrow-white.svg) #0CBD52 no-repeat 92% center / 14px;
    border-color: #0CBD52;
    color: #FFFFFF;
}
.aanbd-sec .select-style.show {
    background: url(../images/filter-arrow-white.svg) #0CBD52 no-repeat 92% center / 14px;
    border-color: #0CBD52;
    color: #FFFFFF;
}
.select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	background-color: #0F0F0F;
}
.filter-main > .row {
    align-items: center;
}
.filter-content {
    display: none;
    background-color:#0F0F0F;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #F9F8F6;
    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: #F9F8F6;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #F9F8F6;
    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 #F9F8F6;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #0CBD52;
    border-color: #0CBD52;
    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: #F9F8F6;
    border-radius: 20px;
    background-color: #0CBD52;
    font-size: 1.4rem;
    border: 1px solid #0CBD52;
    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:hover {
    background-color: transparent;
    border-color: #0CBD52;
    color: #FFF;
}
.hidden-filter .filter-main .col-xl-9 .row {
    margin: 0px -4px;
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	width: 20%;
    padding: 0px 4px;
}
.hidden-filter .col-lg-3 h5 {
    display: none;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 72px;
    background-color: #111;
    border-top: 1px solid #0CBD52;
    border-bottom: 1px solid #0CBD52;
    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 {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 100px;
    background-color: #0CBD52;
    border: 1px solid #0CBD52;
    text-transform: capitalize;
    color: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn::before{
    display: none;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    color: #fff;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #14181E;
	border-radius: 100%;
	color: #F9F8F6;
    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: #111;
    border-bottom: 1px solid rgba(249, 248, 246, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.mobile-filter-close span img {
	width: 9px;
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #0CBD52;
    border: 1px solid #0CBD52;
    color: #FFF;
	padding: 10px;
	border-radius: 0 5px 5px 0;
    text-transform: capitalize;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records::before{
    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: transparent;
    border-color: #0CBD52;
    color: #fff;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort h6 {
	margin-right: 10px;
    color: rgba(249, 248, 246, 0.7);
    text-transform: none;
    letter-spacing: normal;
}
.filter-sort .each-filter {
	margin-bottom: 0;
	width: 230px;
}
.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: #0CBD52;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: #0cbd5259;
    border-color: #0CBD52;
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #0CBD52;
}
.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: #fff;
}
.aanbod-range-filter .slider-inputs input {
    border-radius:5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 12px;
    background-color: transparent;
    width: 100px;
    color: #fff;
    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: #fff;
}
.mob-filter-visible strong {
    font-weight: normal;
    color: #0CBD52;
}
/* aanbod-list-sec */
.aanbod-list-sec{
    padding-top: 96px;
}
.aanbod-list-sec .row {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 48px;
}
/* ------------- AANBOD LIST PAGE END HERE -------------- */
/* ------------- AANBOD DETAIL PAGE START HERE -------------- */
/* aanbd-detail-sec */
.aanbd-detail-sec {
    padding-top: 170px;
}
.aanbd-title p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.50);
    letter-spacing: 0;
}
.aanbd-list-table table{
    width: 100%;
}
.aanbd-list-table table tr {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
}
.aanbd-list-table table tr td {
    color: #FFF;
    font-family: 'Alexandria-Medium';
    font-size: 1.6rem;
    letter-spacing: 0.32px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.aanbd-price{
    text-align: right;
}
.aanbd-price h4 strong{
    font-weight: normal;
    color: rgba(255, 255, 255, 0.70);
}
.aanbd-image-wrapr{
    padding: 32px 0;
}
.aanbd-image-wrapr .container > .row{
    --bs-gutter-x: 16px;
    --bs-gutter-y: 8px;
}
.aanbd-each-img{
    border-radius: 10px;
    overflow: hidden;
}
.aanbd-gallery-img{
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.aanbd-gallery-img img{
    height: 100%;
    object-fit: cover;
}
.aanbd-image-gallery .row .col-lg-6 {
    height: 48.55%;
}
.aanbd-image-gallery .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    height: 100%;
}
.aanbd-car-btn .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}
.aanbd-car-btn .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}
.aanbd-shr a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbd-shr a:hover{
    color: #0CBD52;
}
.aanbd-shr a:hover img{
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(1969%) hue-rotate(107deg) brightness(97%) contrast(91%);
}
.aanbd-btn-list{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* dtl-tab-sec */
.dtl-tab-sec{
    padding-top: 80px;
    padding-bottom: 120px;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
    text-transform: none;
    font-size: 2.4rem;
    line-height: 32px;
    letter-spacing: 0.48px;
    font-family: 'Alexandria-Regular';
    padding-left: 0;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab-btn .tabs li.active {
    background-color: transparent;
    opacity: 1;
    position: relative;
    color: #0CBD52;
}
.tab-btn .tabs li::before{
    position: absolute;
    content: "";
    background-color: #0CBD52;
    width: 100%;
    height: 2px;
    bottom: -19px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab-btn .tabs li.active::before{
    position: absolute;
    content: "";
    background-color: #0CBD52;
    width: 100%;
    height: 2px;
    bottom: -19px;
    left: 0;
    opacity: 1;
}
.tab-btn .tabs li:hover::before{
    opacity: 1;
}
.tab-btn ul.tabs li:hover {
    color: #0CBD52;
}
.tab_container.tab-content {
    max-width: 1100px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}
.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;
}
.dtl-tab-sec {
    position: relative;
    padding-bottom: 71px;
}
.tab_drawer_heading {
    display: none;
}
.tab-btn .tabs {
    display: flex;
    justify-content: left;
    column-gap: 40px;
    padding: 0px 0;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 0;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
    column-gap: 10px;
    row-gap: 10px;
    max-width: 1000px;
}
.kenmerken-tab li {
    width: 32.5%;
    padding: 16px 24px 16px 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    font-family: 'Alexandria-Regular';
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 5px;
    background: #282828;
}
.kenmerken-tab li:hover {
    border-radius: 5px;
    background: #0CBD52;
    border-color: #0CBD52;
    color: #FFF;
}
.kenmerken-tab li:hover strong {
    color: #FFF;
}
.kenmerken-tab li strong {
    font-weight: normal;
    display: block;
    color: #FFF;
}
.kenmerken-tab li::after {
    display: none;
}
.kenmerken-tab {
    overflow: hidden;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #FCFAF5;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #FCFAF5;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: #FCFAF5;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0CBD52;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #0CBD52;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.left-bg-block h6 {
    text-transform: none;
}
.each-onderhoud-block h4 {
    text-transform: none;
    color: #FFF;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    text-transform: none;
    color: #FFF;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tab-btm-btn {
    text-align: left;
    color: #0CBD52;
    cursor: pointer;
    margin-top: 32px;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    max-width: fit-content;
}
.tab-btm-btn:hover {
    color: #FFF;
}
.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;
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.tab-popup-area {
    border-radius: 10px;
    background: #111;
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    max-width: 93%;
    border: 1px solid #0CBD52;
}
.popup-cross {
    width: 45px;
    height: 45px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #FFF;
}
.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: 14px;
}
.tab-popup-area h3 {
    color: #FFF;
}
.tab-popup-area p {
    color: #FFF;
    line-height: normal;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.tab-popup-content h4 {
    line-height: 56px;
    margin-bottom: 20px;
}
.tab-popup-content li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff27;
    line-height: 30px;
    color: #FFF;
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}
.tab-popup-content li::after {
    display: none;
}
.tab-popup-content li strong {
    width: 50%;
    font-weight: normal;
    color: #FFF;
}
.show-popup {
    display: none;
}
.tab-btn .tabs li.active::after {
    transform: rotate(90deg);
    top: 2px;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(1969%) hue-rotate(107deg) brightness(97%) contrast(91%);
}
.tabs li::after {
    display: inline-block;
    content: url(../images/tab-arrow.svg);
    position: relative;
    top: 0px;
    left: 9px;
    background-color: transparent;
    width: 9px;
    height: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tabs li:hover::after {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(50%) sepia(75%) saturate(1969%) hue-rotate(107deg) brightness(97%) contrast(91%);
}
.tab-right-btn .wp-btn {
    display: flex;
    align-items: center;
}
.tab-right-btn .wp-btn::before {
    content: '';
    height: 21px;
    width: 21px;
    background-image: url(../images/btn-wp.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px;
    margin-right: 8px;
    display: inline-block;
}
.tab-right-btn ul li::after {
    display: none;
}
.tab-right-btn ul {
    display: flex;
    column-gap: 16px;
    justify-content: end;
    margin-bottom: 0;
}
.tab-right-btn ul li {
    padding: 0;
}
.tab-btn-wrap {
    border-bottom: 2px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 17px;
}
.aanbod-contact-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
    border-radius: 90px;
}
.aanbod-contact-img {
    min-width: 65px;
    height: 65px;
}
.aanbod-contact-info ul li::after {
    display: none;
}
.each-aanbod-contact {
    display: flex;
    align-items: center;
    column-gap: 8px;
    border-radius: 5px;
    background: #3C3C3C;
    padding: 12px;
}
.tab-right-part {
    border-radius: 5px;
    border: 1px solid rgba(240, 240, 240, 0.10);
    background: var(--dark-gray, #282828);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    padding: 8px;
    position: relative;
    z-index: 1;
}
.tab-content-wrap {
    padding-top: 35px;
}
.tab-content-wrap .col-lg-3 {
    width: 28%;
    padding-left: 1px;
    padding-right: 1px;
}
.tab-content-wrap .col-lg-9 {
    width: 72%;
    padding-left: 1px;
    padding-right: 1px;
}
.tab-content-wrap .row {
    margin-left: -1px;
    margin-right: -1px;
}
.aanbod-contact-info-wrap {
    padding-top: 20px;
}
.aanbod-contact-info-wrap ul li {
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
}
.aanbod-contact-info-wrap ul li img{
    width: 16px;
}
.aanbod-contact-info-wrap ul li strong {
    font-weight: normal;
    color: #FFF;
}
.aanbod-contact-info-wrap ul li a:hover {
    color: #0CBD52;
}
.each-aanbod-contact-text a:hover {
    color: #0CBD52;
}
.each-aanbod-contact-text h4{
    color: #FFF;
}
.each-aanbod-contact-text p{
    margin-bottom: 0;
    font-size: 1.5rem;
}
.each-aanbod-contact-text p a{
    color: rgba(255, 255, 255, 0.70);
}
.each-aanbod-contact-text p a:hover{
    color: #0CBD52;
}
/* aanbd-related-sec */
.aanbd-related-sec{
    padding-top: 120px;
}
.aanbd-related-heading {
    margin-bottom: 56px;
}
.verkocht-heading{
    margin-bottom: 56px;
}
.verkocht-heading p{
    margin-bottom: 0;
}
.verkocht-list-sec .each-product .each-product-price::after{
    display: none;
}
.verkocht-list-sec .each-product .each-product-price{
    text-align: center;
}
.verkocht-list-sec .each-product:hover .each-product-price{
    background-color: transparent;
    border-color: #FFF;
}
.verkocht-list-sec .row{
    --bs-gutter-x: 22px;
    --bs-gutter-y: 48px;
}
/* ------------- AANBOD DETAIL PAGE END HERE -------------- */
/* ------------- VERKOCHT DETAIL PAGE START HERE -------------- */
/* verkocht-list-sec */
.verkocht-list-sec {
    padding-top: 170px;
}
.verkocht-heading{
    margin-bottom: 56px;
}
/* ------------- VERKOCHT DETAIL PAGE END HERE -------------- */
/* ------------------------ DIENS DTL PAGE START ------------------- */
/****financiering-banner****/
.financiering-banner{
    padding-top: 180px;
    padding-bottom: 80px;
}
.financiering-banner-big-img{
    max-width: 660px;
    width: 100%;
    height: 451px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
}
.financiering-banner-content p {
    margin-bottom: 23px;
}
.financiering-banner-big-img img{
    height: 100%;
    object-fit: cover;
}
.financiering-banner-small-img{
    height: 252px;
    max-width: 368px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: -184px;
    margin-left: -30px;
    position: relative;
}
.financiering-banner-small-img img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.financiering-banner-content{
    max-width: 656px;
    width: 100%;
    padding-right: 10px;
}
.financiering-banner-content ul {
    margin-bottom: 20px;
}
.financiering-banner-content ol {
    margin-bottom: 20px;
}
.financiering-banner-content h2{
    margin-bottom: 30px;
}
/* ******financiering-mid-sec******* */
.financiering-mid-sec{
    padding-bottom: 120px;
}
.financiering-mid-heading{
    padding-bottom: 56px;
}
.financiering-mid-wrap table {
    width: 100%;
}
.financiering-mid-wrap td h4{
    padding-bottom: 31px;
}
.financiering-mid-wrap td p{
    margin-bottom: 0;
}
.financiering-mid-wrap td {
    width: 32.1%;
    border-radius: 10px;
    background: #282828;
    border: 1px solid #282828;
    padding: 40px 32px;
    transition: .5s;
    -webkit-transition: .5s;
}
.financiering-mid-wrap td:hover{
    border: 1.5px solid rgba(12, 189, 82, 0.70);
    box-shadow: 0 0 19px 0 #0CBD52;
    transition: .5s;
    -webkit-transition: .5s;
}
.financiering-mid-wrap tr {
    display: flex;
    column-gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
/* *******form-sec***** */
.form-dtl-area .form-group {
  position: relative;
  margin-bottom: 12px;
}
.form-group-ad{
    margin-bottom: 0;
}
.foto_upload {
  color: rgba(227, 217, 208, 0.50);
}
.form-sec .form-group label ,
.step-form-sec .form-group label {
    position: absolute;
    top: 30px;
    left: 0;
    color: rgba(227, 217, 208, 0.50);
    transition: 0.3s;
    pointer-events: none;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Alexandria-Regular';
}
.form-dtl-area .form-group.focused label {
    top: 7px;
}
.form-dtl-area .form-style:focus + label{
  top: 7px;
}
.form-sec{
    position: relative;
    overflow: hidden;
    background: #282828;
}
.form-sec-mark{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    height: 100%;
}
.form-sec-mark img{
    height: 100%;
    object-fit: cover;
}
.form-img{
    z-index: 1;
    position: relative;
    height: 100%;
    margin-left: 10px;
}
.form-img img{
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.form-heading{
    max-width: 557px;
    margin-right: auto;
    padding-top: 58px;
}
.form-dtl-area{
    padding-top: 38px;
    padding-bottom: 66px;
}
.form-main-area .form-style {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(227, 217, 208, 0.50);
    background: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
    height: 100%;
    padding: 31px 0 12px;
    padding-left: 0;
    color: #F4F4F4;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.form-main-area .form-style::placeholder {
    color: rgba(227, 217, 208, 0.50);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-main-area .form-style:-ms-input-placeholder {
    color: rgba(227, 217, 208, 0.50);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-main-area .form-style:focus {
    box-shadow: none;
    border-color: #F4F4F4;
    background: transparent;
    color: #F4F4F4;
}
.form-main-area .form-style:focus::placeholder {
    color: #F4F4F4;
}
.form-main-area textarea.form-style {
    height: 126px;
    resize: none;
}
.form-contact-dtl{
    max-width: 191px;
    margin-left: 165px;
    margin-top: 122px;
    padding-right: 10px;
}
.each-form-cantact p{
    margin-bottom: 0;
}
.each-form-cantact{
    margin-bottom: 60px;
}
.form-contact-dtl .each-form-cantact:last-child{
    margin-bottom: 0;
}
.each-form-cantact h4{
    padding-bottom: 16px;
}
.each-form-cantact tr{
    display: flex;
    column-gap: 2px;
}
.form-dtl-area .common-btn{
    margin-top: 30px;
}
.each-form-cantact a:hover{
    color: #0CBD52;
}
.each-form-cantact a{
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Alexandria-Regular';
    letter-spacing: 0.32px;
}
.each-form-cantact p{
    margin-bottom: 8px;
}
.each-form-cantact.form-address p{
    line-height: 32px;
}
.each-form-cantact td{
    padding-left: 0;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'Alexandria-Regular';
    letter-spacing: 0.32px;
    color: #fff;
    width: 80%;
}
.each-form-cantact td:first-child{
    width: 20%;
    margin-right: 28px;
}
.form-heading h2{
    margin-top: 10px;
    margin-bottom: 20px;
}
/* ******financiering-btm-sec****** */
.financiering-btm-sec{
    padding-top: 95px;
}
.financiering-btm-heading{
    padding-bottom: 55px;
}
.financiering-btm-slider .each-service{
    height: 367px;
}
.financiering-btm-sec .each-service-text{
    max-width: 310px;
}
/* -------------------- DIENS DTL PAGE END --------------------- */

/* ---------- DIENS LIST PAGE START -------- */
/***inner-banner-sec***/
.inner-banner-sec {
    position: relative;
}
.inner-banner-sec::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 0%, #111 100%);
}
.inner-banner-img {
    height: 600px;
}
.inner-banner-img img {
    height: 100%;
    object-fit: cover;
}
.inner-banner-content {
    width: 100%;
    bottom: 125px;
    left: 0;
    position: absolute;
    text-align: center;
}
/* ******diens-list-sec****** */
.diens-list-sec{
    padding-top: 120px;
}
.diens-list-sec .row{
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 24px;
}
.diens-list-sec .col-lg-6{
    padding-left: 12px;
    padding-right: 12px;
}
.diens-list-sec .each-service-detail{
    padding: 32px;
}
.diens-list-sec .ecah-service-heading{
    padding: 32px;
}
.diens-list-sec  .each-service-text{
    max-width: 316px;
}
/* ---------- DIENS LIST PAGE END -------- */
/* ------- CONTACT PAGE START ------- */
.map {
    height: 600px;
}
.contact-form-sec{
    background: #111;
}
/* ----- CONTACT PAGE END ------- */
/* ---------------------- VERKOOP DTL PAGE START ---------------------------- */
/* ******Verkoop-mid-sec***** */
.financiering-mid-sec.Verkoop-mid-sec td{
    width: 49%;
    padding: 40px 50px;
}
.financiering-mid-sec.Verkoop-mid-sec td ul{
    padding-left: 10px;
}
.verkoop-btm-slider .each-service{
    height: 367px;
}
/* ------- VERKOOP DTL PAGE END ------ */
/* --------- THANK YOU PAGE START ------------ */
.thankyou-banner .inner-banner-img {
    height: 800px;
    position: relative;
}
.thankyou-banner .inner-banner-content h1{
    padding-bottom: 25px;
}
.thankyou-banner .inner-banner-content p{
    padding-bottom: 15px;
}
.thankyou-banner .inner-banner-content{
    bottom: 113px;
}
/* **popup*** */
.modal-area .modal-dialog {
    max-width: 68.5%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background: rgba(17, 17, 17, 0.50);
    backdrop-filter: blur(12px);
}
.modal-area .modal-content {
    border: 0;
    position: relative;
    /* overflow: hidden; */
    border-radius:10px;
    background: #282828;
    backdrop-filter: blur(22px);
}
.modal-area .popup-content {
    padding: 100px 10px 95px;
    text-align: center;
    max-width: 785px;
    margin-left: auto;
    margin-right: auto;
}
.modal-area .popup-content h3{
    margin-bottom: 18px;
    color: #ffff;
    margin-top: 17px;
}
.modal-area .popup-content p{
    margin-bottom: 0;
    color: #fff;
}
.modal-area .popup-content li {
    list-style: none;
}
.modal-area .popup-content ul {
    padding-left: 0;
    padding-bottom: 18px;
    margin-bottom: 0;
}
.modal-area .popup-content li::after {
    display: none;
}
.modal-content .close-img {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 1;
    background: rgba(12, 189, 82, 1);
}
.modal-content .close-img img {
    width: 15px;
}
/* --------------- THANK YOU PAGE END ---------------- */
/* --------- OVER ONS PAGE START ------------ */
/* ****over-one-about-sec****** */
.over-one-about-sec{
    padding-top: 80px;
}
.home-about-sec.over-one-about-sec::after{
    display: none;
}
.over-one-about-sec .col-lg-5{
    width: 44%;
}
.over-one-about-sec  .col-lg-7{
    width: 56%;
}
.over-ons-about-img::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(51deg, rgba(17, 17, 17, 0.00) 0%, rgba(17, 17, 17, 0.70) 100%);
}
.over-ons-about-img{
    border-radius: 10px;
    overflow: hidden;
}
.over-one-about-counter-area{
    position: relative;
}
.over-one-about-counter-area .home-counter-wrap{
    position: absolute;
    top: 24px;
    right: 24px;
}
.over-one-about-sec .home-about-heading{
    max-width: 800px;
    margin-left: auto;
    padding-left: 25px;
}
.over-one-about-sec .about-box-wrap {
    margin-top: 56px;
}
.over-one-about-sec .about-box-wrap::before {
    position: absolute;
    content: "";
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}
.over-one-about-sec  .home-about-heading p strong{
    display: block;
    font-weight: normal;
}
/* *****over-ons-gallery-sec**** */
.over-ons-gallery-sec{
    padding-top: 120px;
    overflow: hidden;
}
.over-ons-gallery-heading{
    padding-bottom: 56px;
}
.each-gallery-top-img{
    margin-bottom: 16px;
    overflow: hidden;
    height: 367px;
}
.each-gallery-btm-img{
    height: 217px;
    overflow: hidden;
}
.each-over-ons-gallery{
    height: 600px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
}
.each-gallery-btm-img img{
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 100%;
    object-fit: cover;
} 
.each-gallery-top-img img{
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 100%;
    object-fit: cover;
} 
.each-over-ons-gallery img{
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
}
.each-over-ons-gallery:hover img{
    transform: scale(1.1);
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gallery-top-img:hover img{
    transform: scale(1.1);
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gallery-btm-img:hover img{
    transform: scale(1.1);
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
} 
/* ====== login page start here ====== */
.login-form-sec {
    padding-top: 133px;
    overflow: hidden;
}
.login-form-sec .form-group label{
    color: #FFF;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 17px;
}
.login-form-sec .form-style{
    background-color: transparent;
    color: #FFF;
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    width: 100%;
    border: 1px solid #FFF;
    border-radius: 50px;
    padding: 11px 30px;
}
.login-form-sec .form-style::placeholder{
    color: rgba(255, 255, 255, 0.50);  
}
.login-form-sec .form-group {
    margin-bottom: 34px;
}
.login-form-sec .login-form-heading {
    margin-bottom: 60px;
}
.login-form-heading p{
    margin-bottom: 0;
}
.login-form-sec .radio-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login-form-sec .form-check input {
    background: transparent;
    border: 1px solid #FFF;
    border-radius: 50px !important;
    width: 20px;
    height: 20px;
}
.login-form-sec .form-check-input:checked {
    background-color: #0CBD52;
    border-color: #0CBD52;
}
.login-form-sec .form-check-input:focus {
    border-color: #0CBD52;
    outline: 0;
    box-shadow: none;
}
.login-form-sec .form-check-input{
    line-height: 0;
    font-size: 0;
}
.login-form-sec .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.login-form-sec .form-check label{
    color: rgba(255, 255, 255, 0.34);
    font-family: 'Alexandria-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.login-form-sec .forget-password p{
    margin-bottom: 0;
}
.login-form-sec .forget-password p a:hover{
    color: #0CBD52;
}
.login-form-sec .login-form .row .col-lg-12:nth-child(2n) .form-group{
    margin-bottom: 22px;
}
.login-form-sec .login-btn {
    margin-top: 48px;
}
.login-form-sec .login-form form {
    max-width: 562px;
}
.login-form-sec  .login-btn .common-btn {
    padding: 9px 40px;
}
.login-image-warp {
    position: relative;
}
.login-image-warp::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.89) 0%, rgba(12, 189, 82, 0.89) 47.88%, rgba(12, 189, 82, 0.89) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.login-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-text h3{
    color: #F0F0F0;
    margin-bottom: 22px;
}
.login-text ul li{
    color: #F0F0F0;
    margin-bottom: 12px;
}
.login-text ul li:last-child{
    margin-bottom: 0;
}
.login-text p {
    margin-bottom: 0;
    margin-top: 38px;
    color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    width: 100%;
}
.login-text p a:hover{
    color: #111;
}
.login-text-wrap {
    max-width: 480px;
}
.form-field .form-style{
    background-color: #FFF;
    color: #111;
}
.form-field .form-control:focus {
    color: #111;
    background-color: #FFF;
    border-color: #FFF;
    outline: 0;
    box-shadow: none;
}
.form-field{
    position: relative;
}
.toggle-password {
    position: absolute;
    top: 12px;
    right: 28px;
}
.login-form-sec .form-field .form-control:focus {
    color: #111;
    background-color: #FFF;
    border-color: #FFF;
    outline: 0;
    box-shadow: none;
}
.toggle-password .close-password {
    display: none;
}
.toggle-password.active .open-password {
    display: none;
}
.toggle-password.active .close-password {
    display: inline;
}
.login-form-sec .register form{
    max-width: 606px;
}
.login-form-sec .register form .row .col-lg-6,
.login-form-sec .register form .row .col-lg-12 {
    padding: 0px 20px;
}
.login-form-sec .register form .row {
    margin: 0px -20px;
}
.login-form-heading .border-btn{
    border-color: #0CBD52;
    padding: 12px 33px;
    margin-bottom: 45px;
}
.login-text-wrap {
    max-width: 480px;
}
/* ====== login page end here ====== */

/*******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;
}

#loader_section,
.popup-opacity,
.tab-popup {
    position: fixed;
    height: 100vh
}

/*********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: 7.5px;
}


/****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;
    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;
    filter: none;
    padding: 0;
    height: auto;
}
.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;
}
.form-1, .form-2 {
    display: none;
    padding: 50px 0;
    margin-top: 20px;
}
.form-2 .form-group label 
{
    font-family: 'lama_sansregular';
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.form-1 .form-group label
{
    font-family: 'lama_sansregular';
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.aanbod-loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#0CBD52 calc(1*100%/6),#fff 0 calc(3*100%/6),#0CBD52 0),
              linear-gradient(#0CBD52 calc(2*100%/6),#fff 0 calc(4*100%/6),#0CBD52 0),
              linear-gradient(#0CBD52 calc(3*100%/6),#fff 0 calc(5*100%/6),#0CBD52 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: #0CBD52;
  }
@media (max-width: 991px) {
    .form-1, .form-2 {
        padding: 0 !important;
    }
}
/***fix-wp***/
.fix-wp {
    position: fixed;
    bottom: 60px;
    right: 50px;
    z-index: 97;
    height: 52px;
    width: 52px;
    background-color: #25D366;
    border-radius: 100%;
}
.fix-wp a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.fix-wp img {
    width: 25px;
}
.popup .popuptext {
    display: none;
    width: 200px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 3px;
    right: 3vw;
    font-size: small;
}

.notifcation {
    position: relative;
}

.alert-number {
    display: none;
    position: absolute;
    bottom: 28px;
    left: 16px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background-color: red;
    color: white;
    text-align: center;
    font-size: small;
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@media screen and (max-width: 600px) {
    .popuptext {
        right: 60px !important;
    }
}
/* /iframe-footer/ */
.iframe-footer {
    border: 0;
    width: 100%;
    /* margin-bottom: 0; */
    height: 50px;
    display: block;
    /* border-radius: 10px;
    margin: 10px auto 55px;
    max-width: calc(100% - 24px); */
}
.share-social-media-button .a2a_dd {
    color: #FFFFFF;
    max-width: fit-content;
    margin-left: auto;
}
body .form-dtl-area .error_cls,
body .form-dtl-area .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
.foto_upload{
    color: rgba(227, 217, 208, 0.50) !important;   
}
.privacy_section {
    padding-top: 120px;
}

#registration_form #opmerkingen {
    border-radius: 20px;
}