@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	color: #fff;
    font-family: 'LamaSans-Regular';
	font-size: 1.6rem;
	line-height: 24px;
	background-color:#222;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
main {
	margin-top: 75px;
}
/****header-area****/
.header-area {
	background-color:#222;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	overflow: hidden;
	border-bottom: 1px solid transparent;
}
.header-active {
	border-color: rgba(255, 255, 255, 0.10);
}
.header-logo img {
	width: 45px;
}
.header-menu ul {
	display: flex;
	margin: 0;
	justify-content: end;
}
.header-menu li {
	color: rgba(255, 255, 255, 0.5);
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	line-height: normal;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 0;
}
.header-menu li::after {
	display: none;
}
.header-menu li a {
	color: rgba(255, 255, 255, 0.5);
	padding: 29px 68px;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	display: block;
}
.header-menu li a:hover {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}
.header-menu li:last-child {
	border-right: 0;
}
.header-contact strong {
	padding-left: 25px;
	font-weight: normal;
	position: relative;
}
.header-contact strong::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/header-contact.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 15px;
	opacity: 0.5;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-contact:hover strong::after {
	opacity: 1;
}
.header-right {
	display: flex;
	justify-content: end;
	padding-right: 8px;
}
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	background:#0A477A;
	box-shadow: 0px 10px 30px 0px rgba(26, 36, 31, 0.10);
	width: 75px;
}
.menu-bar {
    position: relative;
    max-width: 25px;
    width: 100%;
    margin: auto;
    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: 5px 0 5px auto;
    width: 25px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.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(-8px) rotate(-135deg);
}
.menu-btn.active {
    position: relative;
    z-index: 2;
}
/*****mega-menu*****/
.mega-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    background-color: #171818;
    height: 100vh;
    padding: 140px 50px 50px;
    clip-path: inset(0 0 0 100%);
    z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-active {
    clip-path: inset(0 0 0 0);
}
.menu-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.60);
    opacity: 0;
    pointer-events: none;
	backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mega-menu-nav ul {
    padding: 0;
    margin: 0;
}
.mega-menu-nav li {
    padding: 0;
    margin: 0;
	color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    font-family: 'LamaSans-Medium';
    line-height: 24px; 
    text-transform: uppercase;
    margin-bottom: 40px;
}
.mega-menu-nav li::after {
	display: none;
}
.mega-menu-nav li:last-child {
    margin-bottom: 0;
}
.mega-menu-nav li a {
    position: relative;
    display: block;
	color: rgba(255, 255, 255, 0.5);
}
.mega-menu-nav li a:hover {
	color: rgba(255, 255, 255, 1);
}
.mega-menu-nav li.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 {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}
.mega-menu-nav::-webkit-scrollbar {
    width: 10px;
	background-color: #535353;
}
.mega-menu-nav::-webkit-scrollbar-thumb {
    background-color: #666666;
}
/*****banner-sec******/
.banner-sec {
    position: relative;
	background-color: #222;
}
.banner-wrap {
	max-width: calc(100% - 75px);
}
.banner-video,.each-banner  {
	height: 819px;
}
.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;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	left: 0;
	z-index: 1;
}
.banner-content h1 {
	margin-bottom: 37px;
	padding-right: 50px;
}
.side-bar {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 100%;
	z-index: 1;
	background-color: #222;
}
.banner-social {
	width: 100%;
}
.banner-social ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 0;
}
.banner-social li {
	padding: 0;
	margin: 0;
}
.banner-social li::after {
	display: none;
}
.banner-social li a {
	border: 1px solid #fff;
    height: 31px;
    max-width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    margin: 0 auto;
}
.banner-social li a:hover {
	opacity: 1;
}
.banner-wp {
    margin-top: 0;
    position: fixed;
    right: 0;
/*    bottom: 80px;*/
	bottom: 0;
	width: 75px;
	height: 75px;
	z-index: 98;
}
.banner-wp a {
	width: 75px;
	height: 75px;
	background-color: #8CC63F;
	display: flex;
	align-items: center;
	justify-content: center;
}
/******filter-area*******/
.aanbod-filter-sec {
	padding: 75px 0 50px;
	position: relative;
}
.aanbod-filter-sec::after {
	content: "";
	width: 60%;
	height: 426px;
	background-color: #2F2F2F;
	position: absolute;
	left: 0;
	top: 0;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset {
	margin-right: 26px;
}
.filter-reset a {
	color: #fff;
	font-size: 1.4rem;
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color:#0A477A;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.select-style {
	width: 100%;
    height: 48px;
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
	background-color:transparent;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 0;
    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;
}
.select-style.show {
    border-radius: 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
    font-family: 'LamaSans-Medium';
	background-color: #222;
}
.filter-content {
    display: none;
    background-color:#2F2F2F;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 0;
    border-radius: 0;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #fff;
    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: 14px;
    height: 14px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #F9F8F6;
    background-color: transparent;
    border-radius: 0;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color:#0A477A;
    border-color:#0A477A;
}
.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: #fff;
    border-radius: 0;
    background-color:#0A477A;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    border: 1px solid #0A477A;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: #fff;
	color: #222;
}
.auto-overview-tag:hover img {
	filter: brightness(0);
}
.filter-main .col-lg-3 {
	margin-bottom: 18px;
	width: 25%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 58px;
    background-color: #222;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #0A477A;
    border-color: #0A477A;
	color: #fff;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #fff;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #14181E;
	border-radius: 100%;
	color: #fff;
    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: #222;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #0A477A;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #0A477A;
}
.mobile-filter-close span img {
	width: 9px;
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	background-color: #0A477A;
	border-color: #0A477A;
  	color: #fff;
	padding: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: #fff;
	border-color: #0A477A;
	color: #0A477A;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort .aanbod-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .select-style {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.40);
	background-image: url(../images/filter-arrow-white.svg);
}
/****home-filter-sec*****/
.aanbod-filter-sec.home-filter-sec {
    background-color: #fff;
	position: relative;
	z-index: 2;
	padding: 0;
}
.aanbod-filter-sec.home-filter-sec::after {
	display: none;
}
.aanbod-filter-sec.home-filter-sec .filter-search {
	height: 100%;
	width: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0A477A;
	padding: 0;
	border: 0;
	margin-left: -1px;
    position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-filter-sec.home-filter-sec .filter-search:hover {
	background-color: #222;
}
.aanbod-filter-sec.home-filter-sec .filter-search:hover img {
	filter: brightness(10);
}
.aanbod-filter-sec.home-filter-sec .filter-main {
	max-width: 860px;
	width: 100%;
	height: 78px;
	margin-bottom: 0;
	margin-top: -40px;
	background-color: #fff;
	box-shadow: 0px 10px 30px 0px rgba(26, 36, 31, 0.10);
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-3 {
	width: 78px;
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-9 {
	width: calc(100% - 78px);
	padding: 30px 0;
}
.aanbod-filter-sec.home-filter-sec .filter-main .select-style {
	height: auto;
	line-height: normal;
	border-bottom-width: 0;
	border-top-width: 0;
	border-left-width: 0;
	color: #222;
    border-color: rgba(26, 36, 31, 0.40);
	background-image: url(../images/filter-arrow.svg);
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-lg-3 {
	margin-bottom: 0;
	width: 25%;
}
.aanbod-filter-sec.home-filter-sec .filter-content {
	margin-top: -2px !important;
	background-color: #fff;
	border: 0;
	box-shadow: 0px 25px 30px 0px rgba(26, 36, 31, 0.10);
}
.aanbod-filter-sec.home-filter-sec label {
	color: #222;
}
.aanbod-filter-sec.home-filter-sec .form-check-input {
	border-color: #222;
}
.aanbod-filter-sec.home-filter-sec .form-check-input:checked {
	border-color: #8CC63F;
}
.aanbod-filter-sec.home-filter-sec label span {
	color: #666666;
}
.aanbod-filter-sec.home-filter-sec .aanbod-filter-wrap {
	position: absolute;
	width: 100%;
	left: 0;
}
/****product-sec****/
.product-sec {
	background-color: #fff;
	padding: 78px 0 0;
	position: relative;
	overflow: hidden;
}
.product-sec::after {
	content: "";
	height: 270px;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	position: absolute;
}
.product-sec .container {
	position: relative;
	z-index: 1;
}
.product-heading {
	margin-bottom: 70px;
}
.product-slider {
	width:100vw;
	margin-left:-50vw;
	left:50%;
	position:relative;
}
.product-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.product-bg img {
	height: 100%;
	object-fit: cover;
}
.each-product-text {
	background-color:#FFFFFF;
	padding: 20px 35px;
	max-width: calc(100% - 40px);
	width: 100%;
	margin: -30px auto 0;
	position: relative;
	z-index: 1;
	opacity: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-text::after {
	position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 1px);
    background-size: 130px 130px, 66px 66px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}
.product-model h2 {
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-model h4 {
	color: rgba(255, 255, 255, 0.70);
	line-height: normal;
	font-family: 'LamaSans-Regular';
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
}
.product-model {
	margin-bottom: 60px;
	padding-right: 55px;
}
.product-info table {
	width: 100%;
}
.product-info tbody {
	width: 100%;
}
.product-info tr {
	width: 100%;
	display: flex;
	row-gap: 30px;
	column-gap: 10px;
	flex-wrap: wrap;
}
.product-info td {
	color: #fff;
	font-family: 'LamaSans-Regular';
	font-size: 1.8rem;
	line-height: normal;
	width: 48%;
	display: block;
}
.product-info td img {
	height: 15px;
	width: 15px;
	margin-top: -5px;
}
.product-info td strong {
	margin-right: 10px;
}
.product-price h3 {
	line-height: normal;
	letter-spacing: normal;
	font-family: 'LamaSans-Regular';
	color:#FFFFFF;
	margin-bottom: 7px;
}
.product-price h4 {
	line-height: normal;
	color:rgba(255, 255, 255, 0.70);	
	font-family: 'LamaSans-Regular';
}
.product-arrow {
	height: 32px;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	border-radius: 100%;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	position: absolute;
	right: 35px;
	top: 30px;
}
.each-product:hover .product-arrow {
	background-color: #0A477A;
	border: 1px solid #0A477A;
}
.each-product:hover .product-arrow img {
	/* filter: brightness(1) invert(0); */
}
.each-product .product-arrow img {
	filter: brightness(0) invert(1);
}
.product-slider .each-product-img {
	position: relative;
}
.product-slider .each-product-img::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.20);
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-slider .swiper-slide-active .each-product-text {
	opacity: 1;
}
.product-slider .swiper-slide-active .each-product-img::after {
	opacity: 0;
}
.product-slider .common-arrow {
	top: auto;
	bottom: 26%;
}
.product-slider .swiper-button-prev {
	left: 8.5%;
}
.product-slider .swiper-button-next {
	right: 8.5%;
}
/*****service-sec******/
.service-sec {
	position: relative;
	margin-top: -60px;
	padding: 250px 0 74px;
	overflow: hidden;
	background-color: #fff;
}
.service-sec::after {
	content: "";
    height: 59%;
    width: 76.5%;
    position: absolute;
    left: 0;
    top: 170px;
    background-image: url(../images/service-patern.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F7F8F9;
}
.service-sec::before {
	content: "";
	height: 72%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color:#222;
}
.service-heading {
/*	margin-bottom: 112px;*/
	margin-bottom: 72px;
}
.service-heading h2 {
	color: #222;
}
.service-heading p {
	color: #222;
	max-width: 440px;
	width: 100%;
}
.service-sec .container {
	position: relative;
	z-index: 1;
}
.service-control {
	position: relative;
	max-width: 105px;
	width: 100%;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service-control .common-arrow {
	height: 44px;
	width: 44px;
	border-color:#fff;
	background-color: transparent;
	position: initial;
	margin: 0;
}
.service-control .common-arrow img {
	filter: invert(1);
}
.service-control .common-arrow:hover {
	background-color: #fff;
}
.service-control .common-arrow:hover img {
	/* filter: brightness(0) saturate(100%) invert(97%) sepia(11%) saturate(1753%) hue-rotate(11deg) brightness(95%) contrast(99%);
	-webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(11%) saturate(1753%) hue-rotate(11deg) brightness(95%) contrast(99%); */
	filter: invert(0);
}
.each-service {
	position: relative;
	height: 558px;
	overflow: hidden;
}
.each-service::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(47, 47, 47, 0.80);
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	opacity: 0;
}
.each-service-img {
    height: 100%;
}
.each-service-img img {
	height: 100%;
	object-fit: cover;
}
.each-service-text {
	position: absolute;
	bottom: -35px;
	left: 0;
	padding: 36px 46px;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	max-height: 220px;
}
.each-service-text h5 {
	margin-bottom: 11px;
}
.each-service-text h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 320px;
	width: 100%;
}
.each-service .common-arrow {
	height: 44px;
	width: 44px;
	border-color:#0A477A;
	background-color:#0A477A;
}
.each-service .common-arrow img {
	filter: invert(1);
}
.each-service-text-btm {
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service:hover .each-service-text {
	bottom: 0;
	max-height: 800px;
}
.each-service:hover .each-service-text-btm {
	opacity: 1;
}
.service-slider {
	margin-bottom: 70px;
}
.each-service:hover::after {
	opacity: 1;
}
/******usp-marquee-sec*******/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 70px 0;
	border-bottom: 1px solid rgba(247, 240, 236, 0.20);
	background-color:#222;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 150px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 150px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
	line-height: 17px;
	color: #fff;
	font-size: 1.6rem;
    font-family: 'LamaSans-Medium';
	padding-left: 25px;
	position: relative;
}
.usp-marquee-wrap li::after {
	top: 1px;
}
/******about-sec******/
.about-sec {
	position: relative;
	background-color: #222222;
}
.about-text {
	max-width: 634px;
	width: 100%;
	padding: 60px 60px 60px 0;
}
.acc-block {
	margin: 44px 0 60px;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
	border-radius: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	padding: 20px 0;
	margin-bottom: 0;
}
.acc-block li::after {
	display: none;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block li h6 {
	position: relative;
	cursor: default;
	padding-right: 28px;
	color: #fff;
	font-family: 'Alexandria-Medium';
	letter-spacing: 0.16px;
	opacity: 0.3;
}
.acc-block li h6::after {
	position: absolute;
	height: 16px;
	width: 16px;
	background-image: url(../images/plus.svg);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
	top: 5px;
	right: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.acc-block li.show_accordian h6 {
	opacity: 1;
}
.acc-block li.show_accordian h6::after {
	background-image: url(../images/minus.svg);
}
.acc-block p {
	margin-top: 11px;
	margin-bottom: 0;
	max-width: 490px;
	width: 100%;
	letter-spacing: 0.16px;
}
.about-text h2 {
	margin-bottom: 23px;
	color: #fff;
}
.about-img {
	position: absolute;
	top: 0;
	right: 0;
	width: 50.7%;
	height: 100%;
}
.about-img img {
	height: 100%;
	object-fit: cover;
}
.counter {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.each-counter {
	position: relative;
	background-color:#0A477A;
	padding: 29px 15px;
	width: 33.33%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.each-counter:nth-child(2) {
	background-color:#12548F;
}
.each-counter:nth-child(3) {
	background-color:#2969A3;
}
.each-counter h3 {
    font-family: 'Alexandria-Bold';
	color: #fff;
	font-size: 4rem;
	line-height: 44px;
	margin-bottom: 7px;
}
.each-counter h3 strong {
	font-weight: normal;
}
.each-counter h6 {
	line-height: 17px;
    letter-spacing: normal;
	color: #fff;
}
/*****review-sec****/
.review-sec {
	background-color: #EBECEE;
	padding: 90px 0;
}
/****gallery-sec*****/
.gallery-sec {
	position: relative;
}
.home-gallery-sec::after {
	content: "";
    height: 46%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
	background-color: #EBECEE;
}
.each-gal {
	overflow: hidden;
	height: 240px;
}
.each-gal::after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.5s;
	background-image: url(../images/insta-icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
	background-color: rgba(0, 0, 0, 0.50);
}
.each-gal img {
	height: 100%;
	object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gal:hover::after {
	opacity: 1;
}
/******footer-area ******/
.footer-area {
	background-color: #222;
	padding: 90px 0 30px;
	overflow: hidden;
	position: relative;
}
.footer-area::after {
	content: "";
    height: 90px;
    width: 1px;
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-area .container {
	position: relative;
}
.footer-area .container::after,
.footer-area .container::before {
	content: "";
    height: 100vh;
    width: 1px;
    position: absolute;
    left: 19%;
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-area .container::before {
	left: auto;
	right: 19%;
}
.footer-logo img {
	width: 111px;
}
.footer-info {
	display: flex;
	justify-content: space-between;
}
.each-footer-info h6 {
    font-family: 'Alexandria-SemiBold';
	letter-spacing: normal;
	margin-bottom: 13px;
}
.each-footer-info p {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 6px;
	letter-spacing: normal;
}
.each-footer-info p a {
	color: rgba(255, 255, 255, 0.75);
}
.each-footer-info p a:hover {
	color:#0A477A;
}
.each-footer-info td {
	color: rgba(255, 255, 255, 0.75);
}
.each-footer-info td:nth-child(odd) {
	padding-right: 10px;
}
.footer-other {
	max-width: 212px;
	width: 100%;
	margin-left: auto;
}
.footer-rating {
	margin-bottom: 14px;
}
.footer-rating iframe {
	width: 212px;
	height: 64px;
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: end;
}
.footer-social h6 {
	color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	margin-right: 15px;
	letter-spacing: normal;
	line-height: normal;
}
.footer-social ul {
	display: flex;
	gap: 12px;
	margin-bottom: 0;
}
.footer-social li {
	padding: 0;
	margin: 0;
}
.footer-social li::after {
	display: none;
}
.footer-social li a {
	width: 31px;
	height: 31px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
}
.footer-social li a:hover {
	background-color: #0A477A;
	border-color: #0A477A;
}
.footer-social li a:hover img {
/*	filter: brightness(0);*/
}
.footer-top {
	position: relative;
	padding: 52px 0 25px;
	margin-bottom: 30px;
}
.footer-top::after,
.footer-top::before {
	content: "";
    height: 1px;
	width:100vw;
	margin-left:-50vw;
	left:50%;
    position: absolute;
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-top::before {
	top: auto;
	bottom: 0;
}
.footer-copyright p {
	color: rgba(255, 255, 255, 0.50);
	margin-bottom: 0;
}
.footer-policy ul {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}
.footer-policy li {
	padding-right: 5px;
	padding-left: 0;
	margin-right: 5px;
	position: relative;
}
.footer-policy li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.footer-policy li:last-child::after {
	display: none;
}
.footer-policy li::after {
	content: "";
    height: 64%;
	width: 1px;
	right:0;
	left: auto;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.50);
	background-image: none;
}
.footer-policy li a {
	color: rgba(255, 255, 255, 0.50);
}
.footer-policy li a:hover {
	color:#0A477A;
}
.rdw-logo {
    display: inline-block;
}
.footer-bovag {
    display: inline-block;
	margin-right: 6px;
}
/*========================================aanbod pg start================================================*/
/****aanbod-product-sec****/
.aanbod-product-sec {
    position: relative;
    z-index: 1;
	padding-bottom: 88px;
}
.aanbod-product-sec > .container > .row > .col-xxl-4 {
	padding: 0 4px;
	width: 50%;
}
.aanbod-product-sec > .container > .row {
	row-gap: 8px;
	margin: 0 -4px;
}
.aanbod-product-sec .each-product-text {
	opacity: 1;
	max-width: 100%;
	margin-top: 0;
	padding: 14px 28px;
}
.aanbod-product-sec .each-product-text::after {
	background-image: linear-gradient(rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 47, 47, 0.05), transparent 1px);
	opacity: 0.6;
	background-size: 85px 85px, 66px 66px;
}
.aanbod-product-sec .product-model {
	margin-bottom: 27px;
}
.aanbod-product-sec .product-model h3 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	color: #121212;
}
.aanbod-product-sec .product-model h6 {
	color:rgba(47, 47, 47, 0.70);
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aanbod-product-sec .product-price h4 
{
	color:rgba(47, 47, 47, 0.70);
}
.aanbod-product-sec .product-price h6 {
	color: rgba(221, 240, 123, 0.70);
}
.aanbod-product-sec .product-info tr {
	row-gap: 5px;
}
.aanbod-product-sec .product-info td img {
	margin-top: -4px;
}
.aanbod-product-sec .product-info td {
    font-size: 1.4rem;
    line-height: 20px;
	display: inline-flex;
	color:#282828;
	width: auto;
}
.aanbod-product-sec .product-info td strong {
    margin-right: 5px;
}
.aanbod-filter-active {
	z-index: 99;
}
.aanbod-product-sec .product-arrow {
	border-color:#282828;
}
.aanbod-product-sec .each-product .product-arrow img {
	filter: invert(1);
}
.aanbod-product-sec .each-product:hover .product-arrow img {
	filter: invert(0) brightness(10);
}
/*========================================service-list pg start================================================*/
/******service-list-heading*****/
.service-list-heading {
	position: relative;
	padding-top: 78px;
}
.service-list-heading::after {
	content: "";
	height: 476px;
	width: 52%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/diensten-list-heading-patern.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color:#312f30;
	z-index: -1;
}
.service-list-heading p {
	max-width: 576px;
	width: 100%;
	margin-left: auto;
}
/******service-list-sec*****/
.service-list-sec {
	padding: 90px 0 70px;
}
.service-list-text {
	background-color:#312f30;
	padding: 50px;
	height: calc(100% - 24px);
	margin-top: 12px;
	margin-left: -41px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-img {
    margin-right: -46px;
	height: 100%;
	height: 408px;
}
.service-list-img img {
	height: 100%;
	object-fit: cover;
}
.service-list-text h3 {
	margin-bottom: 18px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-text p {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-text-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.round-btn {
	height: 50px;
	width: 50px;
	border-radius: 100%;
	background-color:transparent;
	position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	border: 1px solid #fff;
}
.round-btn::after {
	content: "";
	height: 18px;
	width: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../images/next.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 18px;
	filter: invert(1);
}
.service-list-text::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/each-din-text-bg.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
}
.each-service-list {
	margin-bottom: 27px;
}
.each-service-list:last-child {
	margin-bottom: 0;
}
.each-service-list:hover .service-list-text {
	background-color: #0A477A;
}
.each-service-list:hover .service-list-text h3 {
	color: #fff;
}
.each-service-list:hover .service-list-text p {
	color: #fff;
}
.each-service-list:hover .txt-btn {
	color: #fff;
}
.each-service-list:hover .round-btn {
	background-color: #fff;
}
.each-service-list:hover .round-btn::after {
	filter: brightness(0) saturate(100%) invert(21%) sepia(58%) saturate(1117%) hue-rotate(172deg) brightness(102%) contrast(99%);
}
/* .each-service-list:hover .service-list-text::after {
	background-image: url(../images/each-din-text-bg-hover.svg);
} */
.each-service-list:nth-child(even) .row {
	flex-direction: row-reverse;
}
.each-service-list:nth-child(even) .service-list-text {
	margin-left: auto;
	margin-right: -41px;
}
.each-service-list:nth-child(even) .service-list-img {
	margin-left: -46px;
	margin-right: auto;
}
/*========================================verkocht pg start================================================*/
/******verkocht-product-sec******/
.verkocht-product-sec {
	padding-top: 118px;
}
.verkocht-product-sec .product-price h4 {
	font-size: 2.4rem;
	font-family: 'Alexandria-Regular';
}
.verkocht-product-sec .each-product-text::after {
	background-size: 75px 75px, 40px 40px;
}
/*===========================popup start===============================*/
.modal-area .modal-dialog {
    max-width: 64%;
    margin: 8% auto 0;
}
.modal-area .modal {
    background: rgba(0, 0, 0, 0.6);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    border-radius: 0;
    overflow: hidden;
}
.modal-content .col-lg-5 {
    width: 46%;
}
.modal-content .col-lg-7 {
    width: 54%;
}
.modal-area .popup-content img {
	width: 78px;
	margin-bottom: 46px;
}
.modal-area .popup-content p {
	color: #121212;
}
.modal-area .popup-content .common-btn {
	margin-top: 30px;
}
.modal-area .popup-content .common-btn:hover {
	background-color: #0A477A;
	border-color: #0A477A;
	color: #fff;
}
.modal-area .popup-content {
    padding: 50px 70px;
    background-color: #fff;
	position: relative;
}
.modal-area .popup-content::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../images/popup-patern.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.modal-area .popup-content .d-table-cell {
	position: relative;
	z-index: 1;
}
.pop-up-image {
	height: 100%;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
/*========================================diensten-dtl================================================*/
/****back-btn****/
.back-btn {
	padding-top: 60px;
	z-index: 1;
}
/****diensten-dtl-top****/
.diensten-dtl-top {
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding-top: 30px;
}
.dtl-top-part-desc h2 {
	color: #fff;
	line-height: 44px;
	margin-bottom: 10px;
}
.dtl-top-part-desc p {
	margin-bottom: 15px;
}
.dtl-top-part-desc h4 {
	margin-bottom: 10px;
}
.dtl-top-part-desc h6 {
	font-family: 'lama_sanssemibold';
	margin-bottom: 15px;
}
.dtl-top-part-desc li {
	margin-bottom: 10px;
	padding-left: 30px;
}
.dtl-top-part-desc li:last-child {
	margin-bottom: 0;
}
.dtl-top-part-img {
    margin-top: 36px;
}
.dtl-top-part-right .dtl-top-part-img {
    margin-top: 0;
    margin-bottom: 40px;
}
.dtl-top-part-left {
    padding-right: 45px;
	padding-top: 35px;
}
.dtl-top-part-right {
    padding-left: 45px;
}
.dtl-top-part .col-lg-6:nth-child(odd) {
    width: 52%;
}
.dtl-top-part .col-lg-6:nth-child(even) {
    width: 48%;
}
.diensten-dtl-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	pointer-events: none;
}



/****diensten-dtl-mid****/
.diensten-dtl-mid {
	padding: 48px 0;
	position: relative;
}
.diensten-dtl-mid::after {
	content: "";
	height: calc(100% + 50vw);
	width: 100%;
	left: 0;
	bottom: 0;
	position: absolute;
	background:  linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 100%);
}
.diensten-dtl-mid .container {
	position: relative;
	z-index: 1;
}
.diensten-dtl-mid table {
	width: 100%;
}
.diensten-dtl-mid tr {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.diensten-dtl-mid td {
    width: 32.1%;
    padding: 90px 60px 60px;
    position: relative;
	background-color:#2e2d2d;
	transition: all 0.5s;
	-webkit-transition: all 0.5s
}
.diensten-dtl-mid td::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/diensten-dtl-mid-bg.svg);
	transition: all 0.5s;
	-webkit-transition: all 0.5s
}
.diensten-dtl-mid td h4 {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-bottom: 8px;
}
.diensten-dtl-mid td p {
	letter-spacing: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	margin-bottom: 0;
}
.diensten-dtl-mid td h6 {
    font-size: 1.4rem;
    font-family: 'LamaSans-Medium';
    line-height: normal;
    letter-spacing: normal;
    background-color:#222222;
    padding: 18px 23px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.diensten-dtl-mid td:hover {
	background-color:#0A477A;
}
/* .diensten-dtl-mid td:hover::after {
	background-image: url(../images/diensten-dtl-mid-bg-hover.svg);
} */
.diensten-dtl-mid td:hover h4,
.diensten-dtl-mid td:hover p {
	color:#fff;
}
/****form-sec****/
.form-sec {
	background-color: #EBECEE;
	padding-top: 100px;
	position: relative; 
}
.form-sec::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20%;
    width: 20%;
    background-color: #222;
    z-index: 0;
}
.form-background {
	background-color: #fff;
	position: relative;
}
.form-sec .container {
	position: relative;
	z-index: 1;
}
.form-wrap {
	background-color: #fff;
	padding: 40px 75px;
}
.form-wrap-bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	pointer-events: none;
}
.form-wrap-bg img {
	height: 100%;
	object-fit: cover;
}
.form-wrap h6 {
	color: #000;
	font-family: 'lama_sanssemibold';
	letter-spacing: normal;
	margin: 15px 0 36px;
}
.form-wrap h2 {
	color: #000;
	line-height: 47.52px;
	font-family: 'Alexandria-Bold';
}
.form-main-area {
    position: relative;
    z-index: 1;
}
.form-wrap h2,
.form-wrap h6 {
	position: relative;
	z-index: 1;
}
.form-main-area .form-group {
    margin-bottom: 18px;
}
.form-main-area .form-styl {
    border: none;
    color: rgba(136, 136, 136, 0.76);
	padding: 12px 30px;
    resize: none;
	font-family: 'LamaSans-Medium';
	line-height: 28px;
    font-size: 1.4rem;
    background: #EBECEE;
	border-radius: 0;
}
.form-main-area .form-styl:focus::placeholder{
    color: #000;
}
.form-main-area .form-styl::placeholder{
	color: rgba(136, 136, 136, 0.76);
}
.form-main-area .form-styl:focus {
    color: #000;
    box-shadow: none;
    background-color: transparent;
	background-color: #EBECEE;
}
.form-left .form-group textarea.form-control {
	min-height: 150px;
    border-radius: 0;
}
.form-main-area .form-btn {
    margin-top: 32px;
}
.form-main-area .form-btn .common-btn {
	text-transform: uppercase;
}
.form-right {
	background-color: #0A477A;
	height: 100%;
	position: relative;
	z-index: 1;
}
.form-left {
	max-width: 702px;
	width: 100%;
}
.form-sec .col-lg-4 {
	width: 30%;
}
.form-sec .col-lg-8 {
	width: 70%;
}
.each-form-right-top h6 {
	color: #fff;
	letter-spacing: normal;
	font-family: 'Alexandria-SemiBold';
	margin-bottom: 6px;
}
.each-form-right-top a {
	color:#FFFFFFBF;
}
.each-form-right-top td {
	color: #FFFFFFBF;
}
.each-form-right-top td:nth-child(odd) {
    padding-right: 10px;
}
.each-form-right-top a:hover {
	color: #fff;
}
.form-right-top {
    padding: 55px 60px;
    row-gap: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 260px);
	background-color:#2F2F2F;
}
.form-right-btm {
    height: 260px;
}
.form-right-btm img {
	height: 100%;
	object-fit: cover;
}
.no-car-form {
	padding-bottom: 100px;
}
/****dtl-slider-sec****/
.dtl-slider-sec {
	padding: 115px 0 105px;
	position: relative;
}
.dtl-slider-title {
	margin-bottom: 81px;
}
.dtl-slider-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 40%;
    height: 60%;
    width: 54%;
    background-color:#EBECEE;
	z-index: -1;
}
.dtl-slider .each-service {
	height: auto;
}
.dtl-slider .common-arrow {
    width: 65px;
    height: 65px;
}
.dtl-slider .swiper-button-next {
    right: -34px;
}
.dtl-slider .swiper-button-prev {
    left: -34px;
}
/*========================================over-ons================================================*/
/****inner-banner-sec****/
.inner-banner-sec .each-banner {
	height: 500px;
}
.inner-banner-sec .banner-wp {
    margin-top: 50px;
}
/****over-ons-top****/
.over-ons-top {
	background-color: #EBECEE;
	position: relative;
}
.over-ons-top-info {
	max-width: 556px;
	width: 100%;
}
.over-ons-top-info p {
	color: #222;
	margin-top: 20px;
}
.over-ons-top-info h4 + p{
	margin-top: 5px;
}
.over-ons-top-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
}
.over-ons-top-img img {
    height: 100%;
    object-fit: cover;
}
.over-ons-top-info {
	padding: 60px 0;
}
/****over-ons-mid****/
.over-ons-mid {
	position: relative;
}
.over-ons-mid-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 31%;
    height: 100%;
    z-index: 1;
}
.over-ons-mid-img img {
    height: 100%;
    object-fit: cover;
}
.over-ons-mid-title h2 {
    font-size: 7rem;
    color: #fff;
    line-height: 80px;
    letter-spacing: 0.7px;
    writing-mode: sideways-lr;
    z-index: 1;
    position: relative;
}
.over-ons-mid-title {
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
.over-ons-mid-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/over-ons-mid-bg.svg);
    height: 100%;
    width: 100vw;
    background-color:#2F2F2F;
}
.over-ons-mid-title img {
    position: absolute;
    left: -5%;
    top: 89%;
    background: #222;
    transform: translateY(-50%);
}
.over-ons-mid .col-lg-2 {
    width: 16%;
}
.over-ons-mid .col-lg-3 {
	width: 31%;
}
.over-ons-mid .col-lg-7 {
	width: 57%;
}
.over-ons-mid .about-text {
    max-width: 100%;
    padding: 85px 150px;
	background-color: #222;
}
.over-ons-mid .acc-block {
	margin-bottom: 0;
}
.over-ons-mid .counter {
    position: initial;
    max-width: 57%;
    margin-left: 16%;
}
/****over-ons-man-sec****/
.over-ons-man-sec {
	padding: 150px 0 0;
	background-color: #EBECEE;
	position: relative;
}
.over-ons-man-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color:#222;
    height: 65%;
    width: 47%;
}
.over-ons-man-title {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}
.each-over-ons-man-info p {
	color: #fff;
	margin-top: 5px;
	line-height: 17.6px;
	margin-bottom: 0;
}
.each-over-ons-man-info {
	background-color:#0A477A;
	padding: 13px 25px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-over-ons-man-info h4 {
	font-family: 'Alexandria-SemiBold';
	color: #fff;
	line-height: 22px;
}
.each-over-ons-man-block:hover .each-over-ons-man-info {
	background-color:#121212;
}
.each-over-ons-man-block:hover h4,
.each-over-ons-man-block:hover p {
	color: #fff;
}
/* .over-ons-man-slider .swiper-button-next {
	right: -50px;
}
.over-ons-man-slider .swiper-button-prev {
	left: -50px;
} */
/* .over-ons-man-slider .common-arrow {
	top: 42%;
} */
/****over-ons-review****/
.over-ons-review {
	padding-top: 60px;
}
/*========================================werkplaats-dtl================================================*/
/****diensten-dtl-top****/
.dtl-top-part-info li {
	margin-bottom: 12px;
}
.dtl-top-part-info h6 {
	font-family: 'lama_sanssemibold';
	margin-bottom: 10px;
}
/*========================================contact================================================*/
/****contact-form-sec****/
.contact-form-sec {
	background-color:#222;
	overflow: hidden;
}
.contact-form-sec::after {
    left: 0;
    top: 0;
    height: 70%;
    width: 53%;
    background-color:#302f2f;
	background-image: url(../images/contact-form-bg.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.webshop-form.contact-form-sec::after
{
	background-color:#2F2F2F !important;
	opacity: 0;
}
.webshop-form .form-right-top{
	background-color:#2F2F2F;
}
.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
	z-index: 1;
}
/****map-sec****/
.map-sec {
	padding: 20px 0 107px;
}
.map {
	height: 516px;
}
/*========================================vacature-dtl================================================*/
/****diensten-dtl-mid****/
.diensten-dtl-mid h3 {
	line-height: 32px;
	font-family: 'Alexandria-Regular';
	margin-bottom: 10px;
}
.vacature-dtl-mid td {
	width: 49%;
	padding: 70px 60px 30px;
}
.diensten-dtl-mid td li {
	margin-bottom: 10px;
}
/* .diensten-dtl-mid td:hover li:after {
	background-image: url(../images/list-star-black.svg);
} */
.diensten-dtl-mid td:hover h3 {
	color:#fff;
}
.diensten-dtl-mid td:hover li {
	color: #fff;
}
/*========================================aanbod-dtl================================================*/
/****dtl-back-btn****/
.dtl-back-btn-part {
	position: relative;
	top: 56px;
}
.dtl-back-btn-part .common-btn {
	position: relative;
	z-index: 2;
	border-color: #fff;
	color: #fff;
}
.dtl-back-btn-part .common-btn:hover {
	background-color: #0A477A;
	border-color:#0A477A;
}
/****aanbod-dtl-info-block****/
.aanbod-dtl-info-block {
    position: relative;
    top: -64px;
}
.info-social ul {
	display: flex;
	column-gap: 22px;
	align-items: center;
}
.info-social li {
	padding-left: 0;
	color: #222;
	line-height: 17.6px;
	letter-spacing: normal;
}
.info-social li::after {
	display: none;
}
.info-social li a {
    border-radius: 100%;
    height: 41px;
    width: 41px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-social li img {
    width: 30px;
}
.share-social-media-button .a2a_dd svg {
	margin-right: 0 !important;
}
.aanbod-dtl-info-title h2 {
    color: #fff;
    line-height: 48px;
    margin-bottom: 5px;
	height: 1lh;
	overflow: hidden;
}
.aanbod-dtl-info-title h4 {
    color: rgba(255, 255, 255, 0.7);
    line-height: normal;
	font-family: 'LamaSans-Regular';
	height: 1lh;
	overflow: hidden;
}
.aanbod-dtl-info-block-part {
    display: flex;
    align-items: center;
    column-gap: 19%;
}
/****dtl-top-sec****/
.dtl-top-sec {
	padding-top: 60px;
	position: relative;
}
.dtl-top-sec::after {
    content: '';
    position: absolute;
    left: 0;
    top: -15%;
    width: 56%;
    height: 71%;
    background-color:#2F2F2F;
}
.dtl-top-sec .container {
	position: relative;
	z-index: 1;
}
.aanbod-top-slider .common-arrow {
	height: 65px;
	width: 65px;
}
.aanbod-top-slider .common-arrow:hover img {
	filter: invert(1);
}
.aanbod-top-slider .swiper-button-next {
	right: 30px;
}
.aanbod-top-slider .swiper-button-prev {
	left: 30px;
}
.dtl-top-sec .col-lg-3 {
    width: 18%;
}
.dtl-top-sec .col-lg-9 {
    width: 82%;
}
.dtl-top-sec .col-3 {
    width: 20%;
}
.dtl-top-sec .col-9 {
    width: 80%;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide {
    height: 32.33%;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide img { 
	height: 100%;
	object-fit: cover;
}
.gallery-thumbs .swiper-slide .dtl-car-slide {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.gallery-thumbs {
    position: relative;
    row-gap: 17px;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.gallery-thumbs-wrapper {
    height: 667px;
}
/* .gallery-thumbs {
    height: 100%;
    object-fit: cover;
} */
.dtl-top-content {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dtl-top-content ul {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.dtl-top-content li {
	/*padding-left: 0;
	margin-bottom: 25px;
	padding-bottom: 29px;*/
	padding-left: 0;
	margin-bottom: 10px;
    padding-bottom: 12px;
}
.dtl-top-content li h6 {
	font-size: 1.4rem;
	line-height: normal;
	letter-spacing: normal;
	font-family: 'LamaSans-Medium';
	margin-bottom: 7px;
}
.dtl-top-content li h3 {
    line-height: normal;
    letter-spacing: normal;
	font-family: 'LamaSans-Medium';
}
.dtl-top-content li::after {
	display: none;
}
.dtl-top-content li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 1px;
}
.dtl-top-content li:last-child::before {
	display: none;
}
.dtl-top-content li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}
.dtl-btm-left {
	display: flex;
	column-gap: 20px;
}
.dtl-btm-part {
	margin-top: 15px;
}
.each-dtl-btm-right {
	position: relative;
	z-index: 1;
}
.each-dtl-btm-right h2 {
	font-size: 3.4rem;
	letter-spacing: normal;
	color: #fff;
	font-family: 'LamaSans-Regular';
	margin-bottom: 8px;
}
.each-dtl-btm-right h4 {
    color: rgba(255, 255, 255, 0.7);
	font-family: 'LamaSans-Regular';
	line-height: normal;
}
.dtl-btm-right {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    align-items: center;
	height: 100%;
	background-color:#222;
	padding: 10px 30px;
	position: relative;
}
.price-tag img {
	width: 170px;
}
.price-tag {
    position: absolute;
    top: 0;
    right: 20px;
}
.dtl-btm-mobile-right {
	display: none;
}
.dtl-top-mobile-content {
	display: none;
}
.each-dtl-btm-left {
    width: 50%;
}
.info-social {
    min-width: 150px;
	position: relative;
    /* top: -33px; */
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 68px 0;
	position: relative;
	overflow: hidden;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 20px;
    margin-bottom: 30px;
    border: 0;
    row-gap: 20px;
}
.tab-btn {
    margin-bottom: 30px;
}
.tab-btn-right {
	margin-bottom: 30px;
}
/****tab-part****/
ul.tabs li {
	line-height: normal;
	margin: 0;
	word-break: break-word;
	text-transform: none;
	cursor: pointer;
	max-width: max-content;
	display: inline-block;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 0;
}
ul.tabs li::after{
	display: none;
}
ul.tabs li.common-btn.active{
	background-color:#0A477A;
    border-color:#0A477A;
    color: #fff;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
/****dtl-tab-content****/
.kenmerken-tab {
	background-color:#2F2F2F;
	padding: 31px 50px 55px;
	overflow: hidden;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    overflow: hidden;
}
.kenmerken-tab li {
    line-height: 30px;
    width: 33.33%;
    padding: 20px 36px 24px 94px;
    position: relative;
    display: flex;
	flex-wrap: wrap;
    column-gap: 10px;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    color: #fff;
	word-break: break-word;
    padding-right: 20px;
}
.kenmerken-tab li::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 200vw;
    left: -100vw;
    bottom: 0;
    top: auto;
    background-color: rgba(255, 255, 255, 0.15);
	background-image: none;
}
.kenmerken-tab li span,
.kenmerken-tab li strong {
	width: 48%;
}
.kenmerken-tab li span {
	color: rgba(255, 255, 255, 0.7);
}
.tab-btm-btn button {
	background-color: transparent;
    border: 0;
	color:#FFFFFF;
	font-size: 1.6rem;
	font-family: 'LamaSans-Medium';
}
.tab-btm-btn {
	margin-top: 23px;
}
.kenmerken-tab li strong {
	font-weight: normal;
}
.bullet-panel h4 {
    border-bottom: 1px solid #0A477A;
    padding-bottom: 10px;
	margin-bottom: 10px;
	color: #fff;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin: 24px 0 20px;
}
.dtl-tab-sec .bullet-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 16px;
    position: relative;
    color: #fff;
	margin-bottom: 10px;
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 11px;
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    width: 11px;
    height: 11px;
    background-image: url(../images/list-star.svg);
    background-repeat: no-repeat;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A477A;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #0A477A;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    color: #fff;
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    margin-bottom: 0;
	color: #222;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
	color: #fff;
    text-transform: none;
    font-size: 2.2rem;
}
/*****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: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
	border-radius: 20px;
    background-color:#2F2F2F;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
	border: 1px solid #0A477A;
	box-shadow: 0px 0px 25px 0px rgba(rgba(221, 240, 123, 0.7));
	-webkit-box-shadow: 0px 0px 25px 0px rgba(rgba(221, 240, 123, 0.7));
	overflow: hidden;
}
.kenmarken-popup-close {
	background-color:#2F2F2F;
    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 #0A477A;
}
.kenmarken-popup-close img {
	width: 25px;
	filter: brightness(0) invert(1);
}
.kenmarken-popup-content {
	overflow-y: auto;
	overflow-x: clip;
	height: calc(100% - 116px);
	padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar  {
	background-color: #5B5A5E;
	width: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.kenmerken-popup-model {
	padding-bottom: 30px;
	padding-right: 40px;
}
.kenmerken-popup-model h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Alexandria-SemiBold';
    font-size: 2.8rem;
    line-height: 56px;
    letter-spacing: normal;
}
.kenmerken-popup-model h6 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-family: 'Montserrat-Regular';
	color: rgba(247, 240, 236, 0.5);
	line-height: normal;
	letter-spacing: normal;
}
.kenmarken-popup-content h4 {
    margin-bottom: 10px;
    font-family: 'Alexandria-SemiBold';
    font-size: 2.4rem;
    line-height: 56px;
}
.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;
    line-height: 30px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.kenmarken-popup-content li::after {
    display: none;
}
.tab-social {
    display: flex;
    column-gap: 20px;
    justify-content: end;
    flex-wrap: wrap;
	row-gap: 20px;
	margin-bottom: 30px;
}
.each-tab-social img {
    margin-right: 10px;
    width: 21px;
    margin-top: -3px;
}
.each-tab-social .common-btn {
	display: block;
}
/****related-car-sec****/
.related-car-sec {
	background-color: #F7F8F9;
	padding: 106px 0 96px;
	position: relative;
}
.related-car-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48%;
    background-color:#222;
}
.related-car-sec::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46%;
    width: 100%;
    background-color: #171E1A;
}
.related-car-slider .each-product-text {
    opacity: 1;
    margin: 0;
    max-width: 100%;
	padding: 20px 20px;
}
.related-car-slider .each-product-text::after {
	background-image: linear-gradient(rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(rgba(47, 47, 47, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 47, 47, 0.05), transparent 1px);
    opacity: 0.6;
    background-size: 85px 85px, 66px 66px;
}
.related-car-slider .product-arrow {
	border-color: #282828;
}
.related-car-slider .product-arrow img {
    filter: invert(1);
}
.related-car-slider .each-product:hover .product-arrow {
	border-color: #0A477A;
}
.related-car-slider .each-product:hover .product-arrow img {
	filter: invert(0) brightness(10);
}
.related-car-slider .product-model h4 {
    color: #282828;
	font-family: 'Alexandria-Regular';
    margin-bottom: 10px;
	letter-spacing: 0.24px;
	font-size: 2.4rem;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-car-slider .product-model h6 {
	color:rgba(47, 47, 47, 0.70);
	letter-spacing: normal;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-car-slider .product-info td {
    font-size: 1.4rem;
    line-height: 20px;
    display: inline-flex;
	color: #282828;
	width: auto;
}
.related-car-slider .product-price h3 {
    line-height: 28px;
    font-size: 2rem;
	color: #282828;
}
.related-car-slider .product-price h4 {
    line-height: 24px;
    font-size: 1.6rem;
	color:rgba(47, 47, 47, 0.70);
}
.related-car-slider .product-model {
    margin-bottom: 30px;
}
.related-car-slider .product-info tr {
    row-gap: 15px;
	column-gap: 10px;
}
.related-car-sec .product-heading {
    position: relative;
    z-index: 1;
}
.related-car-slider .common-arrow {
	height: 65px;
	width: 65px;
}
.related-car-slider .swiper-button-next {
	right: 6.5%;
}
.related-car-slider .swiper-button-prev {
	left: 6.5%;
}
.related-product-btn {
    position: relative;
    z-index: 1;
	display: none;
	text-align: center;
	margin-top: 34px;
}
.dtl-top-content li.dtl-price-box {
	/*padding: 25px 18px;
	position: relative;
	background-color: #2F2F2F;*/
	padding: 13px;
    position: relative;
    background-color: #2F2F2F;
    height: 57px;
    display: flex;
    align-items: center;
}
.dtl-top-content li.dtl-price-box h3 {
	font-family: 'lama_sanssemibold';
	font-size: 3rem;
}
/***privacy***/
.privacy_section {
	padding: 60px 0;
}
.privacy_section h2 {
	color: #fff;
}
/*******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 45px;
	color: #000;
	background-size: contain;
}
.star_icon{
	margin-bottom: 30px;
}
.star_icon h4{
	padding-bottom: 10px;
	text-transform: uppercase;
	padding-top: 15px;
	margin-bottom: 15px;
	/* color: #1c1c1c;*/
	border-bottom: 1px solid #181716;
	padding-bottom: 10px;
}
.star_icon p img{
	width: 15px;
	margin-top: -3px;
	margin-right: 5px;
}
.star_icon p{
	padding-bottom: 6px;
	word-break: break-word;
}
.photo_contnt li img{
	width: 15px;
	margin-left: 5px;
}
.star_icon h3 {
	margin: 40px 0 30px;
}
.aanbod-detail-tab-sec .tab-content .star_icon p {
	margin: 0;
}
.bullet-panel h3 {
	margin-bottom: 30px;
}
.cursor{
	cursor:pointer;
}
.aanbod-loader {
	width: 45px;
	height: 40px;
	background: linear-gradient(#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: 30px;
	align-items: center;
	color: #fff;
}
.carpass-img {
	width: 115px;
}
.radio_filter .form-check-input {
	display: none;
}

/******************* Addition css *************************/
.print_pdf_cls {
    width: 25px;
   
}
.h-logo-wrap{
	display: flex;
	align-items: center;
}
.header-bovag-logo img{
	width: 120px;
}
.header-bovag-logo {
	padding-left: 22px;
	margin-left: 22px;
	position: relative;
}
.header-bovag-logo::after {
	content: "";
	height: 60%;
	width: 1px;
	background-color: #fff;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	position: absolute;
}
.footer-bovag img{
	width: 100px;
}
.rdw-logo img{
	width: 100px;
}
.webshop-iframe{
	background-color: #fff;
}
.dtl-slider-sec h2{
	color: #000;
}
.product-heading h2{
	color: #2F2F2F;
}
.service-sec .common-btn{
	background-color: #fff;
	border: 1px solid #0A477A;
	color: #0A477A;
}
.service-sec .common-btn:hover{
	background-color: #0A477A;
	border: 1px solid #0A477A;
	color: #fff;
}
.over-ons-top h2{
	color:#2D2D2D;
}
.over-ons-top h4{
	color:#2D2D2D;
}
.over-ons-man-sec h2{
	color: #2D2D2D;
}

.contact-form-sec .common-btn{
	background-color: transparent;
	border: 1px solid #0A477A;
	color: #0A477A;
}
.contact-form-sec .common-btn:hover{
	background-color:#0A477A;
	border: 1px solid #0A477A;
	color: #fff;
}
.contact-form-sec .form-right-top {
	background-color: #0A477A;
}
.product-sec .each-product-text{
	background-color: #2F2F2F;
}
.aanbod-product-sec .product-price h3{
	color: #121212;
	font-family: 'Alexandria-SemiBold';
	margin-bottom: 0;
}

.bhijjK, .dEQash {
	background-color: #fff !important;
}
.lfCQiA {
	display: none;
}
.no-review-insta::after {
	background-color: transparent;
}
.webshop-top-sec {
	padding: 70px 0;
	text-align: center;
}
.webshop-top-sec h2 {
	margin-bottom: 13px;
}
.webshop-info-sec {
	padding: 100px 0 70px;
}
.webshop-form {
	padding-bottom: 70px;
}
.video-js {
	width: 100% !important;
}

.dtl-top-content li.dtl-price-box::after 
{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 62px;
    background-image: url(../images/small-price-icon.svg);
    display: block;
    opacity: 1;
}

.info-social .pdf-printer 
{
    width: 250.335px !important;
    height: 40px;
    padding: 12px 15px;
    border-radius: 100px;
    font-size: 14px;
    gap: 8px;
}
.info-social .pdf-printer:hover {
	color: #fff !important;
}
.info-social li img 
{
    width: 17px;
}
.over-ons-man-slider {
	z-index: 1;
}
.over-ons-man-slider .col-lg-4 {
	width: 38%;
}
.over-ons-man-slider .col-lg-3 {
	width: 24%;
}
.man-img-desc {
	position: relative;
	height: 100%;
}
.man-img-desc img {
	height: 100%;
	object-fit: cover;
}
.man-desc {
    position: absolute;
    bottom: 0;
	left: 0;
	width: 100%;
	background-color: #0A477A;
	padding: 12px;
}
.man-desc h4 {
	font-family: 'Alexandria-SemiBold';
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #F7F8F9;
}
.man-desc p {
	color: #F7F8F9;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.man-desc p strong {
	font-weight: normal;
}
.gal-img {
	height: 100%;
}
.gal-img img {
	height: 100%;
	object-fit: cover;
}

.dtl-slider .common-arrow:hover img{
	filter:invert(1);
}
.dtl-btm-part-info,
.dtl-top-part-img{
	max-width: 640px;
	margin-left: auto;
	margin-right: 0;
}
.dtl-btm-part-img{
	max-width: 690px;
}
.dtl-top-part-info{

}
.dtl-top-part-info{
	padding-bottom: 45px;
}
.dtl-btm-part .row{
	align-items: end;
	margin-top: -40px;
}
.product-sec .common-arrow:hover img{
	filter: invert(2);
}
.webshop-info-sec h2{
	margin-bottom: 20px;
}