body {
	padding: 0px;
	margin: 0px;
    color: #2F2F2F;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
#page {
    padding-top: 17px;
    /* padding-bottom: 17px; */
}
#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;
}
/*****header-area****/
.header-area {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid transparent;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    border-color: rgba(0, 0, 0, 0.20);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.header-logo img {
    width: 192px;
}
.header-right {
    display: flex;
    justify-content: end;
    gap: 6px;
}
.header-nav > ul {
    margin-bottom: 0;
    display: flex;
    justify-content: end;
    gap: 6px;
}
.header-nav > ul > li::before {
    display: none;
}
.header-nav > ul > li {
    border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav > ul > li > a {
    color: #2F2F2F;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: block;
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #F5F5F5;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.header-nav > ul > li:hover {
    background-color: #0070BA;
}
.header-nav > ul > li:hover > a {
    background-color: transparent;
    color: #fff;
}
/******menu-btn******/
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #2F2F2F;
    padding: 10px 20px;
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    gap: 10px;
    position: relative;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    cursor: pointer;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn:hover {
    background-color: #0070BA;
}
.menu-bar {
    position: relative;
    max-width: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 3px 0 3px auto;
    width: 16px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn.active {
    background-color: #0070BA;
}
.menu-btn.active .menu-bar div {
    transform: scale(0);
}
.menu-btn.active .menu-bar:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-btn.active .menu-bar:after {
    transform: translateY(-4px) rotate(-135deg);
}
/***dropdown***/
.parent-dropdown {
	position: relative;
}
.parent-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 60px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #F5F5F5;
	min-width: 170px;
	text-align: center;
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown ul li {
	color: #fff;
}
.parent-dropdown ul li::before {
    display: none;
}
.header-nav .parent-dropdown > a {
    padding-right: 40px;
}
.parent-dropdown ul li a {
	color: #2F2F2F;
	padding: 5px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	width: 100%;
}
.parent-dropdown ul li:last-child a {
	border-bottom: 0;
}
.parent-dropdown ul li a:hover {
	color: #0070BA;
}
.parent-dropdown:hover ul {
	top: 48px;
	opacity: 1;
	pointer-events: all;
}
.parent-dropdown img {
    cursor: pointer;
    width: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown:hover img {
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(0) invert(1);
}
.parent-dropdown:hover {
    z-index: 1;
}
/*****side-menu****/
.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 25%;
    background-color: #2F2F2F;
    padding: 170px 40px 40px;
    z-index: 98;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.side-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.side-menu-wrap {
    height: 100%;
    overflow-y: auto;
}
.side-menu ul {
    margin-bottom: 0;
}
.side-menu > .side-menu-wrap > ul > li {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 2rem;
    display: table;
}
.side-menu > .side-menu-wrap > ul > li::before {
    display: none;
}
.side-menu > .side-menu-wrap > ul > li > a {
    color: #fff;
}
.side-menu > .side-menu-wrap > ul > li > a:hover {
    color: #0070BA;
}
.side-menu .parent-dropdown > a {
    padding-right: 20px;
}
.side-menu .parent-dropdown img {
    right: 0;
    filter: brightness(0) invert(1);
}
.side-menu .parent-dropdown:hover ul {
    top: 24px;
}
.side-menu .parent-dropdown ul {
    left: 0;
    transform: translateX(0);
    background-color: #2E2E2E;
    border-color: rgba(255, 255, 255, 0.1);
}
.side-menu .parent-dropdown ul li {
    font-size: 1.6rem;
}
.side-menu .parent-dropdown ul li a {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.side-menu .parent-dropdown ul li a:hover {
    color: #0070BA;
}
.body-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}
/*****banner-sec***/
.banner-sec {
    padding-top: 66px;
}
.banner-wrap {
	position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.banner-wrap::before {
	content: "";
	height: calc(100% - 20px);
	width: 33.5%;
	position: absolute;
	left: 10px;
	top: 50%;
    transform: translateY(-50%);
	z-index: 2;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}
.banner-wrap::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(30, 30, 30, 0.20) 53.16%);  
	z-index: 1;
}
.banner-video, .each-banner {
	height: 800px;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
.banner-content {
    position: absolute;
    left: 0;
    bottom: 34px;
    z-index: 2;
    width: 100%;
}
/* .banner-content-heading h1 {
    margin: 20px 0 29px;
} */
.banner-content-heading h1 {
    margin: 20px 0 6px;
}
.banner-content-heading h6 {
    color: #fff;
}
.banner-content-heading .common-btn {
    margin-right: 5px;
}
.banner-content-heading .common-btn:last-child {
    margin-right: 0;
}
.banner-content-heading p {
    color: #fff;
    margin-bottom: 34px;
}
.banner-others {
    margin-top: 173px;
}
.banner-others h6 {
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 0.32px;
    position: relative;
    padding-top: 12px;
    margin-top: 18px;
    display: table;
    margin-left: auto;
}
.banner-others h6::after {
    content: "";
    height: 2px;
    width: calc(100% - 31px);
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.50);
    position: absolute;
}
.go-next-btn {
    color: rgba(255, 255, 255, 0.80);
    font-family: 'LamaSans-Regular';
    font-size: 16px;
    line-height: 24px; 
    letter-spacing: 0.32px;
    cursor: pointer;
    padding: 0;
    border: 0;
    background-color: transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.go-next-btn::after {
    content: '';
    height: 10px;
    width: 10px;
    background-image: url(../images/next-sec-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 10px;
    margin-left: 3px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.go-next-btn:hover {
    color: #fff;
}
/*****product-sec****/
.product-sec {
    position: relative;
    padding: 84px 0 50px;
    overflow-x: clip;
}
.product-sec .container {
    position: relative;
    z-index: 1;
}
.product-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.99) 100%);
    pointer-events: none;
}
.sec-pattern {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.sec-pattern img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product-heading {
    margin-bottom: 50px;
}
.product-heading h2 {
    margin-top: 13px;
}
.each-product-img {
    border-radius: 10px;
    overflow: hidden;
}
.each-product-text {
    margin-top: 20px;
}
.each-product-text ul {
    margin: 0;
    display: flex;
    justify-content: end;
    gap: 8px;
    flex-wrap: wrap;
}
.each-product-text li {
    border-radius: 5px;
    background-color: #0070BA;
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: normal;
    padding: 8px 14px;
}
.each-product-text li::before {
    display: none;
}
.each-product-text li.pm-price {
    background-color: #2F2F2F;
}
.each-product-text li:last-child {
    margin-right: 0;
}
.each-product-text h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-info {
    border-radius: 10px;
    background-color: #F5F5F5;
    padding: 14px 20px;
    margin-top: 22px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info table,
.each-product-info tbody {
    width: 100%;
}
.each-product-info tr {
    display: flex;
}
.each-product-info td {
    color: #2F2F2F;
    font-family: 'Teko-Regular';
    font-size: 3rem;
    line-height: 30px; 
    letter-spacing: 0.3px;
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    display: block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info td strong {
    margin-bottom: 7px;
    font-weight: normal;
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: normal;
    display: block;
}
.each-product-info td::after {
    content: "";
    height: 17px;
    width: 1.5px;
    background: rgba(47, 47, 47, 0.20);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info td:last-child {
    padding-right: 0;
    margin-right: 0;
}
.each-product-info td:last-child::after {
    opacity: 0;
}
.each-product:hover .each-product-info {
    background-color: #2F2F2F;
}
.each-product:hover .each-product-info td {
    color: #fff;
}
.each-product:hover .each-product-info td::after {
    background-color: rgba(255, 255, 255, 0.20);
}
.product-slider {
    padding-right: 8px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    position: relative;
}
.product-slider::after{
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    right: 0;
    top: 0;
    width: 328px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.product-control {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 42px;
    max-width: 90%;
}
.product-arrow {
    display: inline-flex;
    gap: 10px;
}
.product-arrow .common-arrow {
    position: initial;
    margin: 0;
}
/*****service-sec******/
.service-sec {
    overflow-x: clip;
}
.service-sec .container {
    position: relative;
    z-index: 1;
}
.service-wrap {
    padding: 66px 0;
    background-color: #2F2F2F;
    border-radius: 10px;
    position: relative;
}
.service-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/service-blur.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}
.service-heading h2 {
    color: #fff;
    margin: 20px 0 31px;
}
.service-heading h6 {
    color: #fff;
}
.service-heading .common-btn {
    margin-right: 10px;
    position: relative;
    z-index: 1;
}
.service-heading .common-btn:last-child {
    margin-right: 0;
}
.service-heading-info {
    max-width: 485px;
    width: 100%;
    margin-left: auto;
    padding: 70px 0;
}
.service-heading p {
    color: #fff;
}
.each-service {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.each-service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-text h2 {
    color: #fff;
}
.each-service-text .txt-btn {
    opacity: 0;
    margin-bottom: -30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service .round-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    transform: scale(0);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-img {
    height: 100%;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.each-service:hover .each-service-text {
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(5px);
}
.each-service:hover .each-service-text .txt-btn {
    margin-bottom: 0;
    opacity: 1;
}
.each-service:hover .round-btn {
    transform: scale(1);
}
.service-main {
    margin-top: -50px;
}
.service-main .col-lg-6 {
    width: 42%;
}
.service-main .col-lg-2 {
    width: 25%;
}
.service-main .col-lg-4 {
    width: 33%;
}
.service-main .col-lg-6 .each-service {
    height: calc(100% - 140px);
    margin-top: 140px;
}
.service-main .col-lg-4 .each-service {
    min-height: 724px;
    height: 100%;
}
.service-main .col-lg-2 .each-service {
    height: 401px;
}
.service-reach {
    border-radius: 20px;
    background-color: #F5F5F5;
    padding: 35px;
    margin-top: 14px;
}
.service-reach h3 {
    color: #0070BA;
}
.service-reach p {
    margin: 17px 0 31px;
}
.service-reach .common-btn {
    background-color: #F5F5F5;
}
.service-reach .common-btn:hover {
    background-color: #0070BA;
}
/***********usp-marquee************/
.usp-marquee-sec {
	position: relative;
	width: 100%;
    padding: 15px 0;
}
.usp-marquee-outer {
    padding: 33px 0;
    border-radius: 10px;
    background-color: #F5F5F5;
    overflow: hidden;
    position: relative;
}
.usp-marquee-outer::before,
.usp-marquee-outer::after {
    content: "";
    height: 100%;
    width: 160px;
    background: linear-gradient(-90deg, rgba(245, 245, 245, 0.00) 0%, #F5F5F5 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.usp-marquee-outer::after {
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.00) 0%, #F5F5F5 100%);
    width: 95px;
    z-index: 2;
    left: auto;
    right: 0;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 116px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 116px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
	line-height: normal;
	color: #2F2F2F;
	font-size: 3rem;
    font-family: 'Teko-Regular';
	padding-left: 33px;
    line-height: 30px;
    letter-spacing: 0.3px;
	position: relative;
}
.usp-marquee-wrap li::before {
	content: "";
	height: 23px;
	width: 23px;
	position: absolute;
	left: 0;
	top: 2px;
    background-image: url(../images/usp-icon.svg);
    background-position: center center;
    background-size: 23px;
    background-repeat: no-repeat;
}
/******about-sec*****/
.about-sec {
    padding: 70px 0 40px;
    position: relative;
}
.about-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.99) 100%);
    pointer-events: none;
}
.about-sec .container {
    position: relative;
    z-index: 1;
}
.about-heading {
    max-width: 780px;
    width: 100%;
    margin: 0 auto 37px;
    position: relative;
    z-index: 2;
}
.about-heading h2 {
    margin: 20px 0 3px;
}
.about-heading p {
    margin-bottom: 40px;
}
.about-gallery .center-slide {
	bottom: -95px;
}
.about-gallery .swiper {
	padding-bottom: 100px;
}
.each-gallery {
    height: 558px;
    border-radius: 20px;
    overflow: hidden;
}
.each-gallery img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gallery:hover img {
    transform: scale(1.1);
}
.about-gallery {
    margin-top: -90px;
}
.about-rotate {
    width: 182px;
    height: 182px;
    background-color: rgba(0, 112, 186, 0.70);
    display: table;
    border-radius: 100%;
    margin: -90px auto 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-rotate a {
    height: calc(100% - 15px);
    width: calc(100% - 15px);
}
.about-rotate-img {
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border-radius: 100%;
    padding: 15px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}
.about-rotate::after {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/about-arrow.png);
    background-position: center center;
    background-size: 18px;
    background-repeat: no-repeat;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*****counter-sec*****/
.counter-sec {
    padding: 0 0 40px;
}
.counter-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    row-gap: 30px;
    column-gap: 10px;
}
.each-counter {
    text-align: center;
}
.each-counter h6 {
    font-size: 1.4rem;
}
/*****review-sec****/
.review-sec {
    padding: 30px 0 66px;
}
/***footer-area***/
.footer-area {
    padding-top: 17px;
    padding-bottom: 17px;
}
.footer-wrap {
    padding: 64px 0 43px;
    background-color: #1E1E1E;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.footer-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    background-image: url(../images/footer-blur.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-mark {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/footer-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}
.footer-mark img {
    height: 100%;
    object-fit: cover;
}
.footer-wrap .container {
    position: relative;
    z-index: 1;
}
.footer-info {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    max-width: 624px;
    width: 100%;
    margin-left: auto;
}
.each-footer-info h3 {
    color: #fff;
    margin-bottom: 15px;
    line-height: 24px;
}
.each-footer-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 7px;
}
.each-footer-info p a {
    color: rgba(255, 255, 255, 0.75);
}
.each-footer-info p a:hover {
    color: #fff;
}
.each-footer-info td {
    color: rgba(255, 255, 255, 0.75);
}
.each-footer-info td:nth-child(odd) {
    padding-right: 10px;
    color: #fff;
}
.footer-logo img {
    width: 192px;
}
.footer-logo {
    margin-bottom: 130px;
}
.footer-partner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bovag img {
    width: 160px;
}
.footer-rating,
.footer-rating iframe {
    width: 212px;
}
.footer-rating iframe {
    width: 100%;
}
.footer-btn {
    display: flex;
    justify-content: end;
    gap: 14px;
    margin-bottom: 100px;
}
.footer-wp {
    position: relative;
    padding-left: 50px;
    background-color: #62D358;
    border-color: #62D358;
    color: #fff;
}
.footer-wp::after {
    position: absolute;
    left: 17px;
    background-image: url(../images/whatsapp.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
    height: 24px;
    width: 24px;
    margin-left: 0;
}
.footer-wp:hover {
    background-color: #62D358;
    border-color: #62D358;
    color: #fff;
}
.footer-wp:hover::after {
    filter: brightness(1) invert(0);
}
.footer-btm {
    position: relative;
    padding-top: 40px;
    margin-top: 40px;
}
.footer-btm::after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #C6B2A8;
    position: absolute;
    top: 0;
    left: 0;
}
.footer-credit h6 {
    color: #fff;
    font-size: 1.4rem;
    line-height: normal;
}
.footer-policy ul {
    display: flex;
    margin-bottom: 0;
    justify-content: center;
}
.footer-policy li::before {
    background-image: none;
    height: 60%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    margin: 0;
}
.footer-policy li {
    color: #fff;
    font-size: 1.4rem;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
    line-height: normal;
    letter-spacing: normal;
}
.footer-policy li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.footer-policy li:last-child::before {
    opacity: 0;
}
.footer-policy li a {
    color: #fff;
}
.footer-policy li a:hover {
    color: #0070BA;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: end;
}
.footer-social h6 {
    color: rgba(255, 255, 255, 0.50);
    margin-right: 14px;
    font-size: 1.4rem;
    line-height: normal;
}
.footer-social ul {
    display: flex;
    margin-bottom: 0;
    gap: 12px;
}
.footer-social li::before {
    display: none;
}
.footer-social li a {
    width: 31px;
    height: 31px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social li a:hover {
    background-color: #0070BA;
    border-color: #0070BA;
}
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.each-footer-info tr {
    display: flex;
}
/*====================================popup start======================================*/
.modal-area .modal-dialog {
    max-width: 1090px;
    margin: 8% auto 0;
}
.modal-area .modal {
    background-color: rgba(30, 30, 30, 0.60);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    border-radius: 20px;
    overflow: hidden;
}
.modal-area .popup-content img {
    width: 192px;
}
.modal-area .popup-content p {
	margin: 27px 0 71px;
    color: #121212;
}
.modal-area .popup-content {
    border-radius: 0;
    background-color: #fff;
    overflow: hidden;
    padding:  60px 80px;
    position: relative;
}
.modal-area .popup-content::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/popup-mark.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    -webkit-transition: all 0.5s;
    z-index: 1;
}
.pop-up-image {
	height: 100%;
    overflow: hidden;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
/*=====================================diesnten-list-pg start============================================*/
/****inner-banner-sec****/
.inner-banner-sec {
    padding-top: 66px;
}
.inner-banner-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.inner-banner-sec .inner-banner-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    position: absolute;
    z-index: 2;
    width: 100%;
}
.inner-banner-sec .inner-banner-content h6 {
    color: #fff;
    margin-bottom: 17px;
}
.inner-banner-sec .inner-banner-wrap {
	position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.inner-banner-sec .inner-banner-wrap::before {
	content: "";
	height: calc(100% - 20px);
	width: 35%;
	position: absolute;
	left: 10px;
	top: 50%;
    transform: translateY(-50%);
	z-index: 2;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}
.inner-banner-sec .inner-banner-wrap::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(30, 30, 30, 0.20) 53.16%);  
	z-index: 1;
}
.inner-banner-content p {
    color: #fff;
}
/*****service-list-sec*****/
.service-list-sec {
    padding-top: 70px;
}
.service-list-heading {
    margin-bottom: 53px;
}
.service-list-heading h2,
.service-list-heading p {
    color: #1E1E1E;
}
.service-list-main .row {
    row-gap: 15px;
}
.service-list-main .each-service {
    height: 480px;
}
.service-list-main .each-service .round-btn {
    top: 40px;
    right: 40px;
}
.service-list-heading-right {
    max-width: 676px;
    width: 100%;
    margin-left: auto;
}
.service-dtl-desc-text h3 {
    font-family: 'Teko-Medium';
    line-height: 32px;
}
.service-dtl-desc-text p a,
.service-dtl-desc-text li a,
.service-dtl-text p a,
.service-dtl-text li a {
    text-decoration: underline;
}
/*=====================================diesnten-dtl-pg start============================================*/
/***inner-header****/
.inner-header {
    border-bottom-color: rgba(0, 0, 0, 0.20);
}
/****bk-btn-sec****/
.bk-btn-sec {
    padding-top: 164px;
}
.bk-btn-sec .container {
    position: relative;
    z-index: 1;
}
/****service-dtl-desc-sec****/
.service-dtl-desc-sec {
    position: relative;
    padding: 36px 0 80px;
}
.service-dtl-desc-sec .sec-pattern::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.99) 100%);
    pointer-events: none;
}
.service-dtl-desc-sec .sec-pattern {
    height: calc(100% + 20%);
    top: -20%;
}
.service-dtl-desc-sec .container {
    position: relative;
    z-index: 1;
}
.service-dtl-desc-img {
    max-width: 740px;
    width: 100%;
    margin-left: auto;
}
.service-dtl-desc-text {
    max-width: 693px;
    width: 100%;
    padding-right: 40px;
}
.service-dtl-desc-text h2 {
    margin-bottom: 20px;
}
.service-dtl-desc-text li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}
.service-dtl-desc-text li::before {
    position: absolute;
    left: 0;
    top: 5px;
}
.service-dtl-desc-img {
    display: flex;
    gap: 22px;
}
.service-dtl-desc-img img {
    /* height: 100%;
    object-fit: cover; */
    border-radius: 10px;
}
.service-dtl-desc-img-left {
    /* height: 455px; */
    width: 57%;
}
.service-dtl-desc-img-right {
    /* height: 290px; */
    width: 40%;
}
/***service-dtl-info-sec****/
.service-dtl-info-sec {
    padding-bottom: 85px;
    overflow: hidden;
}
.service-dtl-info-wrap {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.service-dtl-info-sec table,
.service-dtl-info-sec tbody {
    width: 100%;
    display: block;
}
.service-dtl-info-sec tr {
    display: flex;
    flex-direction: column;
    row-gap: 38px;
}
.service-dtl-info-sec td {
    display: block;
    border-radius: 10px;
    background-color: #F5F5F5;
    padding: 34px 46px;
    max-width: 708px;
    width: 100%;
    cursor: default;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
}
.service-dtl-info-sec td:first-child {
    margin-left: 0 !important;
    margin-right: auto !important;
}
.service-dtl-info-sec td:nth-child(even) {
    margin: 0 auto;
}
.service-dtl-info-sec td:last-child {
    margin-left: auto;
    margin-right: 0;
}
.service-dtl-info-sec td h3 {
    color: rgba(15, 16, 19, 0.70);
    margin-bottom: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-dtl-info-sec td p {
    color: rgba(15, 16, 19, 0.70);
    margin: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-dtl-info-sec td:hover {
    background-color: #0070BA;
}
.service-dtl-info-sec td:hover h3,
.service-dtl-info-sec td:hover p {
    color: #fff;
}
.service-dtl-info-sec td ul {
    margin-bottom: 0;
}
.service-dtl-info-sec td li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}
.service-dtl-info-sec td li::before {
    left: 0;
    position: absolute;
    top: 5px;
}
.service-dtl-info-sec td:hover li {
    color: #fff;
}
.service-dtl-info-sec td:hover li::before {
    filter: brightness(0) invert(1);
}
.service-dtl-info-number {
    margin-bottom: 50px;
    padding: 0 124px;
}
.service-dtl-info-number ul {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}
.service-dtl-info-number li {
    font-family: 'Teko-Regular';
    color: rgba(47, 47, 47, 0.40);
    font-size: 3rem;
    line-height: 30px;
    letter-spacing: 0.3px;
    position: relative;
}
.service-dtl-info-number li::before {
    height: 200vh;
    width: 2px;
    background-color: rgba(15, 16, 19, 0.20);
    background-image: none;
    top: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-dtl-info-number li.active::before {
    background-color: #0070BA;
}
/****form-sec****/
.form-sec .container {
    position: relative;
    z-index: 1;
}
.form-wrap {
    border-radius: 10px;
    padding: 65px 0;
    background-color: #2F2F2F;
    position: relative;
}
.form-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/form-blur.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}
.form-block {
    max-width: 742px;
    width: 100%;
    padding-right: 30px;
}
.form-block .form-group {
	margin-bottom: 14px;
}
.form-block .form-style {
	resize: none;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 5px;
    font-family: 'LamaSans-Regular';
    color: #fff;
    font-size: 1.6rem;
    padding: 15px 31px;
    letter-spacing: 0.32px;
	background-color: transparent;
}
.form-block .form-style:placeholder {
	color: rgba(255, 255, 255, 0.40);
}
.form-block .form-style:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.40);
}
.form-block .form-style::placeholder {
	color: rgba(255, 255, 255, 0.40);
}
.form-block .form-style.foto_upload,
.form-block .form-style.photo_upload {
	color: rgba(255, 255, 255, 0.40);
}
.form-block .form-style:focus {
    box-shadow: none;
	border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}
.form-block .form-style:focus::placeholder {
    color: #fff;
}
.form-block textarea.form-style {
    height: 155px;
}
.form-heading h2, .form-heading p {
    color: #fff;
}
.form-heading h2 {
    margin-bottom: 12px;
}
.form-heading {
    margin-bottom: 24px;
}
.form-info {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
}
.form-info > img {
    height: 100%;
    object-fit: cover;
}
.form-info-text {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: calc(100% - 40px);
    transform: translateX(-50%);
}
.form-info-text-wrap {
    display: flex;
    gap: 15px;
    max-width: 470px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}
.form-info h3 {
    color: #fff;
    margin-bottom: 10px;
}
.form-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}
.form-info p a {
    color: rgba(255, 255, 255, 0.75);
}
.form-info p a:hover {
    color: #0070BA;
}
/*****related-service-sec****/
.related-service-sec {
    padding: 44px 0 20px;
}
.related-service-heading {
    margin-bottom: 50px;
}
.related-service-heading h6 {
    margin-bottom: 15px;
}
.related-diensten-slider {
    position: relative;
}
.related-service-sec .each-service {
    height: 482px;
}
.related-service-sec .common-arrow {
    background-color: #2F2F2F;
    border-color: #2F2F2F;
    height: 57px;
    width: 57px;
}
.related-service-sec .common-arrow img {
    filter: brightness(0) invert(1);
}
.related-service-sec .common-arrow:hover {
    background-color: #0070BA;
    border-color: #0070BA;
}
.related-service-sec .common-arrow:hover img {
    /* filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(2139%) hue-rotate(351deg) brightness(103%) contrast(97%); */
}
.related-service-sec .swiper-button-next {
    right: -28px;
}
.related-service-sec .swiper-button-prev {
    left: -28px;
}
.related-werkplaats-slider {
    position: relative;
}
.related-vacature-slider {
    position: relative;
}
/*=====================================contact pg start============================================*/
/***contact-form-sec***/
.contact-form-sec {
    padding: 20px 0;
}
/****mapp-sec****/
.map-wrap {
    height: 516px;
    border-radius: 10px;
}
.map-sec {
    padding-bottom: 19px;
}
/*=====================================bedankt pg start============================================*/
/****bedankt-banner-sec*****/
.bedankt-banner-sec .banner-content {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}
/*=====================================overons pg start============================================*/
/****member-sec****/
.member-sec {
    padding: 60px 0 50px;
}
.member-heading {
    margin-bottom: 44px;
}
.member-heading h6 {
    margin-bottom: 13px;
}
.each-member {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.each-member-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    z-index: 1;
}
.each-member::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-member-text h3 {
    color: #fff;
}
.each-member-text h6 {
    color: #fff;
}
.each-member:hover::after {
    opacity: 1;
}
.member-slider {
    position: relative;
}
.member-slider .common-arrow {
    background-color: #2F2F2F;
    border-color: #2F2F2F;
    height: 57px;
    width: 57px;
}
.member-slider .common-arrow img {
    filter: brightness(0) invert(1);
}
.member-slider .common-arrow:hover {
    background-color: #0070BA;
    border-color: #0070BA;
}
.member-slider .common-arrow:hover img {
    /* filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(2139%) hue-rotate(351deg) brightness(103%) contrast(97%); */
}
.member-slider .swiper-button-next {
    right: -28px;
}
.member-slider .swiper-button-prev {
    left: -28px;
}
.member-heading h6,
.member-heading h2 {
    color: #1E1E1E;
}
/*****choose-us-sec****/
.choose-us-wrap {
    border-radius: 10px;
    background-color: #1E1E1E;
    position: relative;
    padding: 80px 0;
}
.choose-us-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/why-us-blur.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}
.choose-us-wrap .container {
    position: relative;
    z-index: 1;
}
.choose-us-heading {
    margin-bottom: 50px;
}
.choose-us-heading p {
    color: #fff;
}
.choose-us-heading h6 {
    color: #fff;
    margin-bottom: 10px;
}
.choose-us-heading h2 {
    color: #fff;
}
.choose-us-para {
    max-width: 673px;
    width: 100%;
    margin-left: auto;
}
.choose-us-img {
    max-width: 727px;
    width: 100%;
    margin-left: auto;
}
.each-choose-us-img {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.each-choose-us-img img {
    height: 100%;
    object-fit: cover;
}
.choose-us-img .row {
    margin: 0 -12px;
}
.choose-us-img .col-5,
.choose-us-img .col-7 {
    padding: 0 12px;
}
.choose-us-img .col-5 .each-choose-us-img {
    height: 48%;
    margin-bottom: 25px;
}
.choose-us-img .col-5 .each-choose-us-img:last-child {
    margin-bottom: 0;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
	border-radius: 10px;
	background-color: #262626;
	padding: 36px 80px 36px 44px;
	margin-bottom: 17px;
}
.acc-block li::before {
    display: none;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block li h3 {
	position: relative;
	cursor: default;
	padding-right: 28px;
    color: #fff;
}
.acc-block li h3::after {
	position: absolute;
	height: 16px;
	width: 16px;
	background-image: url(../images/acc-down-arrow.svg);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
	top: 5px;
	right: -44px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.show_accordian h3::after {
	transform: rotate(180deg);
}
.acc-block p {
	margin-top: 16px;
	margin-bottom: 0;
	max-width: 614px;
	width: 100%;
    color: #fff;
}
/*=====================================aanbod pg start============================================*/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 136px 0 70px;
}
.aanbod-filter-sec h2 {
    text-align: center;
    margin-bottom: 40px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.filter-reset a {
	color: #2F2F2F;
	font-size: 1.4rem;
    font-family: 'LamaSans-Regular';
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #0070BA;
}
.filter-reset a:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(1846%) hue-rotate(207deg) brightness(104%) contrast(99%);
}
.select-style {
    width: 100%;
    height: 48px;
    color: #000;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 0 30px 0 18px;
    background: url(../images/filter-arrow.svg) #fff no-repeat 91% center / 10px;
    appearance: none;
    line-height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.select-style.show {
    border-radius: 5px 5px 0 0;
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
    background-image: url(../images/filter-arrow-white.svg);
}
.select-style:hover {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
    background-image: url(../images/filter-arrow-white.svg);
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'lama_sansmedium';
	background-color: #0F0F0F;
}
.filter-content {
    display: none;
    background-color:#fff;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #2F2F2F;
    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: #2F2F2F;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #2F2F2F;
    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 #2F2F2F;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #0070BA;
    border-color: #0070BA;
    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: #fff;
    border-radius: 5px;
    background-color: #0070BA;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    border: 1px solid #0070BA;
    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: #0070BA;
    color: #2F2F2F;
}
.auto-overview-tag:hover img {
    filter: brightness(100) invert(1);
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	width: 20%;
}
.hidden-filter .col-lg-3 h5 {
    display: none;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #2F2F2F;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 84px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    font-family: 'LamaSans-Medium';
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 8px;
    background-color: #0070BA;
    border-color: #0070BA;
    text-transform: capitalize;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn:hover {
    background-color: #2F2F2F;
    border-color: #2F2F2F;
    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: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.mobile-filter-close span img {
	width: 9px;
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #0070BA;
    border: 1px solid #0070BA;
    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 h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: #2F2F2F;
    border-color: #2F2F2F;
    color: #fff;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort h6 {
	margin-right: 10px;
    color: #2F2F2F;
    font-family: 'LamaSans-Medium';
    text-transform: none;
    letter-spacing: normal;
    display: none;
}
.filter-sort .aanbod-filter {
	margin-bottom: 0;
	width: 100%;
}
.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: #0070BA;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: rgba(0, 112, 186, 0.5);
    border-color: rgba(0, 112, 186, 0.5);
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #0070BA;
}
.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: #2F2F2F;
}
.aanbod-range-filter .slider-inputs input {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 8px;
    background-color: transparent;
    width: 100px;
    color: #2F2F2F;
    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;
}
.filter-sort {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
}
.filter-sort .each-filter {
    width: 208px;
}
.mob-filter-visible h6 {
    color: #2F2F2F;
}
.mob-filter-visible strong {
    font-weight: normal;
    color: #0070BA;
    text-transform: none;
}
.mob-filter-visible strong::before {
    display: none;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
    padding-bottom: 117px;
}
.aanbod-product-sec > .container > .row {
    margin: 0 -15px;
    row-gap: 20px;
}
.aanbod-product-sec .col-xl-4 {
    padding: 0 15px;
}
.aanbod-product-sec .each-product-info td {
    font-size: 2.4rem;
    line-height: 24px;
    letter-spacing: 0.24px;
    padding-right: 10px;
    margin-right: 10px;
}
/*=====================================verkocht pg start============================================*/
/******verkocht-product-sec******/
.verkocht-product-sec {
    padding: 160px 0 32px;
}
.verkocht-product-sec .row {
    row-gap: 33px;
    margin: 0 -5px; 
}
.verkocht-product-sec .col-xl-4 {
    padding: 0 5px;
}
.verkocht-product-sec .each-product-text {
    margin-top: 14px;
}
.verkocht-product-sec .each-product-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.verkocht-product-sec .verkocht-tag {
    position: absolute;
    padding: 19px 25px;
    width: 100%;
    bottom: 0;
    right: 0;
    color: #fff;
    font-family: 'Teko-Regular';
    font-size: 3rem;
    line-height: 30px;
    letter-spacing: 0.3px;
    text-align: right;
}
/*=====================================aanbod-dtl pg start============================================*/
/****dtl-info-sec****/
.dtl-info-sec{ 
    padding: 170px 0 40px;
}
.dtl-info-model p {
    font-family: 'LamaSans-SemiBold';
    margin-bottom: 0;
    line-height: normal;
    letter-spacing: 1.6px;
    color: rgba(47, 47, 47, 0.50);
}
.dtl-info-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.dtl-info-share span {
    height: 41px;
    width: 41px;
    border: 1px solid rgba(30, 30, 30, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.dtl-info-price {
    text-align: right;
}
.dtl-info-price h3 {
    color: #0070BA;
    margin-bottom: 5px;
}
.print-item {
    height: 41px;
    width: 41px;
    border: 1px solid rgba(30, 30, 30, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.print-item a.nav-link {
    padding: 0;
}
.print-item a.nav-link img {
    width: 15px;
}
.share-info {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.btn_area_planning_widget .blue-btn {
    max-width: 210px !important;
}
.btn_area_planning_widget .blue-btn img, 
.btn_area_planning_widget .form-1_heading img {
    width: 20px !important;
    height: 20px !important;
}
.btn_area_planning_widget .arrow img {
    width: 9px !important;
    height: 9px !important;
    margin-left: 5px;
    margin-top: -5px !important;
}
.btn_area_planning_widget .blue-btn {
    display: flex !important;
}
/****dtl-gallery-sec****/
.dtl-gallery-wrap {
    padding: 30px 0;
    border-top: 1px solid rgba(30, 30, 30, 0.40);
    border-bottom: 1px solid rgba(30, 30, 30, 0.40);
}
.dtl-gallery-slider {
    position: relative;
}
.dtl-gallery-pair {
    height: calc(100% - 1px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
.each-dtl-gallery {
    height: 50%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.each-dtl-gallery > img {
    height: 100%;
    object-fit: cover;
}
.more-dtl-gallery {
    position: absolute;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
}
.more-dtl-gallery h3 {
    margin-top: 10px;
    color: #fff;
}
.dtl-gallery-wrap .col-lg-3,
.dtl-gallery-wrap .col-lg-6 {
    padding: 0 5px;
}
.dtl-gallery-wrap .row {
    margin: 0 -5px;
}
.dtl-gallery-slider {
    border-radius: 10px;
    overflow: hidden;
}
.each-dtl-gallery-slide {
    border-radius: 10px;
    overflow: hidden;
}
.each-dtl-gallery-slide img {
    height: 100%;
    object-fit: cover;
}
.dtl-gallery-slider .common-arrow {
    bottom: 40px;
    top: auto;
    margin: 0;
    background-color: #2F2F2F;
    border-color: #2F2F2F;
}
.dtl-gallery-slider .common-arrow img {
    filter: brightness(0) invert(1);
}
.dtl-gallery-slider .common-arrow:hover {
    background-color: #0070BA;
    border-color: #0070BA;
}
.dtl-gallery-slider .swiper-button-prev {
    left: 40px;
}
.dtl-gallery-slider .swiper-button-next {
    right: 40px;
}
/*****dtl-info-sec*******/
.dtl-spec-wrap {
    border-bottom: 1px solid rgba(30, 30, 30, 0.40);
    padding: 40px 0;
}
.dtl-spec-table table,
.dtl-spec-table tbody {
    width: 100%;
}
.dtl-spec-table tr {
    display: flex;
    row-gap: 10px;
    column-gap: 40px;
    flex-wrap: wrap;
}
.dtl-spec-table td {
    color: #2F2F2F;
    font-family: 'Teko-Regular';
    font-size: 3rem;
    line-height: 30px; 
    letter-spacing: 0.3px;
    display: block;
}
.dtl-spec-table td strong {
    font-size: 1.4rem;
    font-family: 'LamaSans-Regular';
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}
.dtl-info-right {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 633px;
    width: 100%;
    margin-left: auto;
    align-items: center;
}
.dtl-info-btn .common-btn {
    background-color: #0070BA;
    border-color: #0070BA;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 10px;
}
.dtl-info-btn .common-btn:hover {
    background-color: transparent;
    border-color: #0070BA;
    color: #2F2F2F;
}
.dtl-info-btn .common-btn:last-child {
    margin: 0;
}
.dtl-info-reach p {
    margin-bottom: 6px;
}
.dtl-info-reach p img {
    margin-right: 16px;
}
.dtl-info-btn .common-btn.aanbod-wp {
    border-radius: 5px;
    background: #62D358;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    border-color: #62D358;
}
.dtl-info-btn .common-btn.aanbod-wp:hover {
    background-color: #2F2F2F;
    border-color: #2F2F2F;
    color: #fff;
}
.dtl-info-btn .common-btn.aanbod-wp strong {
    font-weight: normal;
}
.dtl-info-btn .common-btn.aanbod-wp img {
    width: 26px;
    margin-right: 12px;
}
.related-product-sec .each-product-info td::after {
    right: -3%;
}
/****aanbod-dtl-tab-sec****/
.dtl-tab-sec .tab-btn .tabs {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 12px;
    margin-bottom: 63px;
    padding-left: 0;
}
.tab-btn .tabs li.active {
    background-color: #0070BA;
    opacity: 1;
    color: #fff;
}
.tab-btn ul.tabs li {
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    color: #2F2F2F;
    text-transform: none;
	font-size: 1.6rem;
    font-family: 'LamaSans-Medium';
	line-height: 24px;
	padding-right: 16px;
	position: relative;
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: 12px 70px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab-btn ul.tabs li:hover {
    background-color: #0070BA;
    color: #fff;
}
.tabs li::before {
    display: none;
}
.tab-btn ul.tabs li strong {
    font-weight: normal;
    position: relative;
    padding-right: 15px;
}
.tab-btn ul.tabs li strong::after {
    content: "";
    top: 5px;
    background-color: transparent;
    width: 9px;
    height: 9px;
    transition: all 0.5s;
    position: absolute;
    right: 0;
    background-size: 6px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/tab-arrow.svg);
}
.tab-btn .tabs li.active strong::after {
    transform: rotate(-90deg);
    filter: brightness(0) invert(1);
}
.tab-btn ul.tabs li:hover strong::after {
    filter: brightness(0) invert(1);
}
.tab_content {
    display: none;
}
.tab_drawer_heading{
    display: none;
}
.dtl-tab-sec {
    padding: 88px 0 75px;
}
.tab_drawer_heading{
	display: none;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
    margin-bottom: 0;
}
.kenmerken-tab li {
    width: 20%;
	padding: 40px 15px;
	position: relative;
    font-family: 'LamaSans-Regular';
	color: rgba(47, 47, 47, 0.70);
    line-height: 24px;
    letter-spacing: 0.32px;
    font-size: 1.6rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    text-align: center;
}
.kenmerken-tab li strong {
    font-weight: normal;
    color: #2F2F2F;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmerken-tab li::before {
	display: none;
}
.kenmerken-tab li:nth-child(odd) {
    background-color: #F5F5F5;
}
.kenmerken-tab {
	overflow: hidden;
    margin-bottom: 44px;
}
.bullet-panel h3 {
    border-bottom: 1.5px solid #2F2F2F;
    padding-bottom: 10px;
	margin-bottom: 10px;
    color: #2F2F2F;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    position: relative;
	margin-bottom: 10px;
    font-family: 'LamaSans-Regular';
    display: flex;
}
.dtl-tab-sec .bullet-panel ul li::before {
    top: 5px;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0070BA;;
    font-size: 1.6rem;
    line-height: 24px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #0070BA;;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.left-bg-block h6 {
	font-size: 1.6rem;
	text-transform: none;
    color: #fff;
}
.each-onderhoud-block h4 {
    color: #2F2F2F;
	text-transform: none;
    font-size: 1.8rem;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
	text-transform: none;
    color: #2F2F2F;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
/*****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(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
	border-radius: 20px;
    background-color: #fff;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
	border: 1px solid #0070BA;
	box-shadow: 0px 0px 25px 0px rgba(0, 112, 186, 0.3);
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 112, 186, 0.3);
	overflow: hidden;
}
.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 #0070BA;
}
.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 {
    color: #2F2F2F;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.kenmerken-popup-model h6 {
    color: #2F2F2F;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmarken-popup-content h4 {
	margin-bottom: 5px;
    font-size: 2.5rem;
    font-family: 'Teko-Regular';
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.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;
    font-family: 'LamaSans-Medium';
    color: #2F2F2F;
    font-size: 1.6rem;
    line-height: 30px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.kenmarken-popup-content li::before {
    display: none;
}
/*******related-product-sec*******/
.related-product-sec {
    padding: 70px 0 50px;
}
.related-product-sec .each-product-info td {
    font-size: 2.4rem;
    line-height: 24px;
    letter-spacing: 0.24px;
    padding-right: 12px;
    margin-right: 12px;
}
/*****************************STYLE FOR DEVELOPERS********************************/

/*******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;
}
.bullet-panel h3 {
    margin-bottom: 30px;
}
.cursor{
    cursor:pointer;
}
.aanbod-loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#0070BA calc(1*100%/6),#ffffff 0 calc(3*100%/6),#0070BA 0),
              linear-gradient(#0070BA calc(2*100%/6),#ffffff 0 calc(4*100%/6),#0070BA 0),
              linear-gradient(#0070BA calc(3*100%/6),#ffffff 0 calc(5*100%/6),#0070BA 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: #0070BA;
  }


.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;
    left: 16px;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	background-color: red;
	color: white;
	text-align: center;
	font-size: small;
	animation: shake 0.5s;
	animation-iteration-count: 1;
}

@media screen and (max-width: 600px) {
	.popuptext {
		right: 60px !important;
	}
}
@media (max-width : 767.98px){
	.fixed-whatsapp-icon{
		display: none;
	}
}
.each-service:hover .each-service-arrow .common-arrow-part{
    background-color: #FAFAFA;
}
.privacy_section h2{
    padding-top: 85px;
}

.each-price-table li::after {
    display: none;
}
.range-sec .range-area .fill{
    background-color: #121212;
}
.iframe-footer {
    border: 0;
    width: 100%;
    height: 50px;
    display: block;
    max-width: calc(100% - 34px);
    margin: 0 auto 17px;
    border-radius: 10px;
}
/* .share-social-media-button{
    padding: 6px 9px;
} */
/* @media(max-width: 519px) and (min-width: 416px){
	.calculator{
	    height: 1670px !important;
    }
}
@media(max-width: 415px){
	.calculator{
        height: 1826px !important;
    }
}
@media(max-width: 990px) and (min-width: 768px){
	.calsty {
        height: 789px;
    }
}
@media(max-width: 767px) and (min-width: 519px){
	.calsty {
	height: 689px;
}
}
@media(max-width: 518px){
	.calsty {
	height: 810px;
}
} */
/* .col-lg-4:nth-child(1) .each-diens-dtl-btm{
    flex-direction: column-reverse;
} */

/* .calsty{
    border: 0;
    width: 100%;
    height: 690px;
    background: transparent;
} */
.share-social-media-button .a2a_dd svg {
    margin-right: 0 !important;
}





/* ============================================ NEW-CSS ================================================= */
/* ****HOME**** */
.product-merk{
    pointer-events: none;
    position: absolute;
    top: -11%;
    right: 0;
    z-index: 1;
}
.banner-sec{
    position: relative;
    z-index: 2;
}
.about-merk{
    pointer-events: none;
    position: absolute;
    top: -9%;
    right: 0;
    z-index: 1;
    width: 50%;
}
.review-merk{
    pointer-events: none;
    position: absolute;
    bottom: -31%;
    left: 0;
    z-index: -1;
    width: 16%;
    left: 0;
}
.review-sec{
    position: relative;
}
.each-gallery-img img{
    border-radius: 10px;
}
/* ******footer***** */
.footer-logo{
    display: flex;
    column-gap: 75px;
    align-items: center;
}
.footer-bovag-top img{
    width: 102px;
}
.footer-bovag-top{
    position: relative;
}
.footer-bovag-top::after{
    position: absolute;
    top: 6px;
    left: -40px;
    width: 1px;
    height: 28px;
    background-color: #C6B2A8;
    content: "";
}
.footer-partner.mobile{
    display: none;
}
.footer-info{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    max-width: 970px;
    width: 100%;
    margin-left: auto;
}
.footer-partner ul {
    display: flex;
    column-gap: 22px;
    align-items: center;
    margin-bottom: 0;
}
.footer-partner li img{
    width: 126px;
}
.footer-partner li:first-child img{
    width: 49px;
}
.footer-partner li::before{
    display: none;
}
/* ****aanbod-list***** */
.aanbod-filter-sec{
    position: relative;
    overflow-x: clip;
}
.aanbod-filter-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 13%;
    left: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.99) 100%);
    pointer-events: none;
    z-index: -1;
    height: 957px;
}
.aanbod-filter-sec .sec-pattern {
    position: absolute;
    top: 13%;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: -1;
    height: 957px;
}
.filter-main > .row {
    align-items: center;
}
/* *******diens-dtl****** */
.service-dtl-info-sec td::after{
    content: "";
    height: 100%;
    width: 516px;
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background-image: url(../images/service-dtl-info-merk.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-dtl-info-sec td:hover::after {
    opacity: 1;
}
.service-dtl-text{
    max-width: 708px;
    margin-left: 135px;
}
.service-dtl-text h3{
    padding-bottom: 9px;
}
.service-dtl-text p{
    margin-bottom: 15px;
}
.service-dtl-mid-img{
    height: 100%;
}
.service-dtl-mid-img img{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}
.service-dtl-mid-sec{
    padding-bottom: 90px;
}
.service-dtl-text p a:hover{
    text-decoration: underline;
    color: #0070BA;
}
.werkplaats-dtl-mid-sec .service-dtl-text{
    max-width: 693px;
    margin-left: 170px;
}
.werkplaats-dtl-iframe-sec img{
    border-radius: 10px;
}
.werkplaats-dtl-iframe-sec{
    padding-bottom: 116px;
}
.werkplaats-form-section iframe {
    width: 100%;
    /* height: 800px; */
    height: 500px;
    border: 0;
}
.werkplaats-form-section .form-wrap {
    background-color: #fff;
}
.werkplaats-form-section .form-wrap::after {
    display: none;
}
.service-dtl-desc-text strong {
    font-weight: normal;
    font-family: 'LamaSans-SemiBold';
}
.filter-sort .form-check-input {
    display: none;
}
.btn_area_planning_widget .blue-btn {
    font-size: 1.4rem !important;
    height: 40px;
}
.btn_area_planning_widget {
    top: 32% !important;
}

.calculator-tab iframe {
    width: 100%;
    height: 1500px;
}
.member-sec .each-member-img{
    height: 428px;
}
.member-sec .each-member-img img{
    height: 100%;
    object-fit: cover;
}