body {
	padding: 0px;
	margin: 0px;
    font-size: 16px;
    font-family: 'LamaSans-Regular';
    color: #FFF;
    background: #0C0C0E;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/****cookie-fix****/
.cmn-cookie-info ul {
    margin-bottom: 0;
}
.cmn-cookie-info li {
    padding-left: 0;
    margin-bottom: 0;
}
.cmn-cookie-info li::after {
    display: none;
}
.cookie-close img {
    width: 15px;
}
/***fix-wp***/
.fix-wp {
	position: fixed;
	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: 0px 0px;
    overflow-x: clip;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-bottom: 1px solid #6B6B6A;
}
.header-active{
    background: #0C0C0E;
}
.header-logo img {
    width: 197px;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 0;
}
.header-nav ul li::after{
    display: none;
}
.header-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.header-nav > ul {
    display: flex;
    justify-content: center;
    gap: 55px;
    max-width: max-content;
    padding: 0px;
}
.header-nav > ul > li {
    color: #FFF;
    padding: 0px 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a {
    color: #FFF;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: 'LamaSans-Medium';
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a::after {
    position: absolute;
    content: "";
    background: #C81E30;
    width: 10px;
    height: 1px;
    left: 0;
    bottom: -40px;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a:hover::after {
    opacity: 1;
    width: 100%;
}
.header-nav > ul > li > a:hover{
    color: #C81E30;
}
.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: 10px;
    border: 1px solid #C81E30;
    background-color: #C81E30;
	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: 36px;
	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;
}
.parent-dropdown.active img {
    filter: brightness(0) invert(1);
    margin-left: 3px;
    margin-top: -3px;
}
.parent-dropdown:hover img {
    transform: rotate(180deg);
}
.parent-dropdown:hover {
    z-index: 1;
}
/*****mobile-menu*****/
.menu-btn {
    border-radius: 0px;
    padding: 0;
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 64px;
}
.menu-btn span:nth-child(1) {
    width: 12px;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 9px;
    right: 0px;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.menu-btn span:nth-child(2) {
    width: 12px;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 12px;
    right: 0px;
    border-radius: 2px;
}
.menu-btn span:nth-child(3) {
    width: 12px;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 15px;
    right: 0px;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.475, .425, 0, .995);
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 97px;
    height: 365px;
    width: 100%;
    background-color: #16171B;
    padding: 50px 0px;
    z-index: 98;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-menu-active {
	clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.mobile-menu 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: 10px;
}
.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: #C81E30;
}
.body-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: -1;
}
.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu .parent-dropdown ul {
    left: 0;
    transform: translateX(0);
    border: 1px solid #C81E30;
    background-color: #C81E30;
}
.mobile-menu .parent-dropdown ul li {
    font-size: 1.6rem;
}
.hd-btn .fill-btn {
    padding: 35px 10px;
    min-width: 240px;
}
.header-btn {
    display: flex;
    align-items: center;
    gap: 0px;
    max-width: 335px;
    margin-left: auto;
    position: relative;
}
.header-btn::after {
    position: absolute;
    content: "";
    background-color: #6B6B6A;
    width: 1px;
    height: 100%;
    left: -25px;
    top: 0%;
}
.hd-btn {
    line-height: 0;
    margin-left: auto;
}
.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 12px;
}
.menu-btn.active span:nth-child(2) {
    display: none;
}
.menu-btn.active span:nth-child(3) {
    transform: rotate(45deg);
    top: 12px;
}
.mega-menu-img {
    position: relative;
    z-index: 1;
    max-width: 360px;
    height: 100%;
    overflow: hidden;
    transition: 0.4s ease-in-out;
}
.mega-menu-img::after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(22, 23, 27, 0.50) 0%, rgba(22, 23, 27, 0.80) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hd-menu-img{
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}
.hd-menu-img img{
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}
.mega-menu-img:hover .hd-menu-img img{
    transform: scale(1.1);
}
.mega-menu-heading {
    position: absolute;
    bottom: 18px;
    left: 27px;
    z-index: 1;
}
.hd-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.mega-menu-info {
    margin-top: 30px;
}
.mega-menu-info a{
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Montserrat-Regular';
    font-size: 1.6rem;
    line-height: 30px;
    letter-spacing: 0.32px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-info a:hover{
    color: #C81E30;
}
.mega-menu-list {
    margin-left: auto;
    max-width: 200px;
}
/* ------------- HOME PAGE START HERE -------------- */
/* === home-banner-sec === */
.home-banner-sec{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.home-banner-video,
.home-each-banner {
    height: 900px;
    overflow: hidden;
    position: relative;
}
.home-banner-video::after,
.home-each-banner::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.50) 0%, rgba(12, 12, 14, 0.50) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.home-banner-video::before,
.home-each-banner::before{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    width: 100%;
    height: 270px;
    left: 0;
    bottom: 0;
}
.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;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.home-banner-content::after {
    position: absolute;
    content: "";
    background-color: #0C0C0E;
    width: 100vw;
    height: 500vw;
    left: -71%;
    top: -400%;
    z-index: -1;
}
.toggle-box {
    background-color: #0C0C0E;
    border: 1px solid #FFF;
    padding: 10px 17px;
    text-align: center;
    max-width: 150px; 
    max-width: max-content;
    position: relative;
}
.toggle-box::after {
    position: absolute;
    content: "";
    background-image: url(../images/toggle-arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 19px;
    left: 50%;
    bottom: -19px;
    transform: translateX(-50%);
    z-index: 0;
}
.toggle-box::before {
    position: absolute;
    content: "";
    background-color: #0C0C0E;
    width: 20px;
    height: 2px;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.home-banner-toggle .swiper {
    padding: 0px 0px 16px;
}
.home-banner-toggle .swiper .swiper-wrapper .swiper-slide{
    opacity: 0 !important;
}
.home-banner-toggle .swiper .swiper-wrapper .swiper-slide-active{
    opacity: 1 !important;
}
.home-banner-toggle{
    margin-bottom: 35px;
}
.toggle-box h6{
    font-family: 'LamaSans-Medium';
}
.home-banner-heading p{
    margin-top: 18px;
    margin-bottom: 38px;
}
/* === home-box-sec === */
.home-box-sec{
    overflow: hidden;
}
.home-box-item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.home-box-container{
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position:relative;
}
.home-box-slider{
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
} 
.home-box-slider .swiper-slide {
    height: auto;
}
.home-each-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 54px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.home-each-box::after{
    position: absolute;
    content: "";
    background-color: #16171B;
    left: 50%;
    top: 50%;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    transform: translate(-50% , -50%);
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    z-index: -1;
}
.home-each-box:hover::after{
    opacity: 1;
}
.home-each-box:hover h6{
    color: #FFF;
}
.home-each-box:hover p{
    color: #FFF;
}
.home-each-box:hover .home-box-btn img{
    opacity: 1;
}
.home-each-box:hover .home-box-icon img{
    opacity: 1;
}
.home-box-icon img{
    opacity: 0.7;
}
.home-box-btn img{
    opacity: 0.2;
}
.home-box-slider .swiper-slide:last-child .home-each-box{
    border-right: none;
}
.home-box-text h6{
    font-family: 'Tondo-Regular';
    color: rgba(255, 255, 255, 0.70);
    line-height: 140.5%;
    letter-spacing: 0.16px;    
    margin-bottom: 2px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.home-box-text p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.4rem;
    font-family: 'LamaSans-Medium';
    line-height: 158%;
    letter-spacing: 0.28px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
/* === home-product-sec === */
.home-product-sec {
    padding-top: 90px;
    padding-bottom: 132px;
    overflow: hidden;
    position: relative;
}
.home-product-wave{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
}
.home-product-wave img{
    height: 100%;
}
.home-product-heading h2{
    margin-bottom: 10px;
}
.home-product-heading p{
    margin-bottom: 0;
}
.home-product-btn{
    text-align: right;
}
.home-product-container{
    padding-top: 60px;
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position: relative;
}
.each-product-heading {
    padding: 20px 30px;
    background-color: #16171B;
    margin-top: 17px;
}
.each-product-price {
    text-align: right;
}
.each-product-text h4{
    margin-bottom: 4px;
    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.70);
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-price h4{
    color: #C81E30;
}
.each-product-price p{
    color: rgba(255, 255, 255, 0.70);
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
    margin-bottom: 0;
}
.home-product-slider .swiper-slide .each-product-img{
    position: relative;
    z-index: 1;
}
.home-product-slider .swiper-slide .each-product-img::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.70) 0%, rgba(12, 12, 14, 0.70) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.home-product-slider .swiper-slide .each-product-img::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    width: 100%;
    height: 271px;
    left: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;  
}
.home-product-slider .swiper-slide.swiper-slide-active .each-product-img::after{
    opacity: 0;
}
.home-product-slider .swiper-slide.swiper-slide-active .each-product-img::before{
    opacity: 0;
}
.home-product-slider .swiper-slide .each-product-heading{
    opacity: 0;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.home-product-slider .swiper-slide.swiper-slide-active .each-product-heading{
    opacity: 1;
}
.product-car-btn {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50% , -50%);
    z-index: 1;
}
.home-product-sec .product-car-btn{
    top: 50%;
}
.product-car-btn .swiper-button-next {
    position: absolute;
    top: 50%;
    right: -286px;
    transform: translateY(-50%);
    border-color: #626265;
    width: 102px;
    height: 102px;
}
.product-car-btn .swiper-button-next::before {
    position: absolute;
    content: "";
    background-color: #626265;
    width: 184px;
    height: 1px;
    right: 100%;
}
.product-car-btn .swiper-button-prev{
    position: absolute;
    top: 50%;
    left: -286px;
    transform: translateY(-50%);
    border-color: #626265;
    width: 102px;
    height: 102px;
}
.product-car-btn .swiper-button-prev::before {
    position: absolute;
    content: "";
    background-color: #626265;
    width: 184px;
    height: 1px;
    left: 100%;
}
.product-car-btn .common-arrow:hover{
    border-color: #C81E30;
}
.product-car-btn .common-arrow img{
    width: 24px;
    height: 24px;
}
.product-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    bottom: -70px !important;
}
.product-dot-btn .product-pagination-btn .swiper-pagination-bullet{
    background-color: #FFFFFF;
    width: 4px;
    height: 4px;
    margin: 0;
    position: relative;
    opacity: 1;
}
.product-dot-btn .product-pagination-btn .swiper-pagination-bullet::after{
    position: absolute;
    content: "";
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.product-dot-btn .product-pagination-btn .swiper-pagination-bullet-active{
    background-color: #C81E30;
    width: 4px;
    height: 4px;
}
.product-dot-btn .product-pagination-btn .swiper-pagination-bullet-active::after{
    position: absolute;
    content: "";
    border: 1px solid #C81E30;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
/* === home-service-sec === */
.home-service-sec{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 132px;
    padding-bottom: 92px;
}
.home-service-sec::after{
    position: absolute;
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 23, 27, 0.80) 0%, #16171B 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.home-service-sec::before{
    position: absolute;
    content: "";
    background-image: url(../images/service-line.svg);
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    z-index: 1;
}
.home-service-heading p{
    margin-bottom: 0;
}
.home-service-btn {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 127px;
}
.home-service-wrap{
    padding-top: 65px;
}
.each-service-text h6 {
    margin-bottom: 12px;
}
.each-service-text h4{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.each-service-wave1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}
.each-service-wave2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.each-service{
    position: relative;
    z-index: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    height: 384px;
    overflow: hidden;
}
.each-service-img{
    width: 100%;
    height: 100%;
}
.each-service-img img{
    height: 100%;
    object-fit: cover;
}
.each-service::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, #0C0C0E 0%, #0C0C0E 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.each-service::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(22, 23, 27, 0.50) 0%, rgba(22, 23, 27, 0.50) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;   
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.each-service:hover::after{
    opacity: 0;
}
.each-service:hover::before{
    opacity: 1;
}
.each-service-heading {
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 36px;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-btn-wrap {
    margin-top: 55px;
}
.service-car-btn .common-arrow{
    border: none;
    width: 14px;
    height: 14px;
}
.service-car-btn .common-arrow:hover{
    background-color: transparent;
    border: none;
}
.each-service:hover .each-service-wave1{
    opacity: 0;
}
.service-car-btn .common-arrow img{
    opacity: 0.4;
    height: 14px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.service-car-btn .common-arrow:hover img{
    opacity: 1;
}
.service-car-btn .swiper-button-next {
    left: 34px;
}
.service-car-btn .swiper-button-prev{
    left: 0;
}
.service-scrollbar {
    background: rgba(255, 255, 255, 0.10);
    transform: rotate(0deg);
    border-radius: 30px;
    z-index: 1;
    height: 3px;
    width: 100%;
    cursor: grab;
    margin-top: 15px;
}
.service-scrollbar .swiper-scrollbar-drag {
    background: #FFF;
}
/* === usp-marquee-sec === */
.usp-marquee-bg{
    background-color: #C81E30; 
    overflow: hidden;
}
.usp-marquee-bg .container{
    overflow: hidden;
}
.usp-marquee-wrap {
    padding: 18px 0px;
	display: flex;
	width: max-content;
    gap: 260px;
}
.usp-marquee-wrap ul{
    display: flex;
    align-items: center;
    gap: 260px;
    padding: 0;
    margin: 0;
}
.usp-marquee-wrap ul li {
    padding: 0;
    font-family: 'LamaSans-SemiBold';
    color: rgba(255, 255, 255, 0.60);
    font-size: 2.2rem;
    line-height: 26px;
    letter-spacing: 0.22px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
}
.usp-marquee-wrap ul li img{
    height: 25px;
}
.usp-marquee-wrap ul li::after {
    display: none;
}
/* === home-about-sec === */
.home-about-sec{
    padding-top: 150px;
    overflow: hidden;
}
.home-about-wrap{
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position:relative;
}
.home-about-wrap .home-about-img img{
    height: 100%;
    object-fit: cover;
}
.home-about-wrap .row{
    justify-content: space-between;
    row-gap: 0;
    column-gap: 0;
}
.home-about-wrap .row .col-3:nth-child(1) {
    width: 22.7%;
}
.home-about-wrap .row .col-3:nth-child(2) {
    width: 29.3%;
}
.home-about-wrap .row .col-3:nth-child(3) {
    width: 17%;
}
.home-about-wrap .row .col-3:nth-child(4) {
    width: 26.3%;
}
.home-about-wrap .row .col-3:nth-child(1) .home-about-img{
    width: 100%;
    height: 320px;  
    margin-top: 70px;
    opacity: 0;
    transform: translateX(-500%);
}
.home-about-active .row .col-3:nth-child(1) .home-about-img{
    animation: aboutImg1 8s ease forwards;
    animation-delay: 0.1s;
    opacity: 1;
}
@keyframes aboutImg1 {
    0% {
        transform: translateX(500%);
    }

    50% {
        transform: translate(0);
    }

    100% {
        transform: translateX(0);
    }
}
.home-about-wrap .row .col-3:nth-child(2) .home-about-img{
    width: 100%;
    height: 320px;
    margin: 0 auto;
    margin-top: 222px;
    opacity: 0;
    transform: translateX(-600%);
}
.home-about-active .row .col-3:nth-child(2) .home-about-img{
    animation: aboutImg2 8s ease forwards;
    animation-delay: 0.1s;
    opacity: 1;
}
@keyframes aboutImg2 {
    0% {
        transform: translateX(500%);
    }

    50% {
        transform: translate(0);
    }

    100% {
        transform: translateX(0);
    }
}
.home-about-wrap .row .col-3:nth-child(3) .home-about-img{
    width: 100%;
    height: 285px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-1200%);
}
.home-about-active .row .col-3:nth-child(3) .home-about-img{
    animation: aboutImg3 8s ease forwards;
    animation-delay: 0.8s;
    opacity: 1;
}
@keyframes aboutImg3 {
    0% {
        transform: translateX(500%);
    }

    50% {
        transform: translate(0);
    }

    100% {
        transform: translateX(0);
    }
}
.home-about-wrap .row .col-3:nth-child(4) .home-about-img{
    width: 100%;
    height: 375px;
    margin-left: auto;
    margin-top: 142px;
    opacity: 0;
    transform: translateX(-500%);
}
.home-about-active .row .col-3:nth-child(4) .home-about-img{
    animation: aboutImg4 6s ease forwards;
    animation-delay: 0.1s;
    opacity: 1;
}
@keyframes aboutImg4 {
    0% {
        transform: translateX(500%);
    }

    50% {
        transform: translate(2005);
    }

    100% {
        transform: translateX(0);
    }
}
.home-about-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 1;
}
.home-about-btn p{
    margin-bottom: 35px;
}
/* === home-review-sec === */
.home-review-sec{
    padding-top: 140px;
    padding-bottom: 46px;
}
/* === footer-area === */
.footer-area{
    background: #16171B;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.footer-wave{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
.ft-logo img{
    width: 220px;
}
.ft-heading {
    max-width: 388px;
    margin-top: 95px;
}
.ft-heading h4{
    color: #FFF;
    font-size: 2rem;
    font-family: 'LamaSans-Medium';
    line-height: normal;
    margin-bottom: 13px;
}
.ft-heading p{
    color: #F6F8FA;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
    margin-bottom: 0;
}
.ft-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    row-gap: 54px;
    column-gap: 100px;
    max-width: 546px;
    margin-left: auto;
}
.ft-info-item h4{
    color: #FFF;
    font-size: 2rem;
    font-family: 'LamaSans-Medium';
    line-height: normal;
    margin-bottom: 15px;    
}
.ft-info-item p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Regular';
}
.ft-info-item p a{
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.ft-info-item p a:hover{
    color: #C81E30;
}
.ft-info-item table{
    width: 100%;
}
.ft-info-item table tr {
    display: flex;
    align-items: center;
}
.ft-info-item table tr td{
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;  
}
.ft-each-social ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.ft-each-social ul li{
    padding: 0;
    margin: 0;
}
.ft-each-social ul li::after{
    display: none;
}
.ft-each-social{
    display: flex;
    align-items: center;
    gap: 25px;
}
.ft-each-social ul li a img{
    transition: 0.4s ease-in-out;
}
.ft-each-social ul li a img:hover{
    opacity: 0.4;
}
.ft-privacy{
    text-align: center;
}
.ft-privacy a{
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
}
.ft-privacy a:hover{
    color: #C81E30;
}
.footer-bottom-wrap {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    margin-top: 70px;
}
.footer-bottom-wrap::after{
    position: absolute;
    content: "";
    background-image: url(../images/service-line.svg);
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    z-index: 1;
}
.ft-logos-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* ------------- HOME PAGE END HERE -------------- */

/* ------------- AANBOD LIST PAGE STRAT HERE ------------- */
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 186px 0 60px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #fff;
	font-size: 1.4rem;
    font-family: 'LamaSans-Medium';
    line-height: 158%;
    letter-spacing: 0.28px;
    margin-bottom: 18px;
    display: inline-block;
}
.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: #C81E30;
}
.select-style {
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'LamaSans-Medium';
    border: 1px solid #FFF;
    border-radius: 0px;
    padding: 0 30px 0 18px;
    appearance: none;
    line-height: 44px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.select-style:hover{
    background-color: #C81E30;
    border-color: #C81E30;
}
/* .select-style.show {
    border-radius: 5px 5px 0 0;
} */
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	background-color: #0F0F0F;
}
.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; */
    border-radius: 0;
    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: #C81E30;
    border-color: #C81E30;
    background-image: url(../images/check-tick.png);
    background-size: 8px;
    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: 0px;
    background-color: #C81E30;
    font-size: 1.4rem;
    border: 1px solid rgba(0, 255, 135, 0);
    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: #C81E30;
    color: #FFF;
}
.filter-main .row .col-xl-9 .row{
    margin: 0px -7px;
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	width: 25%;
    padding: 0px 7px;
}
.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: 74px;
    background-color: #161616;
    border-top: 1px solid #6B6B6A;
    border-bottom: 1px solid #6B6B6A;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 12px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 0px;
    background-color: #C81E30;
    border-color: #C81E30;
    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;
    border-color: #C81E30;
    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: #0F0F0F;
    border-bottom: 1px solid rgba(249, 248, 246, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0px;
    margin-left: auto;
    border: 1px solid #ffffff65;
    border-radius: 4px;
}
.mobile-filter-close span img {
	width: 9px;
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #C81E30;
    border: 1px solid #C81E30;
    color: #FFF;
	padding: 10px;
	border-radius: 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: #C81E30;
    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: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.show_selected_filter_cls {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}
/****aanbod-range-filter****/
.aanbod-range-filter label {
    font-size: 1.6rem;
}
.aanbod-range-filter .ui-slider .ui-slider-handle {
    width: 25px;
    height: 25px;
    background-color: #C81E30;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: #c81e306b;
    border-color: #c81e306b;
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #C81E30;
}
.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: 0px;
    border: 1px solid #ffffff6e;
    padding: 8px;
    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: #C81E30;
}
/* aanbod-list-sec */
.aanbod-list-sec{
    padding-bottom: 100px;
}
.each-product-item .each-product-heading{
    padding: 12px 10px;
    margin-top: 8px;
}
.each-product-item .each-product-text h4{
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 4px;
}
.each-product-item .each-product-price h4{
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 4px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.each-product-item .each-product .each-product-heading{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.each-product-item .each-product{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.each-product-item .each-product:hover .each-product-heading{
    background-color: #C81E30;
}
.each-product-item .each-product:hover .each-product-price h4{
    color: #FFF;
}
.aanbod-list-sec > .container > .row{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 18px;
}
.prev-btn-sec h4 {
    max-width: 450px;
}
/* ------------- AANBOD LIST PAGE END HERE -------------- */
/* ------------- AANBOD DETAIL PAGE START HERE -------------- */
/* prev-btn-sec */
.prev-btn-sec {
    padding-top: 179px;
}
.prev-btn-sec .common-btn {
    position: relative;
    max-width: 220px;
    z-index: 9;
}
.anbod-wave {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    display: none;
}
/* anbd-detail-sec */
.anbd-detail-sec {
    overflow-x: clip;
    position: relative;
    z-index: 1;
    margin-top: -65px;
}
.anbd-detail-sec::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    width: 100%;
    height: 271px;
    bottom: -50px;
    left: 0;
    z-index: -1;
}
.anbod-each-list ul li::after {
    background: url(../images/each-check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 17px;
    width: 16px;
    height: 12px;
    left: -4px;
    top: 4px;
}
.anbod-each-list ul li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    display: inline-block;
}
.anbod-each-list ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 48px;
    align-items: end;
    justify-content: end;
}
.anbod-each-list {
    max-width: 676px;
    margin-left: auto;
    padding-bottom: 57px;
}
.anbod-each-list ul li strong{
    font-weight: normal;
    color: rgba(255, 255, 255, 0.50);
}
.anbd-detail-container{
    width:100vw;
    margin-left:-50vw;
    left:50%;
    position:relative;
}
.anbd-detail-slider .swiper-slide .anbd-each-item{
    position: relative;
}
.anbd-detail-slider .swiper-slide .anbd-each-item::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.70) 0%, rgba(12, 12, 14, 0.70) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.anbd-detail-slider .swiper-slide-active .anbd-each-item::after{
    opacity: 0;
}
.anbd-detail-box {
    margin-top: 28px;
}
.anbd-detail-box .row{
    --bs-gutter-x: 34px;
}
.anbd-common-box {
    background-color: #16171B;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.anbd-price-part h2{
    color: #C81E30;
    letter-spacing: 0;
}
.anbd-price-part h2 em{
    font-style: normal;
    font-family: 'LamaSans-SemiBold';
}
.anbd-price-part p strong{
    color: #FFF;
    font-weight: normal;
}
.anbd-price-part{
    text-align: center;
}
.anbd-price-part p{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Regular';
    line-height: 24px;
    letter-spacing: 0.32px;
}
.anbd-car-info p {
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 17px;
}
.anbd-car-info p strong{
    font-weight: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}
