@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
    color: #F5F5F5;
    font-family: 'Arial-Regular';
    font-size: 1.6rem;
    background-color: #141917;
    /*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;
}
/****header-area*****/
.header-area {
    padding: 23px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #141917;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    background-color: #1C2220;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-logo img {
    width: 176px;
}
.header-partner {
    padding-left: 32px;
    margin-left: 32px;
    position: relative;
}
.header-partner::after {
    content: "";
    height: calc(100% + 20px);
    width: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.20);
}
.header-partner ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
.header-partner li {
    margin: 0;
    padding: 0;
}
.header-partner li::after {
    display: none;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}
.header-nav li {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 15px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.header-nav li::after {
    display: none;
}
.header-nav li a {
    color: #fff;
}
.header-nav li a:hover {
    color: #D9674B;
}
.hamburger {
    color: #fff;
    font-size: 1.4rem;
    line-height: 15px; 
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.hamburger strong {
    font-weight: normal;
    margin-right: 5px;
}
/*****mega-menu*****/
.mega-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 43%;
    background-color: #141917;
    height: 100vh;
    padding: 56px;
    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);
}
.menu-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    background-color: rgba(0, 0, 0, 0.60);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mega-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 50px;
    padding-right: 10px;
}
.mega-menu-top h4 {
    font-family: 'Sora-Medium';
}
.menu-close {
    height: 46px;
    width: 46px;
    border: 1px solid #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.mega-menu-nav ul {
    padding: 0;
    margin: 0;
}
.mega-menu-nav li {
    padding: 0;
    margin: 0;
    color: rgba(245, 245, 245, 0.80);
    font-family: 'Sora-Regular';
    font-size: 1.6rem;
    line-height: 28px; 
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.mega-menu-nav li::after {
    display: none;
}
.mega-menu-nav li a {
    position: relative;
    display: block;
    color: rgba(245, 245, 245, 0.8);
    border-bottom: 1px solid rgba(245, 245, 245, 0.30);
    padding: 27px 0;
}
.mega-menu-nav li:last-child a {
    border-bottom: 0;
}
.mega-menu-nav li a::after {
    content: "";
    height: 46px;
    width: 46px;
    border: 1px solid #F5F5F5;
    background-position: center center;
    background-color: transparent;
    background-image: url(../images/btn-arrow.svg);
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-nav li a:hover {
    color: rgba(245, 245, 245, 0.8);
}
.mega-menu-nav li a:hover::after {
    background-color: #D9674B;
    border-color: #D9674B;
}
.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;
}
.mega-menu-main {
    height: calc(100% - 120px);
    overflow: hidden;
}
.mega-menu-nav {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}
.mega-menu-nav::-webkit-scrollbar {
    width: 10px;
    background-color: #1C2220;
    border-radius: 10px;
}
.mega-menu-nav::-webkit-scrollbar-thumb {
    background-color: #333a38;
    border-radius: 10px; 
}
.mega-menu-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
main {
    margin-top: 108px;
}
/***fix-wp*****/
.fix-wp a {
    backdrop-filter: blur(10px);
    background-color: #25D366;
    height: 63px;
    width: 63px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    border-radius: 100%;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 24px;
}
/********banner-sec*********/
.banner-sec {
	position: relative;
    overflow-x: clip;
}
.banner-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.banner-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(43, 53, 48, 0.00) 14.39%, rgba(11, 12, 12, 0.40) 85.99%);
    z-index: 1;
}
.banner-content {
	position: absolute;
	bottom: 107px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-video,.each-banner  {
	height: 776px;
	overflow: hidden;
}
.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-wrap {
    max-width: 820px;
    width: 100%;
}
.banner-content h1 {
    margin-bottom: 30px;
}
/*****rotating-text******/
.rotate-circle {
    height: 150px;
    max-width: 150px;
    margin: 0 auto;
    border: 2px solid #D9674B;
    border-radius: 100%;
    background-color: rgba(217, 103, 75, 0.50);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}
.rotating-text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}
.rotating-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 87%;
    height: 100%;
}
.rotating-text img {
    width: 100%;
    height: 100%;
}
.rotating-center {
    height: 70px;
    width: 70px;
    background-color: #D9674B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 1;
}
.rotating-center img {
    width: 90%;
}
.rotate-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/****product-sec*****/
.product-sec {
    padding: 104px 0 97px;
    position: relative;
    overflow: hidden;
}
.product-mark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.product-btn {
    margin-bottom: 40px;
}
.product-btn .common-btn {
    padding: 14px 55px 14px 93px;
    background-color: #F5F5F5;
    text-transform: none;
    margin-right: 30px;
}
.product-btn .common-btn:last-child {
    margin-right: 0;
}
.product-btn .common-btn::after {
    left: 30px;
    background-image: url(../images/btn-car.svg);
    background-size: 30px;
    height: 40px;
    width: 40px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-btn .common-btn h6 {
    color: #1F2622;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-btn .common-btn h4 {
    color: #1F2622;
    line-height: 28px;
    letter-spacing: 0.2px;
    font-family: 'Arial-Regular';
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-btn .verhuur-btn::after {
    background-image: url(../images/btn-key.svg);
}
.product-btn .common-btn:hover {
    background-color: #D9674B;
}
.product-btn .common-btn:hover h6 {
    color: #F5F5F5;
}
.product-btn .common-btn:hover h4 {
    color: #F5F5F5;
}
.product-btn .common-btn:hover::after {
    filter: invert(1);
}
.product-slider {
    position: relative;
    padding-right: 8px;
}
.product-slider::after {
    content: "";
    height: 100%;
    width: 10.3%;
    background: linear-gradient(90deg, rgba(20, 25, 23, 0.28) 0%, rgba(20, 25, 23, 0.80) 53.12%, #141917 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    border-radius: 10px 0 0 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}
.product-text {
    border-radius: 10px;
    background-color: #F5F5F5;
    padding: 6px 8px 6px 34px;
    overflow: hidden;
}
.product-text h3 {
    color: #141917;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-text p {
    color: #141917;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.product-text .common-btn {
    font-size: 2rem;
    font-family: 'Arial-Bold';
    line-height: 32px;
    text-transform: none;
    padding-right: 26px;
    text-align: center;
    display: table;
    margin-left: auto;
}
.product-text .common-btn strong {
    color: rgba(245, 245, 245, 0.70);
    font-family: 'Arial-Regular';
    font-size: 1.4rem;
    font-weight: normal;
}
.product-text .common-btn strong em {
    font-style: normal;
    color: #F5F5F5;
}
.product-text .common-btn::after {
    display: none;
}
.each-product:hover .product-text .common-btn {
    background-color: #D9674B;
    border-color: #D9674B;
}
.product-slider .swiper-button-next {
    left: -3%;
    right: auto;
    top: 27%;
}
.product-slider .swiper-button-prev {
    top: calc(27% + 120px);
    left: -3%;
}
.product-slider.last-product-reached::after {
    opacity: 0;
}
/***********usp-marquee************/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 30px 0;
	background-color: #D9674B;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 147px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 147px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
	line-height: normal;
	color: #F5F5F5;
	font-size: 1.8rem;
    line-height: 20px;
    font-family: 'Arial-Medium';
	padding-left: 30px;
	position: relative;
    margin-bottom: 0;
}
.usp-marquee-wrap li::after {
    background-color: #F5F5F5;
    height: 17px;
    width: 17px;
    background-image: url(../images/usp-tick.svg);
    background-size: 17px;
    background-position: center center;
    top: 1px;
}
/*****service-sec****/
.service-sec {
    padding: 109px 0;
    position: relative;
    background-color: #F5F5F5;
}
.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-bg img {
    height: 100%;
    object-fit: cover;
}
.service-sec .container {
    position: relative;
    z-index: 1;
}
.service-slider .swiper-slide {
    transition: width 0.4s ease;
    height: 424px;
}
.service-slider .swiper-slide.service-active {
    width: 54%;
}
.service-slider .swiper-slide:not(.service-active) {
    width: calc(42.4% / 3);
}
.each-service {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.each-service-img {
    height: 100%;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.service-desc {
    height: 100%;
    border-radius: 10px;
    background-color: #141917;
    overflow: hidden;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-desc p {
    margin: 20px 0 34px;
    letter-spacing: 0.32px;
}
.service-main .row {
    margin: 0 -6px;
}
.service-main .col-lg-4 {
    width: 30%;
    padding: 0 6px;
}
.service-main .col-lg-8 {
    width: 70%;
    padding: 0 6px;
}
.each-service::after {
    content: "";
    background-color: rgba(20, 25, 23, 0.30);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.each-service-text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 40px 14px;
    writing-mode: sideways-lr;
    z-index: 1;
}
.each-service-text .txt-btn {
    display: none;
}
.each-service-text .txt-btn:hover {
    color: #F5F5F5;
}
.service-slider .swiper-slide.service-active .each-service-text .txt-btn {
    display: inline-block;
}
.service-slider .swiper-slide.service-active .each-service-text {
    writing-mode: initial;
    width: 100%;
    padding: 30px 54px;
}
.service-main {
    margin-bottom: 10px;
}
.service-main:last-child {
    margin-bottom: 0;
}
/*****about-sec******/
.about-sec {
    padding-top: 135px;
    position: relative;
}
.about-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.about-bg img {
    height: 100%;
    object-fit: cover;
}
.about-img {
    display: flex;
    gap: 14px;
    max-width: 780px;
    width: 100%;
    margin-left: auto;
}
.about-img img {
    border-radius: 10px;
}
.each-about-img:nth-child(2) {
    margin-top: -46px;
}
.about-text h2 {
    font-size: 6.4rem;
    line-height: 70px;
    letter-spacing: 3.2px;
}
.about-text p {
    margin: 28px 0 16px;
    max-width: 500px;
    width: 100%;
}
.about-text h3 {
    margin-bottom: 54px;
    color: #D9674B;
    font-family: 'Birthstone-Regular';
    font-size: 4rem;
    line-height: 44px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/*****review-sec****/
.review-sec {
    padding: 152px 0 160px;
}
/****footer-area*****/
.footer-area {
    padding: 40px 0 60px;
    background-color: #1C2220;
    overflow-x: clip;
}
.footer-logo img {
    width: 176px;
}
.footer-mid {
    margin: 38px 0 50px;
    padding: 50px 0 57px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.footer-info {
    display: flex;
    justify-content: space-between;
}
.each-footer-info h4 {
    margin-bottom: 15px;
}
.each-footer-info td {
    color: rgba(245, 245, 245, 0.80);
    line-height: 24px; 
}
.each-footer-info td:nth-child(odd) {
    padding-right: 15px;
}
.each-footer-info p {
    color: rgba(245, 245, 245, 0.80);
    margin-bottom: 34px;
}
.each-footer-info p:last-child {
    margin-bottom: 0;
}
.each-footer-info p a {
    color: rgba(245, 245, 245, 0.80);
    display: table;
}
.each-footer-info p a:hover {
    text-decoration: underline;
    text-underline-position: under;
}
.each-footer-info ul {
    padding: 0;
    margin: 0;
}
.each-footer-info li {
    padding: 0;
    margin: 0;
    color: rgba(245, 245, 245, 0.80);
    line-height: 28px; 
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.each-footer-info li::after {
    display: none;
}
.each-footer-info li a {
    color: rgba(245, 245, 245, 0.80);
}
.each-footer-info li a:hover {
    color: #D9674B;
}
.footer-sponcer ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-partner h5 {
    display: inline-block;
    margin-right: 20px;
    color: #F5F5F5;
}
.footer-social ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: end;
}
.footer-social li {
    padding: 0;
    margin: 0;
}
.footer-social li::after {
    display: none;
}
.footer-social li a {
    height: 39px;
    width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    /* border-color: #D9674B; */
    border: 1px solid #D9674B;
}
.footer-social li a:hover {
    /* border-color: rgba(245, 245, 245, 0.20); */
    opacity: 0.80;
}
.footer-social li a img {
    /* filter: grayscale(1);
    -webkit-filter: grayscale(1); */
}
.footer-social li a:hover img {
    /* filter: grayscale(0);
    -webkit-filter: grayscale(0); */
    /* opacity: 0.80; */
}
.footer-area .rotate-circle {
    background-color: #1F2622;
    border-color: #F5F5F5;
    margin: -116px 0 0 auto;
}
.footer-area .rotating-center {
    background-color: #F5F5F5;
    width: 76px;
    height: 76px;
}
.footer-area .rotating-text {
    width: 89%;
}
.footer-address-replace {
    display: none;
}
.footer-address-mob-replace {
    display: none;
}


/*=============== diensten-list ===============*/
/****inner-banner-sec*****/
.inner-banner-sec {
	position: relative;
    overflow-x: clip;
}
.inner-banner-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.inner-banner-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(43, 53, 48, 0.00) 14.39%, rgba(11, 12, 12, 0.40) 85.99%);
    z-index: 1;
}
.inner-banner-content {
	position: absolute;
    bottom: 197px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.inner-banner-img  {
	height: 525px;
	overflow: hidden;
}
.inner-banner-img img {
	height: 100%;
	object-fit: cover;
}
.inner-banner-content-wrap {
    max-width: 820px;
    width: 100%;
}
.inner-banner-content h1 {
    margin-bottom: 30px;
}
/****diens-list-sec*****/
.diens-list-sec {
    padding: 89px 0 72px;
}
.each-list-content-part {
    position: relative;
}
.diens-list-mark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.each-diens-list {
    margin-bottom: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diens-list:last-child {
    margin-bottom: 0;
}
.each-diens-list .col-lg-7 {
    width: 55%;
}
.each-diens-list .col-lg-5 {
    width: 45%;
}
.each-list-img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.each-list-img img {
    height: 100%;
    object-fit: cover;
}
.each-list-content .align-middle {
    vertical-align: top !important;
}
.diens-list-mark img {
    height: 100%;
    object-fit: cover;
}
.each-list-content {
    border: 1px solid rgba(245, 245, 245, 0.10);
    background: #D9D9D9;
    border-radius: 10px;
    overflow: hidden;
    padding: 58px 89px 154px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list-content h2,
.each-list-content p {
    color: #141917;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-list-content h2 {
    margin-bottom: 13px;
}
.each-list-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 415px;
    width: 100%;
    margin-bottom: 35px;
}
.each-diens-list:hover .each-list-content {
    background: #D9674B;
}
.each-diens-list:hover .each-list-content h2,
.each-diens-list:hover .each-list-content p {
    color: #F5F5F5;
}
.each-diens-list:hover .common-btn {
    background: #F5F5F5;
    color: #D9674B;
}
.each-diens-list:hover .common-btn::after {
    background-image: url(../images/red-arw.svg);
}
.each-diens-list:hover .diens-list-mark img {
    filter: brightness(0) invert(1);
}
/* =========== overons-marque ============ */
.overons_marque{
    margin-top: 100px;
}
.counter-part{
    display: flex;
    column-gap: 52px;
}
.each-counter{
    flex-shrink: 0;
    position: relative;
}
.each-gal-content p{
    margin-bottom: 67px;
}
.counter-part .each-counter:last-child{
    padding-left: 48px;
}
.counter-part .each-counter:last-child::after{
    position: absolute;
    content: "";
    height: 100%;
    width: 1.25px;
    background-color: rgba(255, 255, 255, 1);
    top: 0;
    left: -2px;
}
.each-counter p{
    margin: 0;
}
.each-counter h2{
    line-height: 41px;
}
.each-gal-content{
    background: #D9674B;
}
.each-gal-img {
    min-height: 455px;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.each-gal-img img{
    height: 100%;
    object-fit: cover;
}
.overons-gal .col-lg-7{
    width: 55%;
}
.overons-gal .col-lg-5{
    width: 45%;
}
.overons-gal .col-lg-4{
    width:30.5%;
}
.overons-gal .col-lg-6{
    width:57%;
}
.overons-gal .col-lg-3 {
    width: 21.5%;
}
.overons-gal .col-lg-2{
    width:19.5%;
}
.overons-gal .row{
    row-gap: 15px;
}
.overons-gal{
    padding: 100px 0;
    position: relative;
}
.each-gal-img-content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 60px;
    text-align: center;
    gap: 20px;
}
.each-gal-img-content img{
    width: 31px;
    height: 31px;
}
.each-gal-img-content .common-btn{
    padding:8px 30px 8px 14px;
    font-family: 'Sora-Regular';
    font-size: 1.4rem;
    line-height: 20px; 
}
.each-gal-img-content .common-btn::after {
    right: 12px;
}
.each-gal-img-content .common-btn:hover {
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    color: #141917;
}
.each-gal-img-content .common-btn:hover::after {
    filter: invert(1);
}
.overons-gal .about-bg::after{
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, #141917 14.19%, rgba(20, 25, 23, 0.00) 100%);    
    content: "";
    height: 50%;
    width: 100%;
}
.overons-gal .about-bg::before{
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #141917 14.19%, rgba(20, 25, 23, 0.00) 100%);
    content: "";
    height: 50%;
    width: 100%;
}
/* ============== aanbod-list ============ */
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 74px 0 20px;
}
.filter-main .col-xl-9 .row{
    max-width: 850px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	text-transform: uppercase;
    color: rgba(245, 245, 245, 0.70);
	font-size: 1.4rem;
	font-family: 'Arial-Medium';
}
.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: #D9674B;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.aanbod-filter-sec .select-style {
	width: 100%;
    height: 48px;
    color: #F5F5F5;
    font-family: 'Arial-Medium';
    font-size: 1.6rem;
	background-color: #1C2220;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    padding: 0 30px 0 18px;
    background: url(../images/filter-arrow.svg)  no-repeat 91% center/11px;
    appearance: none;
    line-height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
    cursor: default;
    text-transform: uppercase;
}
.aanbod-filter-sec .select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'Arial-Medium';
	background-color: #141917;
}
.filter-content {
    display: none;
    background-color:#141917;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #F5F5F5;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.filter-content::-webkit-scrollbar {
	background-color: #D9674B;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.20);
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #F5F5F5;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Arial-Medium';
    font-size: 1.6rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #F5F5F5;
    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 #F5F5F5;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #D9674B;
    border-color: #D9674B;
}
.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: #F5F5F5;
    border-radius: 6px;
    background-color:#D9674B;
	font-family: 'Arial-Medium';
    font-size: 1.6rem;
    border: 1px solid #D9674B;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: transparent;
}
.aanbod-filter {
	/* margin-bottom: 18px;
	width: 20%; */
}
.filter-main .row{
    row-gap: 15px;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 66px;
    background-color: #1C2220;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #D9674B;
    border-color: #D9674B;
    padding-right: 15px;
}
.mobile-show-filter .common-btn::after{
    display: none;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #F5F5F5;
}
.mobile-show-filter .common-btn:hover .filter-count{
    background-color: #D9674B;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #1C2220;
	border-radius: 100%;
	color: #F5F5F5;
    border: 1px solid #1C2220;
	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: #D9674B;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #F5F5F5;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #D9674B;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	background-color: #D9674B;
	border-color: #D9674B;
    color: #F5F5F5;
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records::after {
    display: none;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F5F5F5;
}
.auto-overview-filter-result .total_search_records:hover {
    background-color: transparent;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort h6 {
	/* margin-right: 10px;
    color: rgba(249, 248, 246, 0.7);
    font-family: 'Arial-Medium';
    text-transform: none;
    letter-spacing: normal; */
}
.filter-sort .aanbod-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.filter-heading{
    margin-bottom: 41px;
}
.filter-heading h4{
    line-height: normal;
    letter-spacing: 0.2px;
}
/* ============ product-list ============= */
.aanbod-list-car{
    padding-bottom: 133px;
}
.aanbod-list-car .product-img {
    height: 255px;
}
.aanbod-list-car .product-img img {
    height: 100%;
    object-fit: cover;
}
.aanbod-list-car .product-text{
    padding: 20px 22px 13px;
    height: auto !important;
}
.aanbod-list-car .product-text p{
    -webkit-line-clamp: 2;
    height: 47px;
}
.aanbod-list-car .product-text h3{
    font-family: 'Sora-SemiBold';
    font-size: 2rem;
    display: block;
    text-transform: unset;
}
.aanbod-list-car  .product-text .common-btn{
    font-size: 1.8rem;
    padding-top: 4px;
    padding-bottom: 4px;
}
.aanbod-list-car  .product-text .common-btn strong{
    font-family: 'Arial-Bold';
    color: #F5F5F5;
    font-size: 1.4rem;
}
.aanbod-list-car  .product-text .common-btn strong span, .aanbod-list-car  .product-text .common-btn strong small{
    font-family: 'Arial-Regular';
    font-size: 1.4rem;
    color: rgba(245, 245, 245, 0.70);
}
.aanbod-list-car  .product-text .common-btn strong span{
    margin-right: 3px;
    margin-left: 3px;
}
.aanbod-list-car .product-text table{
    width: 100%;
    margin: 12px 0 18px;
}
.aanbod-list-car .product-text table td{
    color: #141917;
    font-family: 'Arial-Regular';
    font-size: 1.6rem;
    line-height: normal;
}
.aanbod-list-car .product-text table td span{
    color: rgba(20, 25, 23, 0.50);
    font-size: 1.2rem;
    display: block;
    margin-top: 6px;
}
.aanbod-list-car .container > .row{
    row-gap: 15px;
}
.aanbod-list-car .each-gal-img-content {
    z-index: 1;
    gap: 0;
}
.aanbod-list-car .list_bg_car p{
    margin: 8px 0 20px;
}
.aanbod-list-car .each-gal-img-content .common-btn {
    border-width: 1px;
}
.list_bg_car{
    /* min-height: 420px; */
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.list_bg_car .service-desc{
    background-color: transparent;
}
.list_bg_car p{
    margin: 0;
}
.list_bg_car h3{
    color: #D9674B;
}
/* ========= aanbod-dtl ====== */
.slider-wrap{
    /* margin-left: -40%; */
    margin-left: -52%;
    margin-right: -10.51%;
}
.aanbod-dtl-car-slider .swiper-button-prev {
    left: 6%;
}
.aanbod-dtl-car-slider .swiper-button-next{
    right: 5%;
}
.aanbod-dtl-car-slider .swiper-slide-prev::before,
.aanbod-dtl-car-slider .swiper-slide-next + .swiper-slide::after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 9;
    background: rgba(0, 0, 0, 0.60);
    border-radius:  20px ;
    transition: all 0.5s;
}
.aanbod-dtl-back p{
    margin-bottom: 0;
}
.aanbod-dtl-back{
    margin-bottom: 50px;
}
.aanbod-dtl-car-slider .swiper-slide img{
    border-radius: 20px;
}
.trns-btn{
    background-color: transparent;
}
.aanbod-dtl-car-btn ul{
    display: flex;
    column-gap: 24px;
    margin-bottom: 0;
}
.aanbod-dtl-car-btn li::after{
    display: none;
}
.aanbod-dtl-car-btn li{
    padding-left: 0;
    margin-bottom: 0;
}
.aanbod-dtl-car-btn{
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}
.share-btn{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.share-logo{
    height: 41px;
    width: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.share-logo:hover{
    background-color: #D9674B;
}
.aanbod-dtl-slider-btm-left ul{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.aanbod-dtl-slider-btm{
    padding: 35px;
    border-radius: 10px;
    background: #D9674B;
    margin-top: 18px;
}
.aanbod-dtl-slider-btm-left li{
    margin-bottom: 0;
    color: rgba(245, 245, 245, 0.80);
}
.aanbod-dtl-slider-btm-left li span {
    color: #F5F5F5;
}
.aanbod-dtl-slider-btm-left li::after{
    background-image: url(../images/tick-black.svg);
    background-color: #F5F5F5;
    height: 16px;
    width: 16px;
    top: 3px;
    background-position: 42% 50%;
    background-size: 9px;
}
.price strong{
    font-weight: normal;
    color: #F5F5F5;
    font-family: 'Sora-SemiBold';
}
.price span{
    color: rgba(245, 245, 245, 0.70);
    font-size: 1.4rem;
    margin-left: 7px;
    font-family: 'Sora-Regular';
}
.price{
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 2rem;
    font-family: 'Sora-SemiBold';
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 60px 0 65px;
	position: relative;
	overflow: hidden;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 50px;
    margin-bottom: 30px;
    border: 0;
    row-gap: 26px;
    justify-content: center;
}
.tab-btn-right {
	margin-bottom: 60px;
}
.aanbod-dtl-slider-btm {
    padding: 30px 40px;
    margin-left: 8.7%;
    margin-right: 8.4%;
}
.aanbod-dtl-car-slider {
    overflow: hidden;
}
/****tab-part****/
ul.tabs li {
    font-family: 'Arial-Medium';
	font-size: 1.6rem;
	line-height: normal;
	margin: 0;
	word-break: break-word;
	text-transform: none;
	color: rgb(245, 245, 245);
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	border: 0;
	max-width: max-content;
	display: inline-block;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding-bottom: 10px;
    padding-left: 0;
    text-transform: uppercase;
    opacity: .7;
    padding-right:20px;
    padding-bottom: 0;
    line-height: 28px;
}

ul.tabs li::after{
  display: none;
}
ul.tabs li::before{
    background-image: url(../images/tab-arow.svg);
    position: absolute;
    right:0;
    top: 8px;
    width: 15px;
    height:10px;
    background-size: 15px;
    background-repeat: no-repeat;
    content: "";
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transform: rotate(180deg)
}
ul.tabs li:hover,
ul.tabs li.active {
	display: block;
	position: relative;
	opacity: 1;
}
ul.tabs li:hover::before,
ul.tabs li.active::before{
    opacity: 1;
    transform: rotate(0deg)
}
.tab_content {
	display: none;
    margin-top: 30px;
}
.tab_drawer_heading {
	display: none;
}
.tab-btn-right ul {
	list-style-type: none;
	display: flex;
	column-gap: 41px;
	justify-content: end;
	padding-left: 0;
}
.tab-btn-right li a {
	color: #f3f3f3;
	font-family: 'neue_montrealregular';
	font-size: 1.6rem;
	line-height: 24px;
	letter-spacing: 0.32px;
	transition: all 0.5s;
}
.tab-btn-right li a:hover {
	text-decoration: underline;
}
/****dtl-tab-content****/
.dtl-tab-sec-wrap{
    background-color: #1C2220;
    overflow: hidden;
    padding: 77px 48px 58px 48px;
    border-radius: 10px;
}
.kenmerken-tab {
	overflow: hidden;
}
.kenmerken-tab h3 {
    line-height: 56px;
    letter-spacing: normal;
    color: #F5F5F5;
	margin: 54px 0 26px;
}
.kenmerken-tab:first-child h3{
    margin-top: 0;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 0;
    border-top: 1px solid rgba(245, 245, 245, 0.3);
}
.kenmerken-tab li {
    width: 33.33%;
    position: relative;
    color: #0E0E0E;
    font-size: 1.6rem;
    line-height: 30px;
    padding: 31px 0 21px;
    /* word-break: break-word; */
    display: flex;
    color: #F5F5F5;
}
.kenmerken-tab li span{
    color: rgba(245, 245, 245, 0.80);
    font-family: 'Arial-Regular';
}
.kenmerken-tab li strong{
    font-weight: normal;
    width: 50%;
    font-family: 'Arial-Medium';
    color: #F5F5F5;
}
.kenmerken-tab li::after {
    display: none;
}
.kenmerken-tab li::before {
    position: absolute;
    left: -100%;
    bottom: 0;
    content: "";
    width: 200vw;
    height: 1px;
    background-color: rgba(245, 245, 245, 0.3);
}
.kenmerken-tab h5{
    color: #F5F5F5;
    margin-bottom: 20px;
}
.bullet-panel h5 {
    color: #F5F5F5;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
	margin-bottom: 10px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin: 0 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: #F5F5F5;
	margin-bottom: 10px;
	/* font-size: 1.6rem; */
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 8px;
    position: absolute;
    top: 7px;
    left: 0;
    content: '';
    width: 8px;
    height: 8px;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9674B;
    font-size: 1.6rem;
    line-height: 24px;
    border-radius: 10px 0 0 10px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #D9674B;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
    border-radius: 0 10px 10px 0;
}
.each-onderhoud-block p {
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    line-height: 30px;
    color: #fff;
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
    text-transform: none;
    font-size: 2.2rem;
}
.tab-btm-btn {
	margin-top: 30px;
}
.tab-btm-btn .common_btn {
    font-family: 'Arial-Medium';
    font-size: 1.6rem;
    color: #F5F5F5;
    line-height: normal;
	position: relative;
}
.kenmerken-tab-block-part {
	display: none;
}
/****aanbod-dtl-slider-sec****/
.aanbod-dtl-slider-sec {
    position: relative;
    overflow: hidden;
    padding: 114px 0 115px;
}
.aanbod-dtl-slider-heading {
    text-align: center;
}
.aanbod-dtl-slider-heading h2{
    color: #0E0E0E;
    margin-bottom: 60px;
}
.aanbod-dtl-slider-sec .common-arrow {
    background-color: #FFF;
    border-color: #0E0E0E;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-width: 2px;
}
.aanbod-dtl-slider-sec .common-arrow:hover{
    background-color: #D9674B;
    border-color: #D9674B;
}
.aanbod-dtl-slider-sec .common-arrow img{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-dtl-slider-sec .common-arrow:hover img{
    filter: brightness(1)invert(0);
}
.aanbod-dtl-slider-sec .swiper-button-prev {
    left: -5%;
}
.aanbod-dtl-slider-sec .swiper-button-next {
    right: -5%;
}
.aanbod-dtl-slider-sec .swiper-button-prev, 
.aanbod-dtl-slider-sec .swiper-button-next {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-dtl-slider-sec .common-arrow img {
    filter: brightness(100) invert(1);
}
.aanbod-dtl-slider-sec .product-slider-content {
    padding: 22px 24px;
    bottom: -98px;
}
.aanbod-dtl-slider-sec .each-product-slider:hover .product-slider-content-btm ul {
    row-gap: 14px;
}
.dtl-review-img{
    margin-top: 21px;
}

/* ============= aanbod-popuo ============== */
.tab-popup-content ul{
    margin-bottom: 30px;
}
.tab-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
  }
  .tab-popup-content-wrap{
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .popup-opacity{
    position: fixed;
    width: 110vw;
    height: 110vh;
    background: rgba(3, 3, 4, 0.73);
    top: 0;
    left: 0;
    z-index: 100;
  }
  .tab-popup-area {
    background: #1C2220;
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 0 35px;
    width: 100%;
    height: 75vh;
    border: 1px solid rgba(242, 242, 242, 0.70);
    border-radius: 10px;
    /* -webkit-box-shadow: 4px -1px 50px 5px rgba(242, 242, 242, 0.70);
    -moz-box-shadow: 4px -1px 50px 5px rgba(242, 242, 242, 0.70);
    box-shadow: 4px -1px 50px 5px rgba(242, 242, 242, 0.70); */
  }
  .popup-cross{
    background:#D9674B;
    width: 29px;
    height: 29px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 15px;
    right: 15px;
    border-radius: 100%;
    cursor: pointer;
  }
  .tab-popup-content {
    overflow-x: clip;
    overflow-y: scroll;
    padding-bottom: 40px;
  }
  .tab-popup-content ul{
    list-style: none;
    padding-left: 0;
    padding-bottom: 0;
  }
  .tab-popup-content ul:last-child{
    margin-bottom: 0;
  }
  .popup-cross img{
    width: 15px;
  }
  .tab-popup-area h5 {
    line-height: normal;
    padding-top: 40px;
    margin-bottom: 5px;
    color: #F2F2F2;
    font-size: 2.4rem;
    /* font-family: 'Widescreen-Medium'; */
    margin-bottom: 17px;
  }
  .show-popup{
    display: none;
  }
  .tab-popup-content h5{
    padding-top: 0;
  }
  .tab-popup-content::-webkit-scrollbar {
    width: 5px;
    padding-left: 20px;
    border-radius: 10px;
  }
  .tab-popup-content::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 10px;
  }
  .tab-popup-content::-webkit-scrollbar-thumb {
    background: #D9674B;
    border-radius: 10px;
  }
  .big-car-slider{
    margin-bottom: 10px;
  }
  /****aanbod-btm-sec*****/
.aanbod-btm-sec {
    padding: 102px 0 189px;
}
.aanbod-btm-title {
    margin-bottom: 102px;
}
.aanbod-btm-sec .product-text {
    padding-top: 15px;
    padding-left: 8px;
}
.aanbod-btm-sec .product-text h3 {
    font-size: 2rem;
}
.aanbod-btm-sec .product-text p {
    margin-bottom: 14px;
}
.aanbod-btm-sec .product-text .common-btn {
    font-size: 1.8rem;
    padding-top: 7px;
    padding-bottom: 7px;
}
.aanbod-btm-slider .common-arrow {
    top: 45%;
}
.aanbod-btm-slider .swiper-button-next {
    right: -60px;
}
.aanbod-btm-slider .swiper-button-prev {
    left: -60px;
}

/*=============== diensten-list ===============*/
/****inner-banner-sec*****/
.inner-banner-sec {
	position: relative;
    overflow-x: clip;
}
.inner-banner-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.inner-banner-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(43, 53, 48, 0.00) 14.39%, rgba(11, 12, 12, 0.40) 85.99%);
    z-index: 1;
}
.inner-banner-content {
	position: absolute;
    bottom: 197px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.inner-banner-img  {
	height: 525px;
	overflow: hidden;
}
.inner-banner-img img {
	height: 100%;
	object-fit: cover;
}
.inner-banner-content-wrap {
    max-width: 820px;
    width: 100%;
}
.inner-banner-content h1 {
    margin-bottom: 30px;
}
/****diens-list-sec*****/
.diens-list-sec {
    padding: 89px 0 72px;
}
.each-list-content {
    position: relative;
}
.diens-list-mark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.each-diens-list {
    margin-bottom: 16px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diens-list:last-child {
    margin-bottom: 0;
}
.each-diens-list .col-lg-7 {
    width: 55%;
}
.each-diens-list .col-lg-5 {
    width: 45%;
}
.each-list-img {
    border-radius: 10px;
    overflow: hidden;
}
.each-list-content {
    border: 1px solid rgba(245, 245, 245, 0.10);
    background: #D9D9D9;
    border-radius: 10px;
    overflow: hidden;
    padding: 58px 89px;
}
.each-list-content h2,
.each-list-content p {
    color: #141917;
}
.each-list-content h2 {
    margin-bottom: 13px;
}
.each-list-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 415px;
    width: 100%;
    margin-bottom: 35px;
}
.each-diens-list:hover .each-list-content {
    background: #D9674B;
}
.each-diens-list:hover .each-list-content h2,
.each-diens-list:hover .each-list-content p {
    color: #F5F5F5;
}
.each-diens-list:hover .common-btn {
    background: #F5F5F5;
    color: #D9674B;
}
.each-diens-list:hover .common-btn::after {
    background-image: url(../images/red-arw.svg);
}
.each-diens-list:hover .diens-list-mark img {
    filter: brightness(0) invert(1);
}
.each-list-content-wrap {
    position: relative;
    z-index: 1;
}
/*=============== diensten-dtl ===============*/
/****back-btn*****/
.back-btn {
    padding-top: 40px;
}
.back-btn .common-btn {
    padding-left: 46px;
    padding-right: 26px;
}
.back-btn .common-btn::after {
    right: auto;
    left: 26px;
    background-image: url(../images/back-btn-arw.svg);
}
/****diens-top-sec*****/
.diens-top-sec {
    padding-top: 79px;
}
.diens-top-img {
    padding-left: 51px;
}
.diens-top-img img {
    border-radius: 10px;
    overflow: hidden;
}
.diens-top-content {
    padding-right: 53px;
}
.diens-top-content h2 {
    margin-bottom: 16px;
}
/****diens-dtl-info-sec*****/
.diens-dtl-info-sec {
    padding: 74px 0;
}
.diens-dtl-info-sec table {
    width: 100%;
}
.diens-dtl-info-sec tr {
    display: flex;
    column-gap: 20px;
}
.diens-dtl-info-sec td {
    width: 33%;
    border-radius: 10px;
    background: #1C2220; 
    padding: 56px 35px 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.diens-dtl-info-sec td:hover {
    box-shadow: 7px 7px 0px -3px rgba(217, 103, 75, 1);
    -webkit-box-shadow: 7px 7px 0px -3px rgba(217, 103, 75, 1);
}
.diens-dtl-info-sec td h3 {
    margin: 20px 0 21px;
}
/****form-sec*****/
.form-sec {
    padding-bottom: 90px;
}
.form-wrap {
    padding: 0 12px;
    max-width: 1454px;
    margin-left: auto;
    margin-right: auto;
}
.form-part .col-lg-7 {
    width: 61%;
}
.form-part .col-lg-5 {
    width: 39%;
}
.form-area {
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding: 116px 95px 113px;
    padding-right: 0;
    height: 100%;
}
.form-area h2 {
    letter-spacing: 2px;
    color: #141917;
    margin-bottom: 14px;
}
.form-area p {
    max-width: 515px;
    width: 100%;
    color: #141917;
    margin-bottom: 75px;
}
.form-area .form-styl{
    background: #F5F5F5;
	color: #141917;
	font-family: 'Arial-Medium';
	font-size: 1.6rem;
	line-height: 20px;
	border: none;
	padding: 17px 0;
	border-bottom: 1px solid rgba(20, 25, 23, 0.30) ;
	border-radius: 0;
	resize: none;
}
.form-area .form-group {
    margin-bottom: 43px;
}
.form-area .form-styl::placeholder{
	color: rgba(20, 25, 23, 0.80);
}
.form-area .form-styl:placeholder {
	color: rgba(20, 25, 23, 0.80);
}
.form-area .form-styl.foto_upload {
    color: rgba(20, 25, 23, 0.80);
}
.form-area .form-styl:focus{
	outline: none;
	box-shadow: none;
	color: #141917;	
	border-color: #141917;
}
.form-area  .form-styl:focus::placeholder{
    color: #141917;
}
.form-area textarea.form-styl {
    min-height: 174px;
    border: 1px solid rgba(20, 25, 23, 0.30);
    border-radius: 5px;
    padding: 20px 23px;
}
.form-area-inner .form-group{
	margin-bottom: 20px;
}
.form-area button {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #F5F5F5;
    border: 1px solid #141917;
    border-radius: 5px;
    color: #141917;
}
.form-area .common-btn::after {
    background-image: url(../images/form-btn-icon.svg);
}
.form-area .common-btn:hover::after {
    filter: brightness(1) invert(1);
}
.form-area .row {
    margin: 0 -15px;
}
.form-area .col-6,
.form-area .col-lg-12 {
    padding: 0 15px;
}
.form-left-top {
    border-radius: 10px;
    overflow: hidden;
    padding: 72px 134px 151px;
    height: 50%;
    position: static !important;
}
.form-left-top-wrap {
    position: relative;
    z-index: 1;
}
.form-left-top p a {
    color: rgba(245, 245, 245, 0.80);
    display: table;
}
.form-left-top p a:hover {
    text-decoration: underline;
    text-underline-position: under;
}
.form-left-top .footer-social {
    margin-top: 22px;
}
.form-left-top .footer-social ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: start;
}
.form-left-top-bg {
    position: absolute;
    width: calc(40% - 20px);
    height: 46%;
    top: 0;
    left: 12px;
    pointer-events: none;
    background: #1C2220;
    border-radius: 10px;
    overflow: hidden;
}
.form-left-top-bg img {
    height: 100%;
}
.form-left-top h4 {
    margin-bottom: 15px;
}
.form-left-img img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.form-left-part {
    height: 100%;
}
.form-left-img {
    height: 50%;
}
.form-left-part {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    row-gap: 12px;
}
.form-btn {
    text-align: end;
}
.form-sec{
    position: relative;
    overflow: hidden;
}
.form-sec::after {
    position: absolute;
    right: 10px;
    top: 0;
    content: "";
    width: calc(60% - 20px);
    height: calc(100% - 90px);
    background-color: #F5F5F5;
    z-index: -1;
    border-radius: 10px;
}
.form-left-top{
    padding-left: 0;
}
.form-left-img {
    height: calc(52% - 85px);
    position: absolute;
    bottom: 90px;
    left: 12px;
    width: calc(40% - 20px);
    border-radius: 10px;
}
/****diens-service-sec*****/
.diens-service-sec {
    padding-bottom: 95px;
}
.diens-service-title {
    margin-bottom: 48px;
}
.diens-service-sec .swiper-button-next {
    right: -4%;
}
.diens-service-sec .swiper-button-prev {
    left: -4%;
}
/*=============== contact ===============*/
/****contact-form-sec*****/
.contact-form-sec {
    margin-top: 11px;
    padding-bottom: 11px;
}
/****map-sec*****/
.map-sec {
    padding-bottom: 11px;
    margin-top: -80px;
}
.map-wrapper {
    padding: 0 12px;
}
.map {
    height: 608px;
    border-radius: 10px;
    overflow: hidden;
}
/*=============== vacature-dtl ===============*/
/****vacature-dtl-top-sec*****/
.vacature-top-sec {
    padding-bottom: 95px;
}
.diens-top-content h2 strong {
    font-weight: normal;
    color: rgba(245, 245, 245, 0.70);
    line-height: normal;
    font-size: 2rem;
    display: block;
}
.diens-top-content h4 {
    /*font-family: 'Arial-Medium';*/
    margin-bottom: 13px;
}
.diens-top-content h4, .vacature-dtl-mid-content h4{
     font-family: 'HelveticaNeueMedium';
}
/****vacature-dtl-mid-sec*****/
.vacature-dtl-mid-sec {
    background: #1C2220;
    padding: 92px 0;
}
.vacature-dtl-mid-sec .col-lg-5 {
    width: 46%;
}
.vacature-dtl-mid-sec .col-lg-7 {
    width: 54%;
}
.vacature-dtl-mid-img {
    border-radius: 10px;
    overflow: hidden;
}
.vacature-dtl-mid-content {
    padding-left: 83px;
}
.vacature-dtl-mid-content h4 {
    /*font-family: 'Arial-Medium';*/
    line-height: 24px;
    margin: 28px 0 16px;
}
.vacature-dtl-mid-content li {
    margin-bottom: 14px;
}
/*=============== bedankt ===============*/
.bedankt-banner-sec {
    position: relative;
    overflow-x: clip;
    padding-bottom: 10px;
}
.bedankt-banner-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.bedankt-banner-wrap::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(43, 53, 48, 0.00) 14.39%, rgba(11, 12, 12, 0.40) 85.99%);
    z-index: 1;
}
.bedankt-banner-wrap p {
    padding-bottom: 30px;
    max-width: 530px;
}
/* ======= popup ========== */
.modal-area .modal-dialog {
    max-width: 49%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background: rgba(20, 25, 23, 0.75);
}
.modal-area .modal-content {
    border: 0;
    background: #F5F5F5;
    backdrop-filter: blur(7px);
    position: relative;
    border-radius: 10px;
}
.modal-area .popup-content {
    text-align: center;
    padding: 10px;
}
.modal-area .popup-content p{
    margin-bottom: 110px;
    width: 100%;
    color: #231F20;
    padding-top: 56px;
    font-family: 'Arial-Medium';
}
.modal-content .col-lg-5 {
    width: 44.5%;
}
.modal-content .col-lg-7 {
    width: 55.5%;
}
.pop-up-image img {
    border-radius: 10px;
}
.close-img {
    position: absolute;
    top: -17px;
    right: -17px;
    height: 42px;
    width: 42px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9674B;
    border-radius: 100%;
}
.close-img img {
    width: 15px;
    height: 15px;
}
.popup-page-logo {
    width: 176px;
    margin: 0px auto;
}
/*=============== verkocht ===============*/
.verkocht-filter-sec h2 {
    line-height: normal;
}
.aanbod-list-car.verkocht-list-car {
    padding-bottom: 102px;
}
.verkocht-list-car .product-text h4{
    color: #141917;
    font-family: 'Sora-SemiBold';
    line-height: 32px;
    padding-bottom: 3px;
}
.verkocht-list-car .product-text .common-btn {
    font-size: 1.8rem;
    padding: 6px 46px 6px 26px;
}
.verkocht-filter-sec .filter-heading {
    margin-bottom: 0;
}
.aanbod-filter-sec.verkocht-filter-sec{
    padding: 42px 0;
    padding-top: 69px;
}
.verkocht-filter-sec .filter-heading h4{
    font-family: 'LamaSans-Medium';
    text-transform: uppercase;
}
.aanbod-list-car.verkocht-list-car .product-text{
    padding: 10px;
}
.aanbod-list-car.verkocht-list-car .product-text p {
    margin-bottom: 16px;
    padding-left: 0;
}
/****verhuur-list***/
.verhuur-list-sec .product-text p {
    font-weight: normal;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.verhuur-list-sec .product-text p strong {
    font-weight: normal;
}
.verhuur-list-sec .product-text h5 {
    padding-left: 0;
}
.verhuur-list-sec .product-text .row {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.verhuur-list-sec  .product-img {
    height: 214px;
}
/*=============== verhuur dtl ===============*/
.Verhuur-dtl-car-slider{
    margin-bottom: 58px;
}
.Verhuur-btm-sce{
    padding: 14px 0 189px;
}
.Verhuur-dtl-car-slider .aanbod-dtl-slider-btm-left {
    padding-right: 40px;
}
body .form-area .error_cls,
body .form-area .success_cls {
    border-top-width: 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}
body .form-area textarea.form-styl.error_cls,
body .form-area textarea.form-styl.success_cls {
    border-top-width: 1px !important;
    border-left-width: 1px !important;
    border-right-width: 1px !important; 
}


/***********************style for developer*****************************/

/*******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: 30px;
      padding-top: 15px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
      background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding: 4px 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(#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;
  }
  .print_pdf_cls{
    width: 17px;
  }
  
  .select2-results__options li::after{
    display: none;
  }
  .voorraadwekker_widget_section .form_part .voorraadwekker_btn:hover, .voorraadwekker_widget_section .form_part .voorraadwekker_btn:focus{
    border-color: #D9674B !important;
  }
  .voorraadwekker_widget_section .form_part .voorraadwekker_btn{
    background-color: #D9674B !important;
  }
  .btn-primary:hover{
    background-color: #D9674B !important;
  }

.la-calculator-inner {
    width: 100% !important;
}
.la-calculator-inner h2{
    color:#000000;
}
.la-outer label {
    font-size: 1.6rem !important;
}
.la-calculator-inner div {
    font-size: 1.4rem !important;
}
.la-form p {
    color: #000000;
}
#lease-auto-calculator .form-control{
  font-size: 1.2rem;
}

.team-slider-sec {
    padding: 43px 0 223px;
}
.team-slider-sec .swiper-button-next{
    right: -56px;
}
.team-slider-sec .swiper-button-prev{
    left: -56px;
}
.each_team_member{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.each-member-content h4{
    text-transform: capitalize;
    line-height: normal;
}
.each-member-content p{
    margin-bottom: 0;
}
.each-member-content{
    border-radius: 0px 0px 10px 10px;
    background: #D9674B;
    position: absuta;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 32px;
}
.each-footer-info img{
	width: 110px;
}

.aanbod-dtl-btm-white {
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px 40px;
    margin: 20px auto 0;
    /*max-width: 1195px;*/
    margin-left: 8.7%;
    margin-right: 8.4%;
}
.aanbod-dtl-btm-white ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.aanbod-dtl-btm-white ul li {
    padding-left: 0;
    color: #121212;
}
.aanbod-dtl-btm-white ul li::after{
    display: none;
}
.aanbod-dtl-btm-white ul li strong{
    font-family: 'Arial-Bold';
    font-weight: normal;
}
.voorraadwekker_widget_section, .voorraadwekker_widget_section .container{
    padding: 0;
}
.voorraadwekker_widget_section .container{
    max-width: 100%;
}
.voorraadwekker_widget_wapper{
    margin: 35px 0;
}