<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
    color: #101824;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
	background-color: #F6F8FA;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
.add_morgan_footer_margin{
	height: 45px !important;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
/*****header-area*****/
.header-area {
	padding: 30px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-area.header-active {
	background-color: #C2885F;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
}
.header-social ul {
	display: flex;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.header-social a {
	border-radius: 5px;
	border: 1px solid #F6F8FA;
	background-color: transparent;
	height: 31px;
	width: 31px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-social a img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-social a:hover {
	background-color: #C2885F;
	border-color: #C2885F;
}

.header-active .header-social a:hover {
	background-color: #F6F8FA;
	border-color: #F6F8FA;
}
.header-active .header-social a:hover img {
	filter: brightness(0);
}
.header-nav ul {
	display: flex;
	column-gap: 57px;
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: end;
	align-items: center;
}
.header-nav li {
	color: #F6F8FA;
    font-family: 'Montserrat-Medium';
	font-size: 1.6rem;
	line-height: normal;
}
.header-nav li a {
	color: #F6F8FA;
	position: relative;
	padding-bottom: 3px;
}
.header-nav li a::after {
	content: "";
	height: 2px;
	width: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: 0;
	background-color: #F6F8FA;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.header-nav li a:hover::after,
.header-nav li a.this-pg::after {
	width: 100%;
}
.header-logo img {
	width: 225px;
}
.menu-bar {
    position: relative;
    max-width: 25px;
    width: 100%;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	z-index: 99;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #F6F8FA;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 25px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar.menu-bar-active  div {
    transform: scale(0);
}
.menu-bar.menu-bar-active:before {
    transform: translateY(6px) rotate(135deg);
	background-color: #101824 !important;
}
.menu-bar.menu-bar-active:after {
    transform: translateY(-8px) rotate(-135deg);
	background-color: #101824 !important;
}
/****mega-menu***/
.mega-menu {
    height: 100vh;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-bg {
    background-color: rgba(16, 24, 36, 0.80);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}
.mega-menu-wrap {
    background-color: #F6F8FA;
    max-width: 394px;
    width: 100%;
	margin-left: auto;
	margin-right: -20px;
	border-radius: 20px;
	overflow: hidden;
    position: relative;
    z-index: 1;
}
.mega-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mega-menu-nav li {
	color: #101824;
    font-family: 'LamaSans-ExtraBoldCondensed';
	font-size: 2.8rem;
	line-height: normal;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 20px 80px 10px 54px;
	border-bottom: 1px solid #E9E9E9;
	-webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
	-o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.mega-menu-nav li:last-child {
    border: 0;
}
.mega-menu-nav li.mega-nav-active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.mega-menu-nav {
    overflow-y: auto;
    height: 480px;
}
.mega-menu-nav::-webkit-scrollbar {
	background-color: rgba(16, 24, 36, 0.3);
	width: 10px;
	border-radius: 20px;
}
.mega-menu-nav::-webkit-scrollbar-thumb {
	background-color: rgba(16, 24, 36, 0.5);
	border-radius: 20px;
}
.mega-menu-nav li a {
    color: #101824;
    border: 1px solid transparent;
    display: block;
}
.mega-menu-nav li a:hover,
.mega-menu-nav li a.this-mega-pg {
    color: #C2885F;
}
.mega-menu.mega-menu-active {
    opacity: 1;
    pointer-events: all;
}
/********banner-sec*********/
.banner-sec {
	position: relative;
}
.banner-content {
	position: absolute;
	bottom: 104px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-content h1 {
    margin-bottom: 30px;
}
.banner-video,.each-banner  {
	height: 850px;
}
.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-sec .common-btn {
	margin-right: 15px;
}
.banner-sec .white-border-btn::after {
	background-image: url(../images/user-white.svg);
}
.banner-sec .white-border-btn::after {
    height: 13px;
    width: 11px;
    background-size: 10px;
}
/******product-sec*****/
.product-sec {
	background-color: #101824;
	position: relative;
}
.product-wrap {
	background-color: #F6F8FA;
	border-radius: 20px;
	padding: 127px 0;
	overflow: hidden;
}
.product-heading-left {
	max-width: 626px;
	width: 100%;
}
.product-heading {
	margin-bottom: 70px;
}
.product-heading p {
	margin-bottom: 0;
}
.each-product {
	border-radius: 20px 20px 10px 10px;
	overflow: hidden;
}
.each-product-text {
	position: relative;
}
.each-product-info {
	padding: 30px 30px 25px;
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, #FFF 86.41%);
}
.each-product-info::after {
	content: '';
	height: 100%;
	width: 100%;
	background-size: cover;
	background-image: url(../images/each-product-line.svg);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.each-product-info h3 {
	font-size: 2rem;
	line-height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-product-info h6 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 24px;
}
.each-product-info td {
	color: rgba(16, 24, 36, 0.50);
    font-family: 'LamaSans-SemiBold';
	font-size: 1.4rem;
	vertical-align: middle;
	padding-right: 30px;
}
.each-product-info td:last-child {
	padding-right: 0;
}
.each-product-info td img {
	margin-right: 7px;
}
.each-product-price {
	padding: 17px 50px 17px 30px;
	position: relative;
	background-color: #E5E7EF;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-product-price::after {
	content: '';
	height: 12px;
	width: 12px;
	background-size: 12px;
	background-image: url(../images/product-arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-product-price h4 {
	color: #101824;
	line-height: normal;
	letter-spacing: 0.9px;
	text-transform: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-product-price h4 strong {
	color: rgba(16, 24, 36, 0.70);
	font-size: 1.6rem;
	font-weight: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-product-price h4 em {
	font-family: 'LamaSans-SemiBold';
	font-style: normal;
}
.each-product:hover .each-product-price {
	background-color: #C2885F;
}
.each-product:hover .each-product-price h4 {
	color: #F6F8FA;
}
.each-product:hover .each-product-price h4 strong {
	color: rgba(246, 248, 250, 0.70);
}
.each-product:hover .each-product-price::after {
	filter: invert(1) brightness(10);
}
.common-scrollbar.swiper-scrollbar {
    position: relative;
    width: 100%;
    bottom: 0;
	border-radius: 24px;
	background-color: rgba(16, 24, 36, 0.20);
    height: 2px;
    left: 0;
}
.common-scrollbar.swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #101824;
    cursor: grab;
}
.product-slider .common-scrollbar {
	margin-top: 60px;
}
.product-mark {
	position: absolute;
	width: 67%;
	right: 0;
	top: -7.5%;
	z-index: 1;
}
/******service-sec*******/
.service-sec {
	padding: 250px 0;
	background-color: #101824;
	position: relative;
	overflow: hidden;
}
.service-mark {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 44%;
	pointer-events: none;
}
.service-mark img {
	height: 100%;
	object-fit: cover;
}
.service-mark::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(328deg, #101824 -76.48%, rgba(16, 24, 36, 0.85) 99.18%);
}
.service-heading {
	position: relative;
	z-index: 1;
}
.service-heading img {
	width: 70px;
}
.service-heading h2 {
	margin: 45px 0 20px;
	color: #F6F8FA;
}
.service-heading p {
	margin-bottom: 56px;
	color: #F6F8FA;
}
.service-heading .common-btn::after {
	background-image: url(../images/user-white.svg);
}
.service-block {
	position: absolute;
	right: 20px;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 55%;
}
.service-scroll {
	position: relative;
}
.scroll-container {
	position: relative;
	animation: scroll-up 25s linear infinite;
}
.left-service .scroll-container {
	animation: scroll-up 25s linear infinite;
}
.right-service .scroll-container {
	animation: scroll-down 25s linear infinite;
}
@keyframes scroll-up {
	0% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(-50%); 
	}
}
@keyframes scroll-down {
	0% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0%);
	}
}
.left-service:hover .scroll-container,
.right-service:hover .scroll-container {
	animation-play-state: paused;
}
.service-block::after,
.service-block::before {
	content: '';
    height: 15%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
	background: linear-gradient(180deg, rgba(16, 24, 36, 1) 0%, rgba(16, 24, 36, 0.00) 100%);
}
.service-block::before {
	top: auto;
	bottom: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(16, 24, 36, 1) 0%, rgba(16, 24, 36, 0.00) 100%);
}
.service-block .col-lg-6 {
	padding: 0 10px;
}
.service-block .row {
	margin: 0 -10px;
}
.each-service {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 520px;
	margin-bottom: 20px;
}
.each-service::after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(16, 24, 36, 0.7);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-service:hover::after {
	background-color: rgba(16, 24, 36, 0.3);
}
.each-service-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 18px 40px;
	z-index: 1;
}
.each-service h3 {
	color: #F6F8FA;
}
.each-service-img {
	height: 100%;
}
.each-service-img img {
	height: 100%;
	object-fit: cover;
}
.service-mobile .common-scrollbar.swiper-scrollbar {
	background-color: rgba(255, 255, 255, 0.3);
}
.service-mobile .common-scrollbar.swiper-scrollbar .swiper-scrollbar-drag {
	background-color: rgba(255, 255, 255, 0.8);
}
/****marque-sec*****/
.marque-sec {
	background-color: #C2885F;
	padding: 28px 0;
}
.marque-wrap{
	white-space: nowrap;
}
.marque-wrap:hover .marque-txt{
	animation-play-state: paused;
}
.marque-txt{
	display: flex;
	animation: 18s slide infinite linear;
}
.marque-txt ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.marque-txt li {
	display: inline-block;
	color: #fff;
	color: #F6F8FA;
    font-family: 'LamaSans-SemiBold';
	font-size: 1.6rem;
	line-height: 24px;
	letter-spacing: 0.32px;
	margin-left: 64px;
	padding-left: 108px;
	position: relative;
}
.marque-txt li::after {
	content: "";
	position: absolute;
    left: 0;
    top: 3px;
    height: 20px;
    width: 40px;
    background-image: url(../images/marque-logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px;
}
@keyframes slide{
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(-100%);
	}	
}
/****review-sec***/
.review-sec {
	padding: 135px 0;
}
/***about-sec***/
.about-sec {
	padding: 135px 0 70px;
	position: relative;
	background: linear-gradient(180deg, rgba(246, 248, 250, 0.60) 0%, #F6F8FA 86.41%);
}
.about-text {
	padding-top: 40px;
	padding-left: 20px;
}
.about-text h2 {
	margin-bottom: 15px;
}
.about-text p strong {
	font-family: 'LamaSans-SemiBold';
	font-weight: normal;
}
.about-text p {
	margin-bottom: 40px;
}
.about-text h3 {
	color: #C2885F;
	margin-bottom: 15px;
}
.about-text .common-btn::after {
	background-image: url(../images/user-black.svg);
}
.about-text .common-btn:hover {
	background-color: #101824;
	border-color: #101824;
}
.about-text .common-btn:hover::after {
	filter: invert(1) brightness(10);
}
.about-img {
	max-width: 800px;
	width: 100%;
	padding-right: 50px;
	position: relative;
}
.about-img img {
	border-radius: 20px;
}
.about-img-big {
	max-width: 78%;
	width: 100%;
}
.about-img-small {
	max-width: 58%;
	width: 100%;
	position: absolute;
	right: 50px;
	bottom: -70px;
}
.about-line {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.about-line img {
	height: 100%;
	object-fit: cover;
}
/****footer-area****/
.footer-area {
	overflow-x: clip;
}
.footer-wrap {
	padding: 100px 0 50px;
	background-color: #101824;
	border-radius: 20px 20px 0 0;
}
.footer-logo ul {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-logo li {
	position: relative;
	padding: 0 24px;
}
.footer-logo li::after {
	content: "";
	height: 100%;
	width: 1px;
	top: 0;
	left: 0;
	position: absolute;
	background: linear-gradient(180deg, rgba(246, 248, 250, 0.00) 0%,rgba(246, 248, 250, 0.50) 47.5%,rgba(246, 248, 250, 0.00) 100%);
}
.footer-logo li:first-child {
	padding-left: 0;
}
.footer-logo li:first-child::after {
	display: none;
}
.footer-logo li:last-child {
	padding-right: 0;
}
.footer-logo1 {
	width: 201px;
}
.footer-logo2 {
	width: 72px;
}
.footer-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 845px;
	width: 100%;
	column-gap: 20px;
	margin-left: auto;
}
.each-footer-info p {
	color: #F6F8FA;
	margin-bottom: 0;
}
.each-footer-info p a {
	color: #F6F8FA;
}
.each-footer-info p a:hover {
	color: #C2885F;
}
.each-footer-info td {
	color: #F6F8FA;
}
.each-footer-info h4 {
	margin-bottom: 10px;
}
.each-footer-info table {
	margin-bottom: 10px;
}
.each-footer-info td:nth-child(odd) {
	padding-right: 15px;
}
.footer-time {
	width: 306px;
}
.footer-social {
	margin-top: 40px;
}
.footer-social ul {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 11px;
}
.footer-social li a {
	border-radius: 5px;
    border: 1px solid #F6F8FA;
    background-color: transparent;
    height: 31px;
    width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
	opacity: 0.5;
}
.footer-social li a:hover {
	opacity: 1;
}
.footer-btm {
	position: relative;
	padding-top: 45px;
	margin-top: 65px;
}
.footer-btm::after {
	content: '';
	height: 1px;
	width:100vw;
	margin-left:-50vw;
	left:50%;
	top: 0;
	background-color: #282F3A;
	position: absolute;
}
.footer-partner ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.footer-partner li {
	padding-right: 20px;
	margin-right: 20px;
	color: #F6F8FA;
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	line-height: 24px;
	letter-spacing: 0.28px;
	border-right: 1px solid #fff;
}
.footer-partner li:last-child {
	padding: 0;
	margin: 0;
	border: 0;
}
.footer-partner li img {
	margin-right: 10px;
}
.footer-privacy {
	max-width: 510px;
	margin-left: auto;
	width: 100%;
	padding-left: 30px;
}
.footer-privacy ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-privacy li {
	color: #F6F8FA;
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	line-height: 24px;
	letter-spacing: 0.28px;
}
.footer-privacy li a {
	color: #F6F8FA;
}
.footer-privacy li a:hover {
	color: #C2885F;
}
/*=====================================================================*/
/***inner-banner-sec***/
.inner-banner-sec {
	position: relative;
}
.inner-banner-text {
	position: absolute;
	top: 57%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}
/****diensten-list-sec****/
.diensten-list-sec {
	position: relative;
	background-color: #101824;
}
.diensten-list-wrap {
	padding: 150px 0 118px;
	border-radius: 20px 20px 0 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: #F6F8FA;
}
.diensten-list-wrap::after {
	content: "";
	height: 26%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/din-list-sec-line.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: -1;
}
.diensten-list-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.diensten-list-heading {
	margin-bottom: 70px;
}
.diensten-list-heading p {
	max-width: 618px;
	margin-left: auto;
	width: 100%;
}
.each-diensten-list {
	border-radius: 20px;
	overflow: hidden;
	background-color: #fff;
	padding: 24px 24px 24px 80px;
	margin-bottom: 30px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-diensten-list:last-child {
	margin-bottom: 0;
}
.each-diensten-list-img {
	overflow: hidden;
	border-radius: 10px;
	max-width: 680px;
	width: 100%;
	margin-left: auto;
}
.each-diensten-list-img img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-diensten-list-text h3 {
	margin-bottom: 25px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-diensten-list-text p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	margin-bottom: 70px;
}
.each-diensten-list-text {
	max-width: 500px;
	width: 100%;
	padding-right: 40px;
}
.each-diensten-list-text .common-btn::after {
	background-image: url(../images/list-btn-arrow.svg);
}
.each-diensten-list-text .common-btn:hover::after {
	filter: brightness(0) invert(1);
}
.each-diensten-list:hover {
	background-color: #101824;
}
.each-diensten-list:hover h3 {
	color: #C2885F;
}
.each-diensten-list:hover p {
	color: #fff;
}
.each-diensten-list:hover .common-btn {
	background-color: #C2885F;
	border-color: #C2885F;
	color: #fff;
}
.each-diensten-list:hover .common-btn::after {
	filter: brightness(0) invert(1);
}
.each-diensten-list:hover img {
	transform: scale(1.1);
}
/* ============= aanbod_dtl ======= */
.inner_main{
	margin-top: 95px;
}
.inner_header .header-logo img {
	filter: invert(1) brightness(0);
}
.inner_header .header-social a img{
	filter: invert(1) brightness(0);
}
.inner_header .header-social a{
	border-color: #101824;
}
.inner_header .header-nav li a{
	color: #101824;
}
.inner_header .header-nav li a::after{
	background-color:#101824;
}
.inner_header.header-active .menu-bar div,
.inner_header.header-active .menu-bar::after,
.inner_header.header-active .menu-bar::before{
	background-color:#F6F8FA;
}
.inner_header .menu-bar-active div,
.inner_header .menu-bar-active::after,
.inner_header .menu-bar-active::before,
.inner_header .menu-bar div, 
.inner_header .menu-bar::after, 
.inner_header .menu-bar::before{
	background-color: #101824;
}
.inner_header.header-active .header-nav li a{
	color: #F6F8FA;
}
.inner_header.header-active .header-nav li a::after{
	background-color: #F6F8FA;
}
.inner_header.header-active .header-social a{
	border-color: #F6F8FA;
}
.inner_header.header-active .header-logo img,
.inner_header.header-active .header-social a img {
    filter: invert(0) brightness(1);
}
.inner_header.header-active .header-social a:hover{
	background-color: #F6F8FA;
	border-color: #F6F8FA;
}
.inner_header.header-active .header-social a img:hover{
	filter: invert(1) brightness(0);
}
.aanbod_dtl_banner{
	margin-bottom: 20px;
}
.each-big-car {
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}
.each-big-car img {
	height: 100%;
	object-fit: cover;
}
.big-car-slider .swiper {
	height: 100%;
}
.big-car-slider .swiper-slide {
	height: auto;
}
.aanbod_dtl_banner .col-lg-7 {
	width: 55%;
}
.aanbod_dtl_banner .col-lg-5 {
	width: 45%;
}
.small_car{
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
}
.each_samall_car{
	width: calc(50% - 10px);
	height: calc(50% - 10px);
	position: relative;
}
.car_overlay{
	position: absolute;
	left: 50%;
	top: 50%;
	height: calc(100% - 26px);
	width: calc(100% - 32px);
	background: rgba(255, 255, 255, 0.60);
	transform: translate(-50% ,-50%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;background-image: url(../images/plush_svg.svg);
	background-position: center 35%;
	background-size: 20px;
	background-repeat: no-repeat;
	font-family: 'LamaSans-SemiBold';
	line-height: 28px;
}
.each_samall_car img{
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.aanbod_dtl_table table{
	/* width: 100%; */
	margin: 40px 0;
}
.aanbod_dtl_table  td {
	color: rgba(16, 24, 36, 0.50);
	letter-spacing: 0.16px;
	line-height:  22.48px ;
	padding:  0 40px;
	position: relative;
}
.aanbod_dtl_table  td:first-child {
	padding-left: 0;
}
.aanbod_dtl_table  td:last-child {
	padding-right: 0;
}
.aanbod_dtl_table  td:last-child::after {
	display: none;
}
.aanbod_dtl_table  td::after {
	content: "";
	height: 100%;
	width: 1px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	background-color: rgba(16, 24, 36, 0.20);
}
.aanbod_dtl_table span{
	display: flex;
	column-gap: 10px;
	font-family: 'LamaSans-ExtraBoldCondensed';
	color: #101824;
	line-height: 28px;
	margin-top: 8px;
	font-size: 2rem;
	letter-spacing: 0.2px;
}
.aanbod_dtl_table span img {
	margin-top: -8px;
}
.aanbod_dtl_contct_lft{
	display: flex;
	align-items: center;
	column-gap: 23px;
}
.aanbod_dtl_contct_lft &gt; *{
	flex-shrink: 0;
}
.aanbod_dtl_contct .align-items-center {
	align-items: start !important;
}
.man_img {
	height: 71px;
	width: 71px;
	border-radius: 50%;
	overflow: hidden;
}
.man_img img {
	height: 100%;
	object-fit: cover;
}
.contact_info h4{
	color: #101824;
}
.contact_info a{
	font-size: 1.4rem;
	color: rgba(16, 24, 36, 0.70);
	margin: 30px 0;
}
.contact_num a span{
	display: flex;
}
.contact_info a:hover,
.contact_num a:hover{
	text-decoration: underline;
	text-underline-offset: 2px;
	color: #101824;
}
.contact_num span img{
	width: 16px;
	filter:invert(1) brightness(0);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	margin-right: 10px;
}
.aanbod_dtl_contct{
	padding: 18px 20px;
	background: #F6F8FA;
	border-radius: 8px 8px 0 0;
	border: 6px solid #FFF;
}
.contact_slider_btm{
	padding: 19px ;
	background-color: #F6F8FA;
	border-radius: 0 0 8px 8px;
	border: 6px solid #FFF;
}
.contact_slider_btm ul{
	list-style: none;
	display: flex;
	column-gap: 10px;
	padding-left: 0;
	margin-bottom: 0;
}
.contact_slider_btm li{
	width: 50%;
}
.contact_slider_btm li button {
    display: inline-block;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	outline: none;
	border-radius: 5px;
	font-size: 1.6rem;
    line-height: 24px;
	padding: 10px 18px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	/* border: 1px solid transparent; */
	background-color: transparent;
	color: #101824;
	border-color: #101824;
}
.contact_slider_btm li button:hover {
	background-color: #C2885F;
    color: #F6F8FA;
    border-color:  #C2885F;
	box-shadow: none;
}
/* .form_btn{
	background-color: #C2885F;
    color: #F6F8FA;
    border-color:  #C2885F;
}
.form_btn_2:hover{
	background-color: #C2885F;
    color: #F6F8FA;
    border-color:  #C2885F;
}
.form_btn:hover{
	background-color: transparent;
	background-color: transparent;
	color: #101824;
} */
/*****dtl-tab-sec*****/
.dtl-tab-sec {
	padding-top: 98px;
}
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 2rem;
	margin-bottom: 7rem;
    border: 0;
	border-bottom: 3px solid rgba(246, 248, 250, 0.10);
	padding-bottom: 25px;
	width: max-content;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link {
	border: 0;
    background-color: transparent;
	color: rgba(41, 41, 41, 0.50);
    letter-spacing: normal;
	width: 100%;
	border-radius: 0;
	padding: 0;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item {
   	font-size: 2rem;
    margin: 0;
    word-break: break-word;
    overflow: hidden;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link span {
	position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link:hover ,
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link.active {
	color: #181716;
}
/****tab-part****/
ul.tabs li {
	font-family: 'LamaSans-Medium';
	font-size: 2rem;
	margin: 0;
	word-break: break-word;
	position: relative;
	text-transform: none;
	color: #F6F8FA;
	cursor: pointer;
	line-height: 30px;
}

ul.tabs li::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -28px;
	background-color: #C2885F;
	height: 3px;
	width: 0;
	transform: translateX(-50%);
	transition: all 0.5s;
}
ul.tabs li:hover,
ul.tabs li.active {
	display: block;
	position: relative;
	color: #F6F8FA;
}
ul.tabs li.active::after,
ul.tabs li:hover::after{
	width: 100%;
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
/****dtl-tab-content****/
.aanbod-dtl_top{
	padding-bottom: 40px;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
	column-gap: 10px;
	list-style: none;
	padding-left: 0;
	padding-bottom: 0;
	margin-bottom: -40px;
}
.kenmerken-tab li {
	font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: normal; 
    color: #F6F8FA;
	width: 32%;
	padding-bottom:47px;
	padding-left: 13px;
    display: flex;
    position: relative;
	letter-spacing: normal;
}
.kenmerken-tab li::after {
    background-size: 0.8rem;
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
}
.kenmerken-tab li strong {
    font-weight: normal;
	color: rgba(246, 248, 250, 0.50);
}
.kenmerken-tab li span {
	/* display: block; */
    margin-left: 10px;
}
.kenmerken-tab li img {
	margin-top: -5px;
}
.bullet-panel p {
    border-bottom: 1px solid #181716;
    padding-bottom: 10px;
    color: #181716;
    font-size: 20px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 1.6rem;
    position: relative;
    color: #fff;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 0.8rem;
    position: absolute;
    top: 0.8rem;
    left: 0;
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
}
.dtl-tab-sec .tab-content p {
	color: #fff;
	font-size: 1.4rem;
}
.tab_container ul{
	padding-left: 0;
	list-style: none;
}
.left-bg-block {
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C2885F;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.block-dtls {
    width: calc(100% - 14rem);
    border: 1px solid #C2885F;
    border-left: 0;
    padding: 2rem 1.5rem 0.5rem;
    min-height: 20rem;
}
.left-bg-block p {
    line-height: 3rem;
    color: #181716;
	font-size: 1.6rem;
}
.each-onderhoud-block p {
    line-height: 3rem;
    color: #181716;
	font-size: 1.6rem;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 2rem;
}
/****.aanbod-dtl-product****/
.aanbod_dtl_banner_heading {
	padding-top: 90px;
}
.aanbod_dtl_banner_heading h3{
	text-transform: uppercase;
}
.aanbod_dtl_banner_right{
	text-align: right;
}
.aanbod-dtl-product {
    padding-top: 13rem;
}
.aanbod_dtl_banner_right h3{
	color: #C2885F;
}
.aanbod-dtl-product .each-product-text {
    padding: 3rem 4rem;
}
.aanbod-dtl-product .each-product-text h5 {
    color: #fff;
}
.aanbod-dtl-product .each-product-text td h3 {
   font-size: 1.6rem;
}
.aanbod-dtl-product .product-price h4 {
    color: rgba(255, 255, 255, 0.99);
}
.aanbod-dtl-product .common-arrow {
    top: 41%;
}
.aanbod-dtl-product .swiper-button-next {
    right: -21px;
}
.aanbod-dtl-product .swiper-button-prev {
    left: -21px;
}
.aanbod-dtl-product h2 {
    margin-bottom: 6rem;
}
.aanbod-dtl-product .each-product-text table {
    margin: 2rem 0;
}
.contact_slider{
	position: sticky;
    left: 0;
    top: 120px;
    width: 100%;
}
.aanbod_dtl_btm{
	position: relative;
	overflow: clip;
}
.aanbod_dtl_btm::after{
	position: absolute;
	top: 147px;
	content: "";
	height: 100%;
	width: 200vw;
	background-color: #101824;
	z-index: -1;
	border-radius: 20px 20px 0 0;
	width:100vw;
	margin-left:-50vw;
	left:50%;
}
.aanbod_dtl_table{
	position: relative;
}
.aanbod_dtl_banner .common-arrow{
	height: auto;
	width: auto;
}
.aanbod_dtl_banner .common-arrow:hover{
	fill: transparent;
	backdrop-filter:unset;	
}
.aanbod_dtl_banner .common-arrow img{
	filter: brightness(0) invert(1);
	width: 25px;
}
.aanbod_dtl_banner .swiper-button-next{
	right: 40px;
}
.aanbod_dtl_banner .swiper-button-prev{
	left:40px;
}
/****form-sec****/
.form-sec{
	background-color: #202020;
	padding: 93px 0 130px;
}
.form-info .each-footer-info {
    padding: 0;
    padding-bottom: 48px;
    display: block;
    margin: 0;
}
.form-info .each-footer-info::after{
	display: none;
}
.form-info .each-footer-info.footer-contact{
	padding-bottom: 0;
}
.form-part {
    padding-left: 117px;
}
.form-heading h3{
	color: #fff;
	font-size: 3.2rem;
}
.form-heading p{
	color: #fff;
	margin-top: 15px;
	margin-bottom: 31px;
}
.form-left-part {
    padding-right: 12px;
}
.form-main-area .form-group {
    margin-bottom: 47px;
}
.form-main-area .form-styl {
    resize: none;
    border: none;
	font-family: 'LamaSans-Medium';
	color: #fff;
	line-height: 24px;
    font-size: 1.6rem;
    padding: 8px 13px;
    border-bottom: 1px solid rgba(246, 248, 250, 0.30);
    background: transparent;
	/*margin-bottom: 47px;*/
	border-radius: 0;
}
.form-main-area .form-styl:placeholder {
	color: rgba(255, 255, 255, 0.50);
}
.form-main-area .form-styl:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.50);
}
.form-main-area .form-styl::placeholder {
	color: rgba(255, 255, 255, 0.50);
}
.form-main-area .input_active,
.form-main-area .form-styl:focus {
    box-shadow: none;
	color: #F6F8FA;
	border-bottom: 1px solid #fff;
	font-size: 1.6rem;
}
.form-main-area .form-styl:focus::placeholder{
	color: #F6F8FA;
}
.form-main-area .common-btn.color-btn{
    margin-top: 6px;
}
.form-main-area  .form-group textarea.form-control {
	border-radius: 5px;
    min-height: 174px;
	height: 100%;
	border: 1px solid rgba(246, 248, 250, 0.30);
	margin-top: 16px;
}
.form-main-area  .form-group textarea.form-control:focus,
.form-main-area textarea.form-control.input_active{
	border-color: #fff;
}
.form-btn {
	text-align: end;
}
.each-footer-info.mobile-each-footer-info{
	display: none;
}
.form-right-img{
	padding-left: 52px;
	height: 100%;
}
.form-right-img img{
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
    object-fit: cover;
}
.mobile-form-info{
	display: none;
}
.form-right-img-mobile{
	display: none;
}
.product-sec.aanbod-dtl-product-sec {
    padding: 167px 0 135px;
}
.form-btn .common-btn::after{
	background-image: url(../images/form_btn_logo.svg);
}
.form-btn .common-btn:hover::after{
	filter: brightness(0) invert(1);
}
.form_bg{
	padding: 114px 0;
}
.form_bg .container{
	position: relative;
}
.form_bg .container::before,
.form_bg .container::after{
	position: absolute;
	left: 0;
	top: -114px;
	height: calc(100% + 114px);
	width: 1px;
	content: "";
	background:linear-gradient(to  bottom, rgba(194, 136, 95, 0.5), rgba(194, 136, 95, 0)) ;
}
.form_bg .container::before{
	left: auto;
	right: 0;
}
.form_headind{
	max-width: 550px;
	margin-bottom: 78px;
}
.form_headind h2{
	color: #fff;
	line-height: 80px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
}
.form_headind p{
	color: #fff;
}
.form_heading_right ul{
	display: flex;
	justify-content: end;
	column-gap: 45px;
}
.form_heading_right a{
	display: flex;
	color: #F6F8FA;
	font-size: 14px;
	line-height:  21.07px ;
	align-items: center;
	column-gap: 21px;
	font-family: 'LamaSans-Medium';
}
.form_heading_right span{
	width: 43px;
	height: 43px;
	flex-shrink: 0;
	border-radius: 5px;
	border: 1px solid #F6F8FA;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.form_heading_right a:hover{
	color: #C2885F;
}
.form_heading_right a:hover span{
	background-color:#F6F8FA ;
}
.form-wrap{
	padding:0 145px;
}
/****aanbod-filter-sec****/
.aanbod_list_sec{
	padding-bottom: 110px;
}
.aanbod-filter-sec {
    padding: 50px 0;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #83888F;
	font-size: 1.4rem;
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	filter: grayscale(1);
}
.filter-reset a:hover {
	color: #101824;
}
.filter-reset a:hover img {
    filter: brightness(0);
}
.select-style {
	width: 100%;
	height: 48px;
	color: rgba(16, 24, 36, 0.50);
	font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	padding: 0 30px 0 18px;
	background: url(../images/filter-arrow.svg)  no-repeat 91% center/10px;
	appearance: none;
	line-height: 48px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap; 
	cursor: default;
	border-radius: 5px;
	border: 1px solid rgba(16, 24, 36, 0.50);
}
.select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'lama_sansmedium';
	background-color: #C2885F;
}
.filter-content {
    display: none;
    background-color:#C2885F;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #F9F8F6;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.merk-filter .filter-content{
	transform: translate(0, 50px) !important;
}
.filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.each-filter{
	cursor: pointer;
}
.aanbod-filter-sec label {
    color: #F9F8F6;
    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: #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: #C2885F;
    border-color: #F9F8F6;
}
.auto-overview-tag {
    margin-right: 5px;
	margin-bottom: 10px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #F9F8F6;
    border-radius: 6px;
    background-color:#C2885F;
    font-size: 1.4rem;
    border: 1px solid #C2885F;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: #060709;
	border-color: #060709;
	color: #fff;
}
.aanbod-filter {
	margin-bottom: 18px;
	width: 20%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 86px;
    background-color: #101824;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #C2885F;
    border-color: #C2885F;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #F9F8F6;
}
.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;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #C2885F;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #F9F8F6;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #C2885F;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	background-color: #C2885F;
	border-color: #C2885F;
  	color: #f3f3f3;
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records::after{
	display: none;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .total_search_records:hover {
    background-color: #A66A3F;
    border-color: #A66A3F;
}
.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);
   font-family: 'LamaSans-Medium';
    text-transform: none;
    letter-spacing: normal;
}
.filter-sort .aanbod-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.list_bg{
	display: flex;
	padding: 62px;
}
.list_heding h3{
	color: #C2885F;
	margin-bottom: 52px;
}
.list-product &gt; .row{
	row-gap: 37px;
}
.list_bg_content h3{
	color: #F6F8FA;
	font-size: 3rem;
	line-height: 38px;
	margin-bottom: 5px;
}
.list_bg_content p{
	color: #F6F8FA;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list_bg_content .brown-btn::after{
	background-image: url(../images/setting.svg);
}
/* ===== diensten ===== */
.inner_banner{
	position: relative;
}
.inner_banner_content{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.diensten-list-top-righ{
	max-width: 618px;
	margin-left: auto;
	margin-top: 0;
}
.diensten-list{
	position: relative;
}
.diensten-list{
	padding: 150px 0 120px;

}
.diensten-list::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 25%;
    content: "";
    background: 
        linear-gradient(180deg, rgba(246, 248, 250, 0.60) 0%, rgba(246, 248, 250, 1) 86.41%), 
        url(../images/list_line.svg) center / cover no-repeat;
    width: 100%;
    z-index: 0;
    border-radius: 20px;
}
.diensten-list-btm .common-btn::after{
	background-image: url(../images/lees_meer_arrow.svg);
}

.diensten-list-btm-right img{
	border-radius: 10px;
}
.diensten-list-btm a{
	background-color: #fff;
	display: block;
	border-radius: 20px;
	padding: 24px;
	margin-bottom: 32px;
	transition: all 0.5s;
}
.diensten-list-btm-lft{
	padding-left: 54px;
	padding-right: 40px;
}
.diensten-list-btm-lft p{
	margin-top: 25px;
	margin-bottom: 80px;
	display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	max-width: 463px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.diensten-list-btm-lft p{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.diensten-list-btm,
.diensten-list-top{
	position: relative;
	z-index: 1;
}
.diensten-list-btm a:hover{
	background-color: #101824;
}
.diensten-list-btm a:hover .common-btn{
	border: 1px solid #C2885F;
	background: #C2885F;
}
.diensten-list-btm a:hover .common-btn{
	color: #F6F8FA;
}
.diensten-list-btm a:hover .common-btn::after{
	filter:  brightness(0) invert(1);
}
.diensten-list-btm a:hover .diensten-list-btm-lft h3{
	color:#C2885F ;
}
.diensten-list-btm a:hover .diensten-list-btm-lft p{
	color: #fff;
}
.diensten-list-top-lft{
	padding-bottom: 40px;
}
/* ============= overons ========= */
.overons-top-left img{
	border-radius: 20px;
}
.overons-top-left p{
	max-width: 552px;
	margin-top: 20px;
}
.overons-top{
	position: relative;
}
.overons-top::after{
	position: absolute;
    left: 0;
    top: 0;
    height: 60%;
    content: "";
    background: linear-gradient(180deg, rgba(246, 248, 250, 0.60) 0%, rgba(246, 248, 250, 1) 86.41%), url(../images/list_line.svg) center / cover no-repeat;
    width: 100%;
    z-index: 0;
    border-radius: 20px;
}
.overons-top .row{
	position: relative;
	z-index: 3;
	padding-top: 119px;
	padding-bottom: 100px;
}
.overons_mid_img{
	position: relative;
	z-index: 2;
}
.overons_mid_img-1{
	position: relative;
	padding-right: 105px;
}
.overons_mid_img-2{
	position: absolute;
	width: 303px;
	height: 438px;
	bottom: -140px;
	right: 0;
}
.overons_mid_img-2 img{
	height: 100%;
	object-fit: cover;
}
.overons_mid_img-1 img{
	border-radius: 20px;
}
.overons_mid_content{
	padding-left: 69px;
}
.overons_mid{
	padding: 92px 0 250px;
	/* border-radius: 20px; */
	background: #101824;
	margin-top: -15px;
	position: relative;
}
.overons_mid::after{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-image: url(../images/overons_mid_bg.svg);
	background-repeat: repeat-x;
	background-size: 8%;
	z-index: 0;
}
.overons_mid::before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: rgba(16, 24, 36, 0.80);
	background-repeat: repeat-x;
	background-position: center;
	background-size: cover;
	z-index: 1;
	border-radius: 20px;
}
.overons_mid_content h3{
	color: #F6F8FA;
	margin-bottom: 10px;
}
.overons_mid_content h2{
	color: #F6F8FA;
	margin-bottom: 30px;
}
.overons_mid_content p{
	color: #F6F8FA;
	margin-bottom: 40px;
}
.overons_marque{
	padding-bottom: 45px;
}
.overons_mid .row{
	position: relative;
	z-index: 5;
}
.overons_man_slider_heaing{
	position: relative;
	z-index: 3;
	text-align: center;
	padding-bottom: 70px;
}
.overons_man_slider_heaing h2{
	font-size: 4rem;
}
.overons_man_slider{
	padding: 109px 0 104px;
	position: relative;
}
.overons_man_slider::after{
	position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(246, 248, 250, 0.60) 0%, rgba(246, 248, 250, 1) 86.41%), url(../images/list_line.svg) center / cover no-repeat;
    width: 100%;
    z-index: 0;
    border-radius: 20px;
}
.overons_man_slider .common-arrow{
	top: 40%;
}
.overons_man_slider .common-arrow img{
	width: 14px;
}
.overons_man_slider .common-arrow:hover{
	background-color: #101824;
}
.overons_man_slider .swiper-button-disabled {
	opacity: 1;
	pointer-events: all;
}
.overons_man_slider .common-arrow:hover img{
	filter: brightness(0) invert(1);
}
.overons_man_slider .swiper-button-prev{
	left: -45px;
}
.overons_man_slider .swiper-button-next{
	right: -45px;
}
.each-member-slide img{
	border-radius: 10px;
}
.each-member-slide h4{
	color: #101010;
	margin-top: 12px;
	text-transform: none;
}
.each-member-slide p{
	font-size: 1.4rem;
	color: rgba(16, 16, 16, 0.70);
	margin-bottom: 0;
}
.overons_btm_slider{
	margin-bottom: 17px;
}
.overons_btm_each_slider img{
	border-radius: 10px;
}
/* ================== garanite ======= */
.garantie_top_sec{
	padding-top: 82px;
}
.garantie_top{
	border-radius: 20px;
	background: #FFF;
	padding:38px 55px;
}
.garantie_top p{
	margin-bottom: 0;
}
.garantie_top_right .common-btn::after{
	background-image: url(../images/back_btn_arrow.svg);
}
.garantie_top_right .common-btn:hover::after{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.garantie_top_lft  h3{
	line-height: 55px;
}
.garantie_mid::after{
	display: none;
	padding-top: 0;
}
.garantie_mid .row{
	padding-top: 58px;
}
.garantie_btm_slider .each-member-slide img{
	border-radius: 0;
}
.garantie_btm_slider_content h4{
	color: #101824;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'LamaSans-ExtraBoldCondensed';
	padding: 35px ;
	justify-content: space-between;
	column-gap: 10px;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.garantie_btm_slider_content h4::after{
	position: absolute;
	content: "";
	background-image: url(../images/righ-arrow.svg);
	width: 12px;
	flex-shrink: 0;
	height: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
	top: 35px;
	right: 35px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-member-slide a{
	background-color: #fff;
	display: block;
	border-radius: 10px;
	overflow: clip;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.garantie_btm_slider_img{
	overflow: hidden;
}
.garantie_btm_slider_img img{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-member-slide a:hover img{
	transform: scale(1.1);
}
.each-member-slide a:hover{
	background-color: #C2885F;
}
.each-member-slide a:hover .garantie_btm_slider_content h4{
	color: #FFF;
}
.each-member-slide a:hover .garantie_btm_slider_content h4:after{
	filter: brightness(0) invert(1);
}
.garantie_btm_slider .overons_man_slider_heaing h2{
	font-size: 4.8rem;
}
/* ========== verkoop_list ======== */
.verkoop_list{
	padding: 100px 0 75px;
}
.Vacature_detail_mid_content{
	margin-bottom: -80px;
}
.vacature_detail_top_right img{
	border-radius: 20px;
}
.vacature_detail_top_right_img_1{
	padding-left: 110px;
}
.vacature_detail_top_right_img_2{
	padding-right: 140px;
	margin-top: -109px;
}
.vacature_detail_top_right{
	padding-left: 84px;
}
.vacature_detail_top_lft{
	padding-right: 15%;
}
.vacature_detail_top_lft h2{
	margin-bottom: 36px;
}
.vacature_detail_top_lft p{
	margin-bottom: 36px;
}
.vacature_detail_top_lft h3{
	margin-bottom: 12px;
}
.vacature_detail_top{
	padding-top:72px;
	padding-bottom: 126px;
}
/* ========= contact ============ */
.map_sec{
	margin: 15px 0;
}
.map_img{
	height: 593px;
	overflow: hidden;
	border-radius: 20px;
}
.contact_form_sec{
	background-color: #101824;
	position: relative;
}
.contact_form_sec .container{
	position: relative;
	z-index: 1;
}
.contact_form_sec .about-line{
	border-radius: 20px 20px 0 0;
    overflow: hidden;
	z-index: 0;
}
.contact-wrap {
    background: #F6F8FA;
    padding-top: 139px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}
.contact-heading {
    margin-bottom: 75px;
}
.contact_form_sec .col-lg-5 {
	width: 38%;
}
.contact_form_sec .col-lg-7 {
	width: 62%;
}
.contact_form{
	padding: 56px 64px;
	border-radius: 20px;
	background: #FFF;
	height: 100%;
}
.contact_form .form-styl {
    color: #101824;
    border-bottom: 1px solid rgba(16, 24, 36, 0.3);
	padding: 18px 13px;
	padding-left: 0;
	line-height: 20px;
	/*margin-bottom: 22px;*/
}
.contact_form .form-styl:focus::placeholder{
    color: #101824;
}
.contact_form .form-styl::placeholder{
	color: rgba(16, 24, 36, 0.60);
}
.contact_form .form-styl:focus{
    color: #101824;
	border-bottom: 1px solid #101824;
}
.contact_form .form-group textarea.form-control {
	border: 1px solid rgba(16, 24, 36, 0.3);
	padding-left: 23px;
	min-height: 189px;
}
.contact_form .input_active{
	border-bottom: 1px solid #101824;
}
.contact_form_heading{
	margin-bottom: 30px;
}
.contact_form_heading h2{
	line-height: 80px;
}
.contact_form .form-group textarea.form-control:focus{
	border: 1px solid #101824;
}
.contact_form .form-group textarea.input_active{
	border: 1px solid #101824;
}
.contact_form .common-btn{
	background: #101824;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	color: #F6F8FA;
}
.contact_form .common-btn::after{
	filter: invert(99%) sepia(92%) saturate(121%) hue-rotate(129deg) brightness(105%) contrast(96%);
}
.contact_form .common-btn:hover{
	background-color: #C2885F;
}
.contact_form_img{
	display: flex;
	flex-direction: column;
	row-gap: 14px;
}
.contact_form_img_top{
	height: 30%;
}
.contact_form_img_btm {
    position: relative;
    padding: 47px 50px;
    border-radius: 20px;
    overflow: hidden;
}
.contact_form_img_top img ,.contact_form_img_btm img{
	border-radius: 20px;
}
.contact_form_img_btm ul {
    padding-left: 0;
    list-style: none;
    background: #fff;
    padding: 42px 47px;
    margin-bottom: 0;
    border-radius: 20px;
    overflow: hidden;
	max-width: 406px;
    width: 100%;
	margin: 0 auto;
}
.contact_form_img_btm li{
	font-family: 'LamaSans-Medium';
	letter-spacing: normal;
	margin-bottom: 26px;
}
.contact_form_img_btm li strong {
    font-weight: normal;
	display: flex;
}
.contact_form_img_btm li img{
	border: 1px solid #101824;
    border-radius: 5px;
    padding: 15px;
	margin-right: 15px;
}
.contact_form_img_btm li h5{
	color: #101824;
}
.contact_form_img_btm li:last-child{
	margin-bottom: 0;
}
.contact_form_sec .form-btn {
    margin-top: 20px;
}
.contact_form_info li a {
	display: flex;
}
/* ========= bedankt ============ */
.bedankt-banner-sec .each-banner{
	height: 931px;
}
.bedankt-banner-sec p {
	max-width: 790px;
	width: 100%;
}
.bedankt-banner-sec p {
    letter-spacing: normal;
    color: #fff;
    width: 100%;
    max-width: 755px;
	margin-bottom: 33px;
}
.bedankt-banner-sec .banner-content h1 {
    margin-bottom: 18px;
}
.bedankt-banner-sec .common-btn{
	color: #F6F8FA;
	border-color: #fff;
}
.bedankt-banner-sec .icon-right::after {
    right: 13px;
}
.bedankt-banner-sec .common-btn::after {
    background-image: url(../images/white-arw.svg);
}
.bedankt-banner-sec .common-btn:hover{
	border-color: #C2885F;
}
/*************************************popup**************************************/
.modal-area .modal-dialog {
    max-width: 49%;
    margin: 10% auto 0;
}
.modal-area .modal {
	background: rgba(16, 24, 36, 0.60);
}
.modal-area .modal-content {
    border: 0;
    border-radius: 10px;
	overflow: hidden;
    background-color: #fff;
    position: relative;
}
.pop-up-image {
    height: 100%;
}
.modal-area .popup-content {
    padding: 82px 75px;
    background-color: #fff;
    text-align: center;
	position: relative;
	z-index: 1;
}
.modal-area .popup-content p{
    font-family: 'LamaSans-Medium';
    color: #231F20;
    margin: 84px 0 119px;
    letter-spacing: normal;
}
.modal-area .popup-content h3 {
    line-height: 52px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: 'Exo2SemiBoldItalic';
    font-size: 4rem;
    margin: 12px 0 23px;
    width: 100%;
    max-width: 485px;
}
.modal-area .popup-content ul {
    margin-left: 20px;
    list-style-type: disc;
}
.modal-area .popup-content li {
    line-height: 26px;
    margin-bottom: 10px;
    color: #141414;
}
.modal-area .popup-content li::marker {
    color: #E52329;
}
.popup-info-btm p {
    margin-top: 17px;
}
.pop-up-image img {
	height: 100%;
	border-radius: 10px;
    overflow: hidden;
}
.close-img {
    position: absolute;
    top: -28px;
    right: -25px;
    z-index: 1;
    font-size: 3rem;
    height: 62px;
    width: 62px;
    background-color: #303030;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100px;
}
.close-img:hover {
	color: #fff;
}
.modal-content .col-lg-7 {
    width: 56%;
}
.modal-content .col-lg-5 {
    width: 44%;
}
.popup-content .border-btn {
    border: 1px solid #060709;
    color: #060709;
}
.popup-content .border-btn:hover{
    color: #fff;
    border-color: #5BB6E7;
}
.popup-content img {
    width: 225px;
}
.popup-content .common-btn::after {
    background-image: url(../images/list-btn-arrow.svg);
}
.popup-content .common-btn:hover::after{
	background-image: url(../images/white-arw.svg);
}
/* ============ verkocht_list ========= */
.verkocht_list .list_heding h3{
	color: #101824;
	font-family: 'LamaSans-Medium';
}
.verkocht_list .each-product-price::after{
	display: none;
}
.verkocht_list .each-product:hover .each-product-price {
    background-color: #E5E7EF;
}
.verkocht_list .each-product:hover .each-product-price h4{
	color: initial;
}
.verkocht_list .list_heding{
	margin-bottom: 35px;
	padding-top: 180px;
}

/*******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:18px;
  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 &gt; img {
    height: 30px;
    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 15px 6px 30px;
    color: #000;
    background-size: 152px;
}

.star_icon h4, .bullet-panel h4{
    padding-bottom: 10px;
    text-transform: uppercase;
    padding-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
}
.star_icon p img{
    width: 15px;
    margin-top: -3px;
    margin-right: 5px;
}
.star_icon p{
    /* font-family: 'NunitoSansRegular'; */
    font-size: 1.4rem;
   /* color: black;*/
    padding-bottom: 6px;
	margin-bottom: 0;
    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;
}


.aanbod-loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#555 calc(1*100%/6),#fff 0 calc(3*100%/6),#555 0),
              linear-gradient(#555 calc(2*100%/6),#fff 0 calc(4*100%/6),#555 0),
              linear-gradient(#555 calc(3*100%/6),#fff 0 calc(5*100%/6),#555 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: 3rem;
    align-items: center;
    color: #101824;
  }
.privacy_section {
    padding: 60px 0;
}
.share-social-media-button {
	display: table;
	margin-left: auto;
}
body .share-social-media-button .a2a_dd {
	border-color: #eaeef3 !important;
	margin-top: 20px;
	height: 40px !important;
	width: 40px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
}
body .share-social-media-button .a2a_dd svg {
    width: 13px;
    margin-right: 0 !important;
	/* filter: brightness(0); */
	position: relative;
	left: -1px;
}

.popup-content-wrap a {
	filter: brightness(0);
}
.radio_filter .form-check-input {
    display: none;
}
.foto_upload{
	color: rgba(255, 255, 255, 0.50) !important;
}
.overons_btm_slider .swiper-wrapper
{
	transition-timing-function: linear !important;
}
.review-block {
    position: relative;
	padding-top: 80px;
    padding-bottom: 30px;
}
.financieren_tab a{
	color: #F6F8FA;
}
.filter-main .input_field{
	/*width: 85%;
	left: 0;
	position: absolute;
	border: 0;
	background: transparent;
	padding: 0 0 0 18px;*/
	width: 100%;
	height: 48px;
	color: rgba(16, 24, 36, 0.50);
	font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	padding: 0 30px 0 18px;
	background: transparent;
	appearance: none;
	line-height: 48px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap; 
	cursor: default;
	border-radius: 5px;
	border: 1px solid rgba(16, 24, 36, 0.50);
}
</pre></body></html>