.anbd-car-info p a{
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 110%;
    font-weight: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.anbd-car-info p a:hover{
    color: #C81E30;
}
.anbd-car-info p:last-child{
    margin-bottom: 0;
}
.anbd-car-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
.anbd-car-btn .common-new{
    max-width: 172px;
    width: 100%;
}
.anbd-car-btn .common-old {
    max-width: 208px;
    width: 100%;
}
.anbd-detail-thumbs-wrapper{
    position: relative;
    z-index: 1;
}
.anbd-detail-thumbs-wrapper::after{
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #0C0C0E 0%, rgba(12, 12, 14, 0.00) 100%);
    width: 145px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}
.anbd-detail-thumbs-wrapper::before {
    position: absolute;
    content: "";
    background: linear-gradient(270deg, #0C0C0E 0%, rgba(12, 12, 14, 0.00) 100%);
    width: 145px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}
/****dtl-tab-sec****/
.dtl-tab-sec {
	padding: 113px 0 65px;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    row-gap: 25px;
    column-gap: 15px;
    margin-bottom: 32px;
    border: 0;
	flex-wrap: wrap;
}
/****tab-part****/
ul.tabs li {
	font-size: 1.6rem;
	line-height: 24px;
	margin: 0;
	word-break: break-word;
	text-transform: none;
    color: rgba(255, 255, 255, 0.50);
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	display: block;
    border: 1px solid rgba(255, 255, 255, 0.50);
	padding: 11px 67px 11px 49px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
ul.tabs li::before {
    position: absolute;
    content: "";
    background-image: url(../images/active-tab-arrow.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    height: 20px;
    background-position: center bottom;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 18px;
    opacity: 0;
}
ul.tabs li.active::before  {
    opacity: 1;
}
ul.tabs li em{
    font-style: normal;
    position: relative;
}
ul.tabs li em::after {
    position: absolute;
    content: "";
    background: url(../images/ken-tab-arrow.svg);
    right: -20px;
    top: 5px;
    background-repeat: no-repeat;
    background-position: center top;
    left: unset;
    width: 12px;
    height: 9px;
    background-size: 10px;
    opacity: 0.4;
    transform: rotate(180deg);
}
ul.tabs li.active em::after {
    opacity: 1;
    transform: rotate(0deg);
    top: 8px;
}
ul.tabs li:hover em::after{
    opacity: 1;
}
ul.tabs li::after {
    display: none;
}
ul.tabs li:hover,
ul.tabs li.active {
	color: #fff;
    background-color: #C81E30;
    border-color: #C81E30;
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
.shr-part {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
.shr-part a{
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.shr-part a:hover{
    background-color: #C81E30;
    border-color: #C81E30;
}
/****dtl-tab-content****/
.tab_content p {
	color: #fff;
}
.kenmerken-tab {
	overflow: hidden;
}
.kenmerken-tab ul {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}
.kenmerken-tab li {
	width: 31.5%;
	background-color: #16171B;
	height: 270px;
	padding: 30px;
	border-radius: 0px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.kenmerken-tab li::before {
    position: absolute;
    content: "";
    background-image: url(../images/ken-li-wave.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.kenmerken-tab li:hover::before{
    opacity: 1;
}
.kenmerken-tab li::after{
    display: none;
}
.kenmerken-tab li h6 {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
	position: absolute;
	left: 30px;
	top: 30px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.kenmerken-tab li:hover h6{
    color: #FFF;
}
.kenmerken-tab li h4 {
	text-transform: none;
	text-align: center;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.kenmerken-tab li:hover {
	background-color: #C81E30;
}
.kenmerken-tab li:hover h4 {
	color: #fff;
}
.kenmerken-tab li:hover h6 {
	color: rgba(255, 255, 255, 0.70);
}
.bullet-panel h4 {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
	margin-bottom: 20px;
	color: #fff;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    color: #fff;
	margin-bottom: 10px;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C81E30;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #C81E30;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    line-height: 24px;
    font-size: 1.6rem;
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    line-height: 30px;
    color: #fff;
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
    text-transform: none;
    font-size: 2rem;
	color: #fff;
}
.tab-btm-btn {
	margin-top: 40px;
}
.kenmerken-tab-block-part {
	display: none;
}
.dtl-tab-sec .col-lg-8 {
	width: 60%;
}
.dtl-tab-sec .col-lg-4 {
	width: 40%;
}
/*****kenmarken-popup******/
.kenmarken-popup {
	display: none;
}
.kenmarken-popup-wrap {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.kenmarken-popup-overlay {
	position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    background-color: #16171B;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
	border: 1px solid #C81E30;
	overflow: hidden;
	border-radius: 0px;
}
.kenmarken-popup-close {
	background-color: transparent;
    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 #fff;
}
.kenmarken-popup-close img {
	width: 15px;
}
.kenmarken-popup-content {
	overflow-y: scroll;
	height: calc(100% - 116px);
	padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar  {
	background-color: #5B5A5E;
	width: 10px;
	border-radius: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
	background-color: #999999;
	border-radius: 10px;
}
.kenmerken-popup-model {
	padding-bottom: 30px;
	padding-right: 40px;
}
.kenmerken-popup-model h3 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-bottom: 10px;
    font-family: 'LamaSans-SemiBold';
}
.kenmerken-popup-model h6 {
	color: rgba(255, 255, 255, 0.7);
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmarken-popup-content h4 {
	margin-bottom: 10px;
	color: #fff;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px;
}
.kenmarken-popup-content li:nth-child(odd) {
    padding-right: 10px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    line-height: 30px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.kenmarken-popup-content li::after{
    display: none;
}
.anbd-profile-detail{
    background-color: #16171B;
}
.anbd-profile-img{
    width: 124px;
    height: 124px;
    border-radius: 50%;
    overflow: hidden;
}
.anbd-profile-img img {
    object-fit: cover;
    object-position: top;
    height: 100%;
}
.anbd-profile-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 23px 0px;
}
.anbd-profile-heading h3{
    margin-bottom: 3px;
}
.anbd-profile-heading h4{
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 2rem;
    line-height: normal;
    margin-bottom: 5px;
}
.anbd-profile-heading a{
    color: rgba(255, 255, 255, 0.70);
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 158%;
    letter-spacing: 0.28px;
}
.anbd-profile-heading a:hover{
    color: #C81E30;
}
.anbd-profile-btm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 27px 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    row-gap: 14px;
}
.anbd-profile-btm p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Sora-SemiBold';   
    font-size: 1.6rem;
    line-height: 110%;
}
.anbd-profile-btm p a {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Sora-Regular';
    margin-left: -6px;
}
.anbd-profile-btm p a:hover{
    color: #C81E30;
}
.anbd-related-btn .swiper-button-next {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.anbd-related-btn .swiper-button-prev {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
/* anbd-related-sec */
.anbd-related-sec {
    padding: 95px 0px;
}
.anbd-related-heading{
    margin-bottom: 70px;
}
/* ------------- AANBOD DETAIL PAGE END HERE -------------- */
/* ------------- OVER ONS PAGE START HERE -------------- */
/* over-ons-sec */
.over-ons-sec {
    padding-top: 184px;
}
.over-wave {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/* overons-img-sec */
.gallery-sec {
	height: 100vh;
}
.gallery-sec .container {
	height: 100%;
}
.gallery-frame {
	pointer-events: none;
	position: relative;
	height: 100%;
}
.each-gallery {
	overflow: hidden;
}
.gallery-frame .row .col-lg-4:nth-child(1) .each-gallery {
    max-width: 366px;
    height: 436px;
    margin-top: 188px;
}
.gallery-frame .row .col-lg-4:nth-child(2) .each-gallery-wrap .each-gallery:nth-child(1){
    max-width: 244px;
    height: 189px;
}
.gallery-frame .row .col-lg-4:nth-child(2) .each-gallery-wrap .each-gallery:nth-child(2) {
    max-width: 465px;
    height: 305px;
    margin-top: 228px;
}
.gallery-frame .row .col-lg-4:nth-child(3) .each-gallery {
    max-width: 376px;
    height: 331px;
    margin-top: 23px;
    margin-left: auto;
}
.gallery-text {
	max-width: 845px;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	mix-blend-mode: difference;
}
.gallery-text h2{
    margin: 0 auto;
	margin-bottom: 30px;
    max-width: 593px;
}
.gallery-text p {
	opacity: 0;
	transition: none;
}
/* why-choose-sec */
.why-choose-sec {
    position: relative;
    padding-top: 168px;
    padding-bottom: 64px;
}
.why-choose-sec::after{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.40) 0%, rgba(12, 12, 14, 0.40) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.why-choose-sec::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    width: 100%;
    height: 87px;
    left: 0;
    top: 0;
}
.why-choose-wrap  .each-service-text {
    max-width: 340px;
}
.why-choose-heading{
    position: relative;
    z-index: 1;
    margin-bottom: 89px;
}
.why-choose-wrap .each-service::after{
    background: linear-gradient(0deg, #16171B 0%, #16171B 100%);
}
.why-choose-wrap  .each-service::before {
    background: linear-gradient(0deg, rgba(22, 23, 27, 0.60) 0%, rgba(22, 23, 27, 0.60) 100%);
}
.why-choose-wrap .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
}
/* team-sec */
.team-sec{
   padding-top: 119px; 
   padding-bottom: 137px;
}
.team-heading{
    margin-bottom: 50px;
}
.team-member-img{
    height: 375px;
    width: 100%;
}
.team-member-img img{
    height: 100%;
    object-fit: cover;
}
.team-member-heading h4{
    margin-top: 21px;
    margin-bottom: 8px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.team-member-heading p{
    margin-bottom: 0;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.team-member-each{
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;   
}
.team-member-each:hover .team-member-heading h4{
    color: #C81E30;
}
.team-member-each:hover .team-member-heading p{
    color: #C81E30;
}
.team-slider-btn .swiper-button-next {
    right: 0;
    top: 0;
}
.team-slider-btn .swiper-button-prev {
    right: 80px;
    top: 0;
    left: unset;
}
/* ------------- OVER ONS PAGE END HERE -------------- */
/* ------------- THANK YOU PAGE START HERE -------------- */
.thank-you-sec .home-banner-heading h1{
    margin-bottom: 38px;
}
.thank-you-sec .home-banner-content {
    top: unset;
    transform: unset;
    bottom: 228px;
}
/* ------------- THANK YOU PAGE END HERE -------------- */
/* ---------- POPUP PAGE START HERE ---------- */
.modal-area .modal-dialog {
    max-width: 1098px;
    margin: 8% auto 0;
}
.modal-area .modal {
    background: rgba(12, 12, 14, 0.80);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    border-radius: 0px;
    overflow: hidden;
}
.modal-content .col-lg-5 {
    width: 46.7%;
}
.modal-content .col-lg-7 {
    width: 53.3%;
}
.modal-area .popup-content {
    padding: 80px 72px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
}
.pop-up-image {
	height: 100%;
}
.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: #E73C3A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 3;
    display: none;
}
.popup-layer{
    position: absolute;
    right: -1px;
    bottom: 0;
    z-index: 0;
}
.popup-inner-content{
    position: relative;
    z-index: 1;
}
.popup-inner-content img{
    width: 233px;
    margin-bottom: 60px;
}
.popup-inner-content p{
    color: #121212;
    line-height: 165%; 
    letter-spacing: 0.32px;
    margin-bottom: 29px;
}
.popup-btn {
    color: #1A241F;
    background: transparent;
    border-radius: 0px;
    padding: 12px 20px;
    line-height: 24px;
    border: 1px solid #1A241F;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.popup-btn::before{
    display: none;
}
.popup-btn:hover{
    background-color: #40af36;
    border-color: #40af36;
}
/* ---------- POPUP PAGE END HERE ---------- */
/* ---------- VERKOCHT PAGE START HERE ---------- */
.verkocht-list-sec{
    padding-top: 173px;
    padding-bottom: 87px;
}
.verkocht-list-sec .container > .row{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 18px;
}
/* ---------- VERKOCHT PAGE END HERE ---------- */
/* ------- DIENS LIST PAGE START --------------- */
/****inner-banner-sec****/
.inner-banner-sec {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.each-inner-banner {
    height: 500px;
    position: relative;
}
.each-inner-banner img {
    height: 100%;
    object-fit: cover;
}
.each-inner-banner::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.50) 0%, rgba(12, 12, 14, 0.50) 100%);
}
.inner-banner-content::after {
    position: absolute;
    content: "";
    background-color: #0C0C0E;
    width: 100vw;
    height: 300vw;
    left: -72%;
    top: -400%;
    z-index: -1;
    overflow: hidden;
}
.inner-banner-content {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 34%;
    z-index: 1;
}
/* *****diens-list-sec**** */
.diens-list-sec{
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 95px;
    padding-bottom: 108px;
}
.diens-list-wrap .row{
    row-gap: 24px;
    margin-left: -12px;
    margin-right: -12px;
}
.diens-list-wrap .col-lg-6{
    padding-left: 12px;
    padding-right: 12px;
}
.diens-list-sec-merk{
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
}
.diens-list-sec::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 270px;
    content: "";
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
}
.diens-list-heading p{
    margin-bottom: 0;
}
.diens-list-text h6 {
    margin-bottom: 12px;
}
.diens-list-text h4{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.each-diens-list-wave1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}
.each-diens-list-wave2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.each-diensten-list-part:hover .each-diens-list-wave2{
    opacity: 1;
    z-index: 1;
}
.each-diensten-list-part{
    position: relative;
    z-index: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.diens-list-img{
   height: 496px;
}
.diens-list-img img{
    height: 100%;
    object-fit: cover;
}
.each-diensten-list-part::after{
    position: absolute;
    content: "";
    background: #16171B;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.each-diensten-list-part::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(22, 23, 27, 0.50) 0%, rgba(22, 23, 27, 0.50) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;   
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.each-diensten-list-part:hover::after{
    opacity: 0;
}
.each-diensten-list-part:hover::before{
    opacity: 1;
}
.diens-list-heading {
    position: absolute;
    top: 0;
    left: 0;
    padding: 44px 110px 55px 55px; 
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.each-diensten-list-part:hover .each-service-wave1{
    opacity: 0;
}
/* --------- DIENS LIST END --------- */
/* -------- DIENS DTL START ---------- */
.dtl-page-header::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 28%;
    background-image: url(../images/inner-header-bg.svg);
    z-index: -1;
}
/* ***back-btn*** */
.back-btn {
    top: 180px;
    position: relative;
    z-index: 1;
}
/* ***diens-dtl-top-sec**** */
.diens-dtl-top-sec{
    position: relative;
    margin-top: -55px;
    min-height: 924px;
    width: 100%;
    padding-top: 200px;
    padding-bottom: 100px;
}
.diens-dtl-top-sec::after{
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
    height: 271px;
    position: absolute;
}
.diens-dtl-top-merk{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    height: 100%;
}
.diens-dtl-top-merk img{
    height: 100%;
    object-fit: cover;
}
.diens-dtl-top-text{
    position: relative;
    z-index: 1;
    max-width: 684px;
    margin-right: auto;
    margin-top: 100px;
}
.diens-dtl-top-text h2{
    padding-bottom: 27px;
}
.diens-dtl-top-text h6{
    padding-bottom: 25px;
}
.diens-dtl-top-text li{
    font-size: 1.6rem;
    line-height: 30px;
    letter-spacing: 0.32px;
}
.diens-dtl-top-text li::after{
    top: 10px;
}
.diens-dtl-top-text ul{
    margin-bottom: 34px;
}
/****service-dtl-info-sec***/
.service-dtl-info-sec{
    padding-bottom: 75px;
}
/*****choose-us-sec****/
.acc-block li::after{
    display: none;
}
.acc-block tr{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.acc-block li td{
    width: 55%;
}
.acc-block li td:last-child{
    width: 45%;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
    padding: 35px 0;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(107, 107, 106, 0.35);;
}
.acc-block li:first-child{
    padding-top: 0;
}
.acc-block li:last-child{
    border-bottom: 0;
}
.acc-block li::before {
    display: none;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li td:last-child{
    position: relative;
}
.acc-block li td:last-child::after {
    position: absolute;
    height: 28px;
    width: 28px;
    background-image: url(../images/acc-down-arrow.svg);
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    top: 5px;
    right: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.open.open td:last-child::after {
	transform: rotate(-45deg) !important;
}
.acc-block p {
	margin-top: 0px;
	margin-bottom: 0;
	max-width: 490px;
	width: 100%;
    color: #fff;
}
.acc-block td p{
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.70);
}
.acc-block table{
    width: 100%;
}
.acc-block h3{
    color: rgba(255, 255, 255, 0.70);
}
.open.open h3{
    color: #fff;
}
.acc-block .open.open td  p{
    color: #fff;
}
.acc-block td em {
	display: block;
	overflow: hidden;
	height: 0;
	font-style: normal;
}
.acc-block em .char {
	display: inline-block;
	opacity: 0;
}
/* ******form-sec*** */
.from-sec {
    position: relative;
    overflow: hidden;
    padding: 62px 0;
}
.form-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 31%;
    height: 100%;
    z-index: 1;
}
.form-img img {
    height: 100%;
    object-fit: cover;
}
.form-main-area-part{
    position: relative;
    z-index: 1;
}
.form-dtl-area{
    background: #16171B;
    padding: 45px;
}
.form-merk-img{
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
}
.from-wrap{
    position: relative;
    max-width: 1177px;
    margin-left: auto;
}
.from-sec::after{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 176px;
    content: "";
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 100%);
}
.from-sec::before{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 176px;
    content: "";
    background: linear-gradient(204deg, rgba(12, 12, 14, 0.00) 0%, #0C0C0E 97%);
    z-index: 1;
}
.f-common-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.form-main-area-part .row{
    align-items: center;
}
.form-main-area-part .col-lg-7{
    width: 54.5%;
}
.form-main-area-part .col-lg-4{
    width: 44.5%;
}
.form-right-side{
    max-width: 456px;
    margin-left: auto;
    padding-left: 10px;
}
.f-common-box {
    border-bottom: 1px solid rgba(107, 107, 106, 0.35);
    padding: 0px 0px 16px;
    margin: 16px 0px 54px;
}
.f-box-content p{
    margin-bottom: 0;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.50);
}
.f-box-content p a{
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.50);
}
.f-box-content p:hover a{
    color: #C81E30;
}
.f-box-content h4{
    padding-bottom: 8px;
}
.f-box-content-top{
    display: flex;
}
.f-box-content-top p:first-child{
    position: relative;
    margin-right: 14px;
    padding-right: 14px;
}
.f-box-content-top p:first-child::after{
    content: "";
    top: 3px;
    right: 0;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.50);
    position: absolute;
}
.f-common-box td{
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.50);
    letter-spacing: 0.32px;
}
.f-box-content tbody{
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
}
.f-box-content tr:first-child{
    padding-right: 14px;
    margin-right: 9px;
    position: relative;
}
.f-box-content tr:first-child::after{
    content: "";
    background: rgba(255, 255, 255, 0.50);
    right: 0;
    top: 4px;
    height: 16px;
    width: 1px;
    position: absolute;
}
.f-box-icon img{
    width: 20px;
}
.form-each-social{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-each-social ul{
    display: flex;
}
.form-each-social ul li::after {
    display: none;
}
.form-each-social ul li a:hover{
    opacity: 0.4;
}
.form-heading{
    max-width: 450px;
}
.form-heading h2{
    padding-bottom: 19px;
    line-height: 56px;
}
.form-heading p{
    margin-bottom: 15px;
}
.form-dtl-area .form-style {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.70);
    background: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    width: 100%;
    height: 100%;
    padding: 20px 0 17px;
    padding-left: 0;
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
.form-dtl-area .form-style::placeholder {
    color: rgba(255, 255, 255, 0.70);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-dtl-area  select.form-style{
    color: rgba(255, 255, 255, 0.70);
}
.form-dtl-area  select.form-style option{
    color: #000;
}
.form-dtl-area .form-style:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.70);
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-dtl-area .form-style:focus {
    box-shadow: none;
    border-color: #fff;
    background: transparent;
    color: #fff;
}
.form-dtl-area .form-style:focus::placeholder {
    color: #fff;
}
.form-dtl-area textarea.form-style {
    height: 102px;
    resize: none;
}
.form-btn {
    margin-top: 60px;
}
.form-dtl-area .form-group{
    margin-bottom: 20px;
}
body .form-dtl-area .error_cls,
body .form-dtl-area .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
.form-dtl-area .form-style.foto_upload,
.form-dtl-area .form-style.photo_upload {
	color: rgba(255, 255, 255, 0.70);
	font-size: 1.6rem;
}
.form-merk-img-mobile{
    display: none;
}
/* ****diens-dtl-btm-slider**** */
.diens-dtl-btm-heading{
    text-align: center;
    padding-bottom: 75px;
}
.diens-dtl-btm-sec{
    padding-bottom: 110px;
    padding-top: 110px;
}
.diens-list-text h6 {
    margin-bottom: 12px;
}
.diens-list-text h4{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.diens-dtl-btm-wave1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}
.diens-dtl-btm-wave2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}
.diens-dtl-btm-main:hover .diens-dtl-btm-wave2{
    opacity: 1;
    z-index: 1;
}
.diens-dtl-btm-main{
    position: relative;
    z-index: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.diens-dtl-btm-img{
   height: 496px;
}
.diens-dtl-btm-img img{
    height: 100%;
    object-fit: cover;
}
.diens-dtl-btm-main::after{
    position: absolute;
    content: "";
    background: #16171B;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.diens-dtl-btm-main::before{
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(22, 23, 27, 0.50) 0%, rgba(22, 23, 27, 0.50) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;   
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
}
.diens-dtl-btm-main:hover::after{
    opacity: 0;
}
.diens-dtl-btm-main:hover::before{
    opacity: 1;
}
.diens-btm-text-area {
    position: absolute;
    top: 0;
    left: 0;
    padding: 44px 110px 55px 55px; 
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.diens-dtl-btm-main:hover .diens-dtl-btm-wave1{
    opacity: 0;
}
.diens-dtl-btm-text h6{
    padding-bottom: 12px;
}
.diens-dtl-btm-slider .common-arrow{
    top: 44%;
}
.diens-dtl-btm-slider .swiper-button-next{
    right: -22px;
}
.diens-dtl-btm-slider .swiper-button-prev{
    left: -22px;
}
/* ------------ DIENS DTL PAGE END ------------ */
/* -------- VERKOOP DTL PAGE START --------- */
/* *****verkoop-service-sec*** */
.verkoop-service-sec .acc-block ul > li table ul li{
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.70);
    padding-left: 20px;
    line-height: 24px; 
    letter-spacing: 0.32px;
    font-size: 1.6rem;
    margin-bottom: 0px;
}
.verkoop-service-sec .acc-block ul > li table ul{
    max-width: 470px;
}
 .verkoop-service-sec .acc-block ul > li table ul li::after{
    display: block;
}
.verkoop-service-sec .acc-block ul > li.open table ul li{
    color: #fff
}
/* -------- VERKOOP DTL END START --------- */
/* -------- CONTACT PAGE START ------- */
/* **** map sec **** */
.map {
    height: 500px;
}
.map-sec {
    padding-top: 97px;
    position: relative;
}
/* ****contact-form-sec**** */
.contact-form-sec .from-wrap{
    max-width: 100%;
    margin-left: 0;
}
.from-sec.contact-form-sec {
    padding: 82px 0 130px;
}
.contact-form-sec .form-main-area-part .col-lg-5 {
    width: 40%;
}
.contact-form-sec .form-main-area-part .col-lg-2 {
    width: 26%;
}
.contact-form-sec .form-main-area-part .col-lg-4 {
    width: 34%;
}
.contact-form-sec .form-dtl-area{
    height: 100%;
    background: #0C0C0E;
    padding: 5px;
    max-width: 523px ;
    margin-right: auto;
}
.contact-form-sec .contact-form-img{
    height: 100%;
}
.contact-form-sec .contact-form-img img{
    height: 100%;
    object-fit: cover;
}
.contact-form-sec .form-right-side {
    max-width: 456px;
    margin-left: auto;
    padding-left: 20px;
}
.contact-form-sec .form-right-side{
    height: 100%;
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.contact-form-sec .form-main-area-part .row {
    align-items: unset;
}
/* *****contact-btm-sec**** */
.contact-btm-img{
    height: 658px;
    position: relative;
}
.contact-btm-img::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(12, 12, 14, 0.40) 0%, rgba(12, 12, 14, 0.40) 100%);
}
.map-sec .inner-banner-content::after {
    height: 520px;
    top: -366%;
}

/*******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 h5{
    padding-bottom: 10px;
    /* text-transform: uppercase; */
    padding-top: 15px;
    margin-bottom: 15px;
    color: #1F1F1F;
    border-bottom: 1px solid #0B1931;
    padding-bottom: 10px;
    /* font-family: 'Poppins-Medium'; */
    font-size: 2.4rem;
    line-height: 32px;

}
.star_icon p img{
    width: 15px;
    height: 15px;
    margin-top: -3px;
    margin-right: 5px;
    filter: invert(0);
    padding-right: 0;
}
.star_icon p{
    padding-bottom: 6px;
    word-break: break-word;
}
.photo_contnt li img{
    width: 15px;
    margin-left: 5px;
}
.star_icon h3 {
    margin: 40px 0 30px;
}
.aanbod-detail-tab-sec .tab-content .star_icon p {
    margin: 0;
}
.anbd-big-slider {
    margin-bottom: 20px;
}
.bullet-panel h3 {
    margin-bottom: 30px;
}
.cursor{
    cursor:pointer;
}
.aanbod-loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#FB441E calc(1*100%/6),#ffffff 0 calc(3*100%/6),#FB441E 0),
              linear-gradient(#FB441E calc(2*100%/6),#ffffff 0 calc(4*100%/6),#FB441E 0),
              linear-gradient(#FB441E calc(3*100%/6),#ffffff 0 calc(5*100%/6),#FB441E 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: #FB441E;
  }


.carpass-img {
    width: 115px;
}

/****fix-wp****/
/* .fix-wp a {
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 63px;
    height: 63px;
    border-radius: 100px;
    background-color: #25D366;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 24px;
} */

.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; */
    bottom: 39px;
    /* left: 16px; */
    right: -3px;
	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){
	.fix-wp{
		display: none;
	}
}
.privacy_section h2{
    padding-top: 85px;
}
.range-sec .range-area .fill{
    background-color: #121212;
}
.iframe-footer {
    border: 0;
    width: 100%;
    margin-bottom: 0;
    height: 50px;
    display: block;
}
.calsty{
    border: 0;
    width: 100%;
    /* height: 690px; */
    background: transparent;
}
.each-product:hover .each-product-heading{
    background: #C81E30;
}
.each-product:hover .each-product-price h4{
    color: #fff;
}
.each-product-text td{
    font-size: 1.4rem;
    position: relative;
    letter-spacing: 0.28px;
    font-family: 'LamaSans-Medium';
    line-height: 22px;
    padding-left: 6px;
    margin-left: 6px;
}
.each-product-text td::after{
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 4px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.70);
}
.each-product-text td:first-child{
    padding-left: 0;
    margin-left: 0;
}
.each-product-text td:first-child::after{
    display: none;
}
.each-product-text tr{
    display: flex;
    /* column-gap: 15px; */
    flex-wrap: wrap;
    row-gap: 6px;
}
.each-product:hover .each-product-text td{
    color: rgba(255, 255, 255, 0.70);
}
/* .each-product-text td:nth-child(2n + 1):not(:first-child)::after {
    display: none;
} */
.star_icon h4{
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #fff;
}
.from-sec-wrapper::after{
    background: linear-gradient(90deg, rgba(200, 30, 48, 0.00) 0%, #C81E30 49.04%, rgba(200, 30, 48, 0.00) 100%);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    position: absolute;
    z-index: 1;
}
.from-sec-wrapper::before{
    background: linear-gradient(90deg, rgba(200, 30, 48, 0.00) 0%, #C81E30 49.04%, rgba(200, 30, 48, 0.00) 100%);
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    position: absolute;
    z-index: 2;
}
.diens-dtl-btm-text h4{
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.privacy_section{
    padding-top: 80px;
    padding-bottom: 80px;
}
.mobile-menu .container{
    height: 100%;
}
.mobile-menu .row{
    height: 100%;
    overflow-y: auto;
}
.ft-bovag img{
	width:140px;
}
.ft-sbblog img {
    width: 90px;
}