body {
	padding: 0px;
	margin: 0px;
	color: #fff;
    font-family: 'Onest-Regular';
    font-size: 1.6rem;
	background-color: #fff;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/*==============================index==============================*/
/****header****/
.header-area {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-wrap {
	padding: 0 10px;
}
.header-active {
    background-color: #1F221F;
}
.header-active .header-right-block {
    background-color: #fff;
}
.header-active .menu-bar div, 
.header-active .menu-bar::after, 
.header-active .menu-bar::before {
    background-color: #1F221F;
}
.header-active .menu-btn {
    color: #1F221F;
}
.header-active .header-btn .common-btn:hover {
    border-color: #E86716;
}
.header-logo img {
    width: 209px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
	column-gap: 25px;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 25px;
	justify-content: center;
}
.header-nav li {
    padding: 0;
    color: #fff;
    font-family: 'Onest-Medium';
    font-size: 1.8rem;
}
.header-nav li a {
    color: #fff;
}
.header-nav li a:hover {
    color: #E86716;
}
.header-nav li::after {
    display: none;
}
.header-call img {
	width: 40px;
	margin-right: 12px;
}
.header-call a {
	font-family: 'Onest-Medium';
	color: #fff;
	font-size: 1.8rem;
}
.header-call a:hover {
	color: #E86716;
}
.header-call a:hover img {
	filter: brightness(0) saturate(100%) invert(43%) sepia(83%) saturate(630%) hue-rotate(344deg) brightness(96%) contrast(101%);
	-webkit-filter: brightness(0) saturate(100%) invert(43%) sepia(83%) saturate(630%) hue-rotate(344deg) brightness(96%) contrast(101%);
}
.header-right-block {
    display: flex;
    align-items: center;
    background-color: #1F221F;
    border-radius: 35px;
    overflow: hidden;
    padding: 10px 16px 10px 10px;
}
.menu-btn {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.menu-bar {
    position: relative;
    max-width: 30px;
    width: 100%;
    margin-left: auto;
    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: 4px 0 4px auto;
    width: 25px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn.active  .menu-bar div {
    transform: scale(0);
}
.menu-btn.active {
  border: 1px solid #E86716;
  background-color: #E86716;
  padding: 7px 13px 7px 7px;
  border-radius: 100px;
  margin-left: 0;
  color: #fff;
}
.menu-btn.active .menu-bar:before {
    transform: translateY(7px) rotate(135deg);
	width: 18px;
    background-color: #fff;
}
.menu-btn.active .menu-bar:after {
    transform: translateY(-5px) rotate(-135deg);
	width: 18px;
    background-color: #fff;
}
/**mega-menu**/
.mega-menu {
    height: 100vh;
    width: 450px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1F221F;
    padding: 130px 60px 50px;
    clip-path: inset(0 0 0 100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-active {
    clip-path: inset(0 0 0 0);
}
.mega-menu li {
    padding: 0;
    margin-bottom: 30px;
    font-size: 2.4rem;
}
.mega-menu li::after {
    display: none;
}
.mega-menu li:last-child {
    margin-bottom: 0;
}
.mega-menu 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
}
.menu-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(31, 34, 31, 0.55);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mega-menu-wrap {
    height: 100%;
    overflow-y: auto;
}
.mega-menu-wrap::-webkit-scrollbar {
    width: 10px;
    background-color: #1A1A1A;
}
.mega-menu-wrap::-webkit-scrollbar-thumb {
    background-color: #252525;
}
/****fix-wp****/
.fix-wp a {
    position: fixed;
    right: 30px;
    bottom: 50px;
    width: 88px;
    height: 88px;
    border-radius: 100px;
    background-color: #25D366;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 41px;
}
/****banner-sec****/
.banner-sec {
	position: relative;
}
.banner-content {
	position: absolute;
	bottom: 11%;
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-video,.each-banner  {
	height: 921px;
	overflow: hidden;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.banner-content .white-btn {
	margin-left: 8px;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
.banner-content h1 {
    margin-bottom: 30px;
}
/****product-sec****/
.product-sec {
	padding: 120px 0 130px;
	background-color: #FAF6ED;
	position: relative;
}
.product-title {
	margin-bottom: 100px;
}
.product-title h2 {
	line-height: 58px;
	margin-top: 10px;
}
.each-product {
	padding: 20px 15px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	border-radius: 5px;
	overflow: hidden;
}
.each-product-info h4 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-product-info h4 strong {
	font-family: 'Onest-SemiBold';
}
.each-product-info h6 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #1F221F;
	font-size: 1.6rem;
	line-height: normal;
	margin-top: 6px;
    height: 1lh;
}
.each-product-info table {
	margin: 24px 0;
	width: 100%;
}
.each-product-info tr {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.each-product-info td {
	color: #787A77;
	border-radius: 50px;
	border: 1px solid rgba(31, 34, 31, 0.60);
	overflow: hidden;
	padding: 3px 12px;
	font-size: 1.6rem;
}
.each-product-img {
	border-radius: 5px;
	overflow: hidden;
}
.each-product-img img{
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-info {
	padding: 20px 20px;
}
.each-product:hover {
	background-color: #fff;
}
.each-product:hover img {
	transform: scale(1.1);
}
.product-price h4 {
    font-family: 'Onest-Regular';
}
.product-slider .common-arrow {
	top: 40%;
}
.product-slider .swiper-button-next {
	right: -10px;
}
.product-slider .swiper-button-prev {
	left: -10px;
}
.product-btn {
  margin-top: 56px;
}
.common-pagination {
    top: -60px;
	bottom: auto !important;
}
.common-pagination .swiper-pagination-bullet {
    background-color: #D9D9D9;
    opacity: 1;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-pagination .swiper-pagination-bullet-active {
    background-color: #E86716;
    width: 51px;
    border-radius: 100px;
}
/****service-sec****/
.service-sec {
	background-color: #1F221F;
	padding: 80px 0 90px;
}
.service-left h2 {
	margin: 8px 0 25px;
}
.service-left p {
	margin-bottom: 56px;
	line-height: normal;
}
.service-left .white-btn {
	margin-left: 10px;
}
.each-service-title h4 {
	margin-top: 15px;
    margin-bottom: 15px;
	position: relative;
	color: #fff;
	display: inline-block;
	padding-right: 30px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-title h4::after {
    position: absolute;
    content: '';
    right: 0;
    top: 8px;
    background-image: url(../images/service-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 15px;
    width: 15px;
    background-size: 15px;
    filter: brightness(0) invert(1);
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-title {
	position: relative;
}
.each-service-title::after {
	position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
}
.each-service-img {
	border-radius: 5px;
	overflow: hidden;
    height: 411px;
}
.each-service-img img{
	height: 100%;
    object-fit: cover;
}
.each-service:hover img {
	transform: scale(1.1);
}
.each-service-img img {
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service:hover h4 {
	color: #E86716;
}
.each-service:hover .each-service-title h4::after {
	filter: brightness(1);
}
.service-right .col-lg-6 {
	padding: 0 7.5px;
}
.service-right .row {
	row-gap: 40px;
	margin: 0 -7.5px;
}
.service-right {
    padding-left: 20px;
}
.service-left.make_sticky {
    position: sticky;
    top: 120px;
    overflow-y: auto;
    overflow-x: hidden;
}
.service-slider {
	display: none;
}
.service-slider .each-service-title::after {
	bottom: 0;
}
.service-slider .each-service-title h4  {
	margin-bottom: 15px;
}
/****about-sec****/
.about-sec {
	padding: 120px 0 100px;
}
.about-title {
	margin-bottom: 115px;
}
.about-title h4 {
  margin-bottom: 10px;
}
.about-title p {
    color: #1F221F;
    line-height: 21px;
    letter-spacing: 0.28px;
    max-width: 560px;
    margin: 10px auto 0;
    display: none;
    font-family: 'Inter-Regular';
}
.about-img {
	border-radius: 5px;
	overflow: hidden;
}
/****home-btm-sec****/
.home-btm-sec {
	padding-bottom: 142px;
}
.each-home-btm-block h5 {
	color: #E86716;
	font-family: 'Onest-Black';
	font-size: 2.4rem;
	line-height: normal;
}
.each-home-btm-block h4 {
    font-family: 'Onest-Medium';
    margin: 10px 0 15px;
}
.each-home-btm-block p {
	color: #1F221F;
	margin-bottom: 0;
}
.home-btm-block {
    display: flex;
    align-items: start;
    column-gap: 10px;
}
.each-home-btm-block {
    position: relative;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.each-home-btm-block::after {
	position: absolute;
	content: '';
	height: 100%;
	width: 2px;
	background-color: rgba(31, 34, 31, 0.30);
	right: 0;
	top: 0;
}
.each-home-btm-block:last-child::after {
	display: none;
}
.each-home-btm-block:first-child {
	padding-left: 0;
}
.each-home-btm-block:last-child {
	padding-right: 0;
}
/****review-sec****/
.review-sec-bg {
    padding: 50px 0 95px;
	overflow-x: hidden;
}
.review-sec h2 {
	text-align: center;
	margin-bottom: 55px;
}
/****footer****/
.footer-area {
	background-color: #1F221F;
	padding: 70px 0 25px;
    overflow-x: hidden;
}
.footer-top-left-info a {
	position: relative;
	font-family: 'Aleo-Bold';
	font-size: 2.4rem;
	color: #fff;
	line-height: 48px;
	padding-right: 50px;
}
.footer-top-left-info a::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background-image: url(../images/service-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 27px;
    width: 27px;
    background-size: 27px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-top-left-info a:hover {
	color: #E86716;
}
.footer-top-left-info a:hover::after {
    filter: brightness(1);
}
.footer-logo img {
	width: 260px;
}
.footer-mobile-logo {
    display: none;
}
.footer-top-right-info {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
}
.each-footer-contact table {
	width: 100%;
}
.each-footer-contact tr {
	display: flex;
}
.each-footer-contact td:nth-child(odd) {
    padding-right: 10px;
}
.each-footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
	font-family: 'Onest-Medium';
}
.each-footer-contact a {
	line-height: 24px;
}
.footer-top-left {
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  row-gap: 110px;
}
.footer-top-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    height: calc(100% + 20px);
    width: 2px;
}
.footer-nav ul {
	display: flex;
	align-items: center;
	column-gap: 24px;
}
.footer-nav li {
	padding-left: 0;
}
.footer-nav li::after {
	display: none;
}
.footer-top-right {
    padding-left: 155px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    row-gap: 100px;
}
.footer-nav li {
	font-size: 1.8rem;
	font-family: 'Onest-Medium';
	line-height: normal;
	color: #fff;
}
.footer-nav li a:hover {
	color: #E86716;
}
.footer-btm {
  position: relative;
  margin-top: 58px;
}
.footer-btm::after {
    content: "";
    height: 1px;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: absolute;
    background-color: #fff;
    top: 0;
}
.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}
.footer-social li {
	padding-left: 0;
}
.footer-social li::after {
	display: none;
}
.footer-social li a {
    border-radius: 100%;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social li a:hover {
    background-color: #E86716;
    border-color: #E86716;
}
.footer-credit a {
    font-size: 1.8rem;
    font-family: 'Onest-Medium';
}
.footer-credit,
.footer-social {
  margin-top: 22px;
}
/*==============================diensten-list==============================*/
/****list-sec****/
.list-sec {
  position: relative;
  padding: 80px 0 135px;
}
.list-sec::after {
    background: linear-gradient(180deg, #FAF6ED 63.94%, rgba(250, 246, 237, 0.00) 100%);
    content: '';
    left: 0;
    top: 0;
    height: 85%;
    width: 100%;
    position: absolute;
    z-index: -1;
}
.list-sec .each-service-title h4 {
    color: #1F221F;
}
.list-sec .each-service-title h4::after {
    filter: brightness(0) invert(0);
}
.list-sec .each-service-title::after {
    background-color: #1F221F;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.list-sec .each-service:hover h4 {
    color: #E86716;
}
.list-sec .each-service:hover .each-service-title::after {
    background-color: #E86716;
}
.list-sec .col-lg-6 {
    padding: 0 12px;
}
.list-sec .row {
    margin: 0 -12px;
    row-gap: 40px;
}
/*==============================popup==============================*/
.modal-area .modal-dialog {
    max-width: 70%;
    margin: 10% auto 0;
}
.modal-area .modal {
	background: rgba(31, 34, 31, 0.50);
    backdrop-filter: blur(5px);
}
.modal-area .modal-content .col-lg-5 {
    width: 46%;
}
.modal-area .modal-content .col-lg-7 {
    width: 54%;
}
.modal-area .modal-content {
    border: 0;
    border-radius: 0;
    background-color: #FAF6ED;
    position: relative;
}
.pop-up-image {
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}
.modal-area .popup-content {
    padding: 66px 66px;
    background-color: #FAF6ED;
    border-radius: 0;
    overflow: hidden;
}
.modal-area .popup-content p{
    color: #1F221F;
    margin-bottom: 0;
    line-height: 26.4px;
    letter-spacing: 0.32px;
}
.modal-area .popup-content h2 {
    line-height: 56px;
    letter-spacing: 0.8px;
}
.modal-area .popup-content ul {
  margin: 5px 0 20px;
}
.modal-area .popup-content li {
    line-height: 26.4px;
    letter-spacing: 0.32px;
    color: #1F221F;
    margin-bottom: 18px;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.close-img {
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 1;
}
.close-img:hover {
	color: #fff;
}
.close-img img {
	width: 18px;
}
/*==============================aanbod-dtl==============================*/
/****inner-header****/
.inner-header {
    background-color: #1F221F;
}
.inner-header .header-right-block {
    background-color: #fff;
}
.inner-header .menu-bar div,
.inner-header .menu-bar::after,
.inner-header .menu-bar::before {
    background-color: #1F221F;
}
.inner-header .menu-btn {
    color: #1F221F;
}
/****back-btn****/
.back-btn {
    background-color: #FAF6ED;
    padding: 170px 0 32px;
}
/****aanbod-top-sec****/
.aanbod-top-sec {
    background: linear-gradient(180deg, #FAF6ED 63.94%, rgba(250, 246, 237, 0.00) 100%);
    padding-bottom: 92px;
}
.aanbod-top-area {
    height: 100%;
}
.aanbod-top-left .row {
    row-gap: 19px;
}
.aanbod-small-car {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 100%;
    cursor: pointer;
}
.aanbod-small-car img {
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: rgba(31, 34, 31, 0.70);
    backdrop-filter: blur(7px);
    height: calc(100% - 42px);
    width: calc(100% - 39px);
    margin: 21px 19px;
}
.mob-overlay {
    display: none;
}
.aanbod-top-right {
    height: 100%;
}
.aanbod-top-slider {
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.aanbod-top-slider .swiper-button-next {
    right: 19px;
}
.aanbod-top-slider .swiper-button-prev {
    left: 19px;
}
.aanbod-big-car {
    height: 100%;
}
.each-aanbod-top-slider {
    height: 100%;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}
.each-aanbod-top-slider img {
    height: 100%;
    object-fit: cover;
}
.dtl-top-slider-info {
    background: #1F221F;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 18px;
}
.dtl-slider-info-area {
    padding-left: 34px;
    padding-top: 34px;
    padding-bottom: 36px;
}
.dtl-slider-info-area .col-lg-9 {
    width: 77%;
}
.dtl-slider-info-area .col-lg-3 {
    width: 25%;
}
.dtl-top-slider-title {
    width: 100%;
    max-width: 400px;
    padding-right: 20px;
}
.dtl-top-slider-title h2 {
    line-height: 58px;
    margin-bottom: 7px;
}
.dtl-top-slider-title p {
    line-height: normal;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
}
.dtl-top-slider-dtls {
    display: flex;
    justify-content: end;
    padding-right: 55px;
}
.dtl-top-slider-dtls td {
    line-height: normal;
    padding: 0 32px;
    position: relative;
}
.dtl-top-slider-dtls td:first-child {
    padding-left: 0;
}
.dtl-top-slider-dtls td:last-child {
    padding-right: 0;
}
.dtl-top-slider-dtls td strong {
    display: block;
    font-weight: normal;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.60);
}
.dtl-top-slider-dtls td::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1px;
    height: calc(100% + 41%);
    background-color: #fff;
}
.dtl-top-slider-dtls td:first-child::after {
    display: none;
}
.dtl-top-slider-price {
    background: #292929;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding-right: 20px;
    padding-left: 50px;
}
.dtl-top-slider-price h5 {
    color: #E86716;
    font-family: 'Onest-SemiBold';
    font-size: 3.2rem;
    font-style: normal;
    line-height: normal;
}
.dtl-top-slider-price h4 {
    color: #fff;
    font-family: 'Onest-Regular';
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 28px 0 120px;
    position: relative;
}
.dtl-tab-area {
    padding-right: 26px;
}
.dtl-tab-sec .col-lg-8 {
    width: 64%;
}
.dtl-tab-sec .col-lg-4 {
    width: 36%;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 51px;
    border: 0;
    row-gap: 25px;
    margin: auto;
    margin-bottom: 57px;
}
ul.tabs li {
    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: 50px;
    font-size: 2.4rem;
    line-height: normal;
    color: #1F221F;
    letter-spacing: normal;
}
ul.tabs li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 29px;
    background-color: #1F221F;
    height: 2px;
    border-radius: 0;
    width: 0;
    transition: all 0.5s;
}
.tab-btn ul li.common-btn {
    padding: 0;
    background: transparent;
    border: 0;
}
.tab-btn ul li.common-btn.active,
.tab-btn ul li.common-btn:hover {
    color: #1F221F;
    font-family: 'Onest-SemiBold';
}
.tab-btn ul li.common-btn.active::after,
.tab-btn ul li.common-btn:hover::after {
    width: 100%;
}
.kenmerken-tab table {
    width: 100%;
}
.kenmerken-tab tr {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.kenmerken-tab tr::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #010101;
}
.kenmerken-tab td {
    width: 25%;
    padding: 53px 72px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    border-right: 1.5px solid rgba(255, 255, 255, 0.15);
}
.kenmerken-tab td:nth-child(4n) {
    border-right: 0;
}
.kenmerken-tab td h6,
.kenmerken-tab td p {
    font-size: 1.8rem;
    line-height: normal;
    letter-spacing: 0.36px;
}
.kenmerken-tab td h6 {
    margin-bottom: 16px;
}
.kenmerken-tab td p {
    color: rgba(255, 255, 255, 0.50);
}
.tab_content {
    display: none;
}
.tab_content P {
    color: #1F221F;
}
.tab_drawer_heading {
    display: none;
}
.kenmerken-tab {
    overflow: hidden;
    padding-right: 195px;
}
.kenmerken-tab td p {
    color: rgba(255, 255, 255, 0.70);
    line-height: 20px;
    margin-bottom: 0;
}
.kenmerken-tab td h4 {
    font-family: 'Inter-Medium';
    color: #FFF;  
    line-height: 20px;
    margin-top: 9px;
}
.bullet-panel h5 {
    border-bottom: 1px solid #E86716;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-family: 'Onest-SemiBold';
    font-size: 2rem;
    color: #1F221F;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 34px;
}
.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;
    margin-bottom: 10px;
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 7px;
    width: 7px;
    height: 7px;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E86716;
    font-size: 1.6rem;
    line-height: 24px;
}
.left-bg-block p {
    color: #fff;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #E86716;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
    text-transform: none;
    font-family: 'Onest-SemiBold';
    color: #1F221F;
    font-size: 2rem;
}
.tab-btm-btn {
    margin-top: 47px;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}
.kenmerken-tab li {
    width: 61%;
    position: relative;
    font-family: 'Onest-Medium';
    color: #1F221F;
    line-height: normal;
    margin-bottom: 13px;
    padding-bottom: 17px;
    word-break: break-word;
    padding-right: 20px;
    letter-spacing: 0.32px;
    padding-left: 0;
}
.kenmerken-tab li:nth-child(even) {
    font-family: 'Onest-Regular';
    color: rgba(31, 34, 31, 0.50);
    width: 39%;
}
.kenmerken-tab li::after {
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: rgba(31, 34, 31, 0.20);
}
.kenmerken-tab h4 {
    margin-bottom: 24px;
}
.tab-right-part {
    border-radius: 10px;
    background: #1F221F;    
    padding: 26px 20px 28px;
}
.tab-right-part p {
    margin-bottom: 6px;
}
.tab-right-part h4 {
    color: #fff;
    margin: 25px 0 23px;
}
.star-icon {
    width: 135px;
    height: 21px;
    margin: 0 auto;
}
.star-icon img {
    height: 100%;
    object-fit: cover;
}
.man-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 64px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px;
}
.man-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.tab-right-part p a {
    font-family: 'Onest-Medium';
    line-height: normal;
    letter-spacing: 0.32px;
}
.share-btn {
    margin-top: 33px;
}
.share-btn .common-btn {
    padding-left: 23px;
    padding-right: 23px;
}
.share-btn img {
    width: 15px;
    height: 18px;
    margin-right: 15px;
}
.share-btn .common-btn:hover img {
    filter: invert(50%) sepia(40%) saturate(7500%) hue-rotate(355deg) brightness(84%) contrast(93%);
}
.tab-right-part p strong {
    color: #fff;
    display: block;
    margin-top: 4px;
}
/****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: transparent;
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    border-radius: 20px;
    background-color: #FAF6ED;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #FAF6ED;
    box-shadow: 0px 0px 13px 0px #E86716;
    -webkit-box-shadow: 0px 0px 13px 0px #E86716;
    overflow: hidden;
    position: relative;
}
.kenmarken-popup-close {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 30px;
    right: 30px;
    border-radius: 100%;
    cursor: pointer;
}
.kenmarken-popup-close img {
    width: 28px;
    filter: brightness(100) invert(1);
}
.kenmarken-popup-content {
    overflow-y: scroll;
    height: calc(100% - 116px);
    border: 0;
    padding: 0;
    padding-top: 9px;
}
.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 {
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1F221F;
    margin-bottom: 8px;
}
.kenmerken-popup-model p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    color: #1F221F;
}
.kenmarken-popup-content h4 {
    margin-bottom: 8px;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 31px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1.5px solid rgba(31, 34, 31, 0.20);
    color: #1F221F;
}
.kenmarken-popup-content li:nth-child(even) {
    color: rgba(31, 34, 31, 0.50);
}
.kenmarken-popup-content li::after {
    display: none;
}
/****form-sec****/
.form-sec {
    padding: 91px 0 46px;
    position: relative;
}
.form-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 34, 31, 0.56) 0%, #1F221F 79.96%);
}
.form-area {
    position: relative;
    z-index: 1;
}
.form-left {
    border-radius: 5px;
    background: rgba(31, 34, 31, 0.70);
    padding: 41px 36px;
}
.form-main-area .form-group {
    margin-bottom: 24px;
}
.form-main-area .form-styl {
    border: none;
    padding: 17px 19px;
    resize: none;
    font-family: 'Onest-Regular';
    line-height: 24px;
    font-size: 1.6rem;
    letter-spacing: 0.32px;
    color: #FFF;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: rgba(250, 246, 237, 0.07);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.form-main-area .form-styl:focus::placeholder{
    color: #fff;
}
.form-main-area .form-style:-ms-input-placeholder {
    color: #fff;
}
.form-main-area .form-styl::placeholder{
    color: #fff;
}
.form-main-area .form-style:focus::placeholder {
    color: #fff;
}
.form-main-area .form-styl:focus { 
    color: #fff;
    border: 1px solid #E86716;
    box-shadow: none;
    background-color: #E86716;
}
.form-main-area .form-styl.photo_upload,
.form-main-area .form-styl.foto_upload {
    color: #fff; 
}
.form-main-area .form-group textarea.form-control {
    height: 189px;
    border-radius: 14px;
}
.form-btn {
    margin-top: 34px;
}
.form-main-area label {
    line-height: 24px;
    margin-bottom: 8px;
}
.form-right {
    padding-left: 48px;
}
.form-title {
    width: 100%;
    max-width: 555px;
}
.form-title p {
    line-height: normal;
    margin-top: 20px;
}
.form-contact-info {
    margin-top: 137px;
}
.form-contact-info .footer-top-right-info {
    width: 100%;
    max-width: 651px;
}
.form-social {
    margin-top: -19px;
}
.form-social ul {
    display: flex;
    column-gap: 9px;
}
.form-social li {
    border: 1px solid #fff;
    border-radius: 30px;
    width: 34px;
    height: 34px;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-social li::after {
    display: none;
}
.form-social li img {
    width: 14px;
    height: 14px;
}
.form-social li:hover {
    background-color: #E86716;
    border-color: #E86716;
}
/****aanbod-btm-sec****/
.aanbod-btm-sec {
    background-color: #FAF6ED;
    padding: 120px 0 98px;
}
.aanbod-btm-title {
    margin-bottom: 80px;
}
.aanbod-btm-slider .common-arrow {
    top: 40%;
}
.aanbod-btm-slider .swiper-button-next {
    right: -10px;
}
.aanbod-btm-slider .swiper-button-prev {
    left: -10px;
}
/*==============================over-ons==============================*/
/****inner-banner****/
.inner-banner {
    position: relative;
}
.inner-banner-img {
    height: 100%;
}
.inner-banner-img img {
    height: 100%;
    object-fit: cover;
}
.inner-banner-content {
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 100%;
}
/****overons-top-sec****/
.overons-top-sec {
    padding: 114px 0 120px;
}
.overons-top-info h2 {
    margin-bottom: 33px;
}
.overons-top-info p {
    color: rgba(31, 34, 31, 0.70);
}
.overons-top-info p:last-child {
    margin-bottom: 0;
}
.overons-top-area .col-lg-4 {
    width: 38%;
}
.overons-top-area .col-lg-8 {
    width: 62%;
}
.overons-top-info {
    padding-right: 35px;
}
.overons-top-img {
    display: flex;
    column-gap: 17px;
    align-items: end;
    justify-content: end;
}
.overons-top-small-img {
    height: 245px;
    width: 245px;
}
.overons-top-big-img {
    width: 610px;
    height: 502px;
}
.overons-top-big-img,
.overons-top-small-img {
    border-radius: 5px;
    overflow: hidden;
}
.overons-top-big-img img,
.overons-top-small-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.overons-top-img-area {
    position: relative;
}
.overons-top-counter {
    position: absolute;
    top: -7%;
    left: 14%;
}
.overons-top-counter h3 {
    font-size: 3.6rem;
    font-family: 'Onest-Black';
    line-height: normal;
    color: #E86716;
    padding-left: 18px;
}
.overons-top-counter h5 {
    font-family: 'Aleo-Black';
    color: #E86716;
    font-size: 12.8rem;
    line-height: 123px;
}
/****overons-about-sec****/
.overons-about-sec {
    background-color: #1F221F;
    padding: 66px 0 90px;
}
.overons-about-title {
    margin-bottom: 60px;
}
.overons-about-area .row {
    margin: 0 -16px;
    row-gap: 32px;
}
.overons-about-area .col-lg-6 {
    padding: 0 16px;
}
.each-overons-about-dtls {
    text-align: center;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    min-height: 362px;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.each-overons-about-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
    padding: 50px;
    position: relative;
    z-index: 1;
}
.each-overons-about-txt p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-top: -24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
    width: 100%;
    max-width: 479px;
}
.each-overons-about-dtls:hover .each-overons-about-txt p {
    opacity: 1;
    margin-top: 0;
    display: block;
    overflow: visible;
}
.each-overons-about-dtls::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #E86716;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-overons-about-dtls::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/overons-about-mark.svg);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 2;
}
.each-overons-about-dtls:hover::before,
.each-overons-about-dtls:hover::after {
    opacity: 1;
}
.each-overons-about-dtls:hover h3 {
    font-size: 2.4rem;
    margin-bottom: 17px;
}
/****overons-gal-sec****/
.overons-gal-sec {
    background-color: #FAF6ED;
    padding: 120px 0;
    overflow: hidden;
}
.overons-gal-title {
    margin-bottom: 78px;
}
.overons-gal-slider {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
.each-overons-gal-img {
    border-radius: 5px;
    overflow: hidden;
    height: 518px;
}
.each-overons-gal-img img {
    height: 100%;
    object-fit: cover;
}
/*==============================contact==============================*/
/****map****/
.map {
    height: 600px;
}
.map img {
    height: 100%;
    object-fit: cover;
}
/****contact-form****/
.contact-form {
    background-color: #FAF6ED;
    padding: 175px 0 215px;
}
.contact-form::after {
    opacity: 0;
}
.contact-form .form-left {
    background: #fff;
}
.contact-form .form-main-area label {
    color: #E86716;
}
.contact-form .form-main-area .form-styl {
    border-color: #1F221F;
    background-color: #FAF6ED;
    color: rgba(31, 34, 31, 0.60);
}
.contact-form .form-main-area .form-styl:focus::placeholder{
    color: #fff;
}
.contact-form .form-main-area .form-style:-ms-input-placeholder {
    color: rgba(31, 34, 31, 0.60);
}
.contact-form .form-main-area .form-styl::placeholder{
    color: rgba(31, 34, 31, 0.60);
}
.contact-form .form-main-area .form-style:focus::placeholder {
    color: rgba(31, 34, 31, 0.60);
}
.contact-form .form-main-area .form-styl:focus {
    color: #fff;
    border: 1px solid #E86716;
    box-shadow: none;
    background-color: #E86716;
}
.contact-form .form-title p {
    color: #1F221F;
}
.contact-form .each-footer-contact h4,
.contact-form .each-footer-contact a,
.contact-form .each-footer-contact td {
    color: #1F221F;
}
.contact-form .each-footer-contact a:hover {
    color: #E86716;
}
.contact-form .form-social li {
    border-color: #1F221F;
}
.contact-form .form-social li:hover {
    border-color: #E86716;
}
.contact-form .form-social li:hover img {
    filter: brightness(0) invert(1);
}
/*==============================diensten-dtl==============================*/
/****diens-back-btn****/
.diens-back-btn {
    background-color: #fff;
}
/****diens-top-sec****/
.diens-top-img {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}
.diens-top-img img {
    height: 100%;
    object-fit: cover;
}
.diens-top-info {
    padding-left: 35px;
    width: 100%;
    max-width: 649px;
}
.diens-top-info h2 {
    margin-bottom: 23px;
}
.diens-top-info p {
    color: rgba(31, 34, 31, 0.70);
}
.diens-top-info ul {
    padding-left: 10px;
    padding-bottom: 16px;
}
.diens-top-info li::after {
    height: 4px;
    width: 4px;
    top: 10px;
    background-color: rgba(31, 34, 31, 0.70);
}
.diens-top-info h4 {
    margin-bottom: 17px;
}
/****diens-mid-sec****/
.diens-mid-sec {
    padding-top: 80px;
    padding-bottom: 120px;
}
.diens-mid-area {
    position: relative;
}
.diens-mid-img {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}
.diens-mid-img img {
    height: 100%;
    object-fit: cover;
}
.diens-mid-info {
    position: relative;
    padding-top: 11px;
    padding-left: 40px;
    padding-right: 45px;
}
.diens-mid-info td {
    display: block;
}
.diens-mid-info h4 {
    margin-bottom: 16px;
}
.diens-mid-info p {
    color: rgba(31, 34, 31, 0.70);
    margin-bottom: 30px;
}
.diens-mid-info td:last-child p {
    margin-bottom: 0px;
}
.diens-mid-info td ul {
    margin-bottom: 22px;
}
.diens-mid-info td:last-child ul {
    margin-bottom: 0;
}
.diens-mid-info td li {
    margin-bottom: 15px;
}
/*****line-fill******/
.line-fill {
    position: relative;
}
.line {
    position: absolute;
    top: 17px;
    left: 0;
    width: 2px;
    background-color: #1F221F;
    height: 100%;
}
.line-inner {
    height: 0%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #E86716;
}
/****diens-service-sec****/
.diens-service-sec {
    background-color: #FAF6ED;
    padding: 120px 0 137px;
    position: relative;
}
.diens-service-title {
    margin-bottom: 80px;
}
.diens-service-sec .each-service-title h4 {
    color: #1F221F;
}
.diens-service-sec .each-service-title h4::after {
    filter: brightness(100) invert(1);
}
.diens-service-sec .each-service:hover .each-service-title h4 {
    color: #E86716;
}
.diens-service-sec .each-service-title::after {
    background-color: #1F221F;
}
.diens-service-sec .each-service:hover .each-service-title::after {
    background-color: #E86716;
}
.diens-service-sec .each-service-img {
    height: 100%;
}
/*==============================aanbod-list==============================*/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 172px 0 70px;
    background-color: #FAF6ED;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-left-area .row {
    column-gap: 10px;
}
.filter-reset a {
	color: #1F221F;
	font-size: 1.4rem;
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(100) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #E86716;
}
.filter-reset a:hover img {
    filter: invert(57%) sepia(50%) saturate(4904%) hue-rotate(352deg) brightness(94%) contrast(95%);
}
.aanbod-filter-sec .select-style {
    width: 100%;
    height: 50px;
    color: #1F221F;
    border-radius: 100px;
    padding: 0 30px 0 18px;
    background-color: #fff;
    appearance: none;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    text-align: center;
}
.aanbod-filter-sec .select-style:hover,
.aanbod-filter-sec .select-style.show {
    background-color: #E86716;
    color: #fff;
}
.aanbod-filter-sec .select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'lama_sansmedium';
	background-color: #14181E;
}
.filter-content {
    display: none;
    background-color: #E86716;
    padding: 10px 10px 15px;
    z-index: 2;
    border-top: 1px solid #fff;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
    cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #fff;
    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 #fff;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #1F221F;
    border-color: #1F221F;
}
.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: 6px;
    background-color:#E86716;
    font-size: 1.4rem;
    border: 1px solid #E86716;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: transparent;
    color: #1F221F;
}
.auto-overview-tag:hover img {
    filter: brightness(100) invert(1);
}
.aanbod-filter {
	margin-bottom: 18px;
	width: 20%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 78px;
    background-color: #292929;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
}
.mobile-show-filter .common-btn {
     
}
.mobile-show-filter .common-btn:hover {
     
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #1F221F;
	border-radius: 100%;
	color: #fff;
    border: 1px solid #1F221F;
	margin-left: 15px;
	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: #1F221F;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #1F221F;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .common-btn {
	margin-top: 0; 
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result h4{
	font-size: 1.6rem;
	color: #fff;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-right-area {
    max-width: 200px;
    margin-left: auto;
    margin-right: 0;
}
.filter-sort {
	align-items: center;
}
.filter-sort h6 {
	margin-right: 10px;
    color: rgba(249, 248, 246, 0.7);
    font-family: 'lama_sansmedium';
    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;
}
.filter-left-heading,
.filter-right-heading {
    margin-bottom: 25px;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
    background-color: #FAF6ED;
    padding-bottom: 128px;
}
.aanbod-product-area .row {
    row-gap: 22px;
}
.aanbod-product-sec .each-product {
    padding-bottom: 0;
}
/*==============================verkocht==============================*/
/****verkocht-top-sec****/
.verkocht-top-sec {
    background-color: #FAF6ED;
    padding-top: 172px;
    padding-bottom: 62px;
}
.verkocht-top-sec h2 {
    margin-bottom: 24px;
}
.verkocht-top-sec p {
    color: rgba(31, 34, 31, 0.70);
    margin-bottom: 0;
}

.mobile-car-img{
    display: none;
}
/*==================================STYLE FOR DVELOPER===================================================*/

/*******loader*****/
#loader_section{
    display:none;
    width:100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
  }
  #loader_section p{
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  #loader_section img{
    width: 100px;
    margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
      background: #000000;
      width: 100%;
      height: 50px;
      display: block;
      text-align: center;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer:hover {
      background: #202020;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
      height: 35px;
      padding-top: 15px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
      background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding: 4px 10px 6px 20px;
      color: #000;
      background-size: contain;
  }
  .star_icon{
      margin-bottom: 30px;
  }
  .star_icon 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(#1F221F calc(1*100%/6),#fff 0 calc(3*100%/6),#1F221F 0),
                linear-gradient(#1F221F calc(2*100%/6),#fff 0 calc(4*100%/6),#1F221F 0),
                linear-gradient(#1F221F calc(3*100%/6),#fff 0 calc(5*100%/6),#1F221F 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: #1F221F;
    }
  
  
  .carpass-img {
      width: 115px;
  }
  
  .popup .popuptext {
      display: none;
      width: 200px;
      background-color: #25D366;
      color: #fff;
      text-align: center;
      border-radius: 20px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 3px;
      right: 71px;
      font-size: small;
  }
  
  .notifcation {
      position: relative;
  }
  
  .alert-number {
      display: none;
      position: absolute;
      bottom: 43px;
      right: 4px;
      border-radius: 50%;
      width: 17px;
      height: 17px;
      background-color: red;
      color: white;
      text-align: center;
      font-size: small;
      animation: shake 0.5s;
      animation-iteration-count: 1;
  }
  
  @media screen and (max-width: 600px) {
      .popuptext {
          right: 60px !important;
      }
  }
  @media (max-width : 767.98px){
      .fixed-whatsapp-icon{
          display: none;
      }
  }
  /* .footer-area{
      margin-bottom: 22px;
  } */
  .each-service:hover .each-service-arrow .common-arrow-part{
      background-color: #FAFAFA;
  }
  .privacy_section h2{
      padding-top: 85px;
  }
  .share-social-media-button{
      padding: 6px 9px;
  }
  /* @media(max-width: 519px) and (min-width: 416px){
      .calculator{
          height: 1670px !important;
      }
  }
  @media(max-width: 415px){
      .calculator{
          height: 1826px !important;
      }
  } */
  
  .calsty {
      border: 0;
      width: 100%;
      height: 767px;
      background: transparent;
  }
  @media(max-width: 499px){
      .calsty {
          height: 1123px !important;
      }
  }
/*****review******/
.dLkQRC {
    font-family: 'Aleo-Bold'!important;
    color: #fff !important;
}
.privacy_section {
    padding: 60px 0;
}
.privacy_section p {
    color: #1F221F;
}
.share-social-media-button .a2a_dd {
    background-color: transparent !important;
    border-color: #fff !important;
}
.share-social-media-button .a2a_dd:hover {
    background-color: #E86716 !important;
    border-color: #E86716 !important;
}
.each-banner {
    position: relative;
}
.each-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(253deg, rgba(31, 34, 31, 0.36) 0%, rgba(31, 34, 31, 0.00) 50.11%, rgba(31, 34, 31, 0.25) 100%);
}
.inner-banner-img {
    position: relative;
}
.inner-banner-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(253deg, rgba(31, 34, 31, 0.36) 0%, rgba(31, 34, 31, 0.00) 50.11%, rgba(31, 34, 31, 0.25) 100%);
}
.contact-form::after {
    display: none;
}
.tab-right-part.make_sticky {
    position: sticky;
    top: 120px;
    overflow-y: auto;
    overflow-x: hidden;
}
.map .inner-banner-content {
    z-index: 999 !important;
}
.map h1 {
    color: red !important;
}





.aanbod-filter-sec .select-style { 
    text-align: left;
    background: url(../images/filter-arrow.svg) no-repeat 89% center / 12px;
    background-color: #fff;
}
.aanbod-filter-sec .select-style:hover {
    background: url(../images/filter-arrow-white.svg) no-repeat 89% center / 12px;
    background-color: #E86716;
}
.mega-menu li.active {
    animation: none;
}