body {
	padding: 0px;
	margin: 0px;
	font-family: 'Inter-Regular';
    font-size: 1.6rem;
    color: #575853;
	background-color: #FFF;
    /*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;
}
/***********brand-marquee**************/
.brand-marquee-sec {
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(270deg, #99D561 0%, #88BD57 100%);
    position: fixed;
	top: 0;
	left: 0;
    z-index: 3;
    transition: all 0.5s ease-in-out;
}
.brand-marquee-sec ul li::before{
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/brand-marquee-tick.svg);
    background-position: center;
    position: relative;
    top: 0;
	background-repeat: no-repeat;
}
.brand-marquee-sec  ul li{
    color: #F7F7F7;
    font-family: 'Inter-Medium';
    line-height: normal;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    padding-left: 0;
}
.brand-marquee-sec li::after {
    display: none;
}
.brand-marquee-wrap {
    display: flex;
    width: max-content;
    gap: 24px;
    align-items: center;
    position: relative;
}
.brand-marquee-sec .container {
    position: relative;
}
.brand-marquee-wrap ul {
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}
.mob-brand-marquee-wrap {
    display: none;
}
.mob-brand-marquee-wrap ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    padding: 0 13px;
    row-gap: 11px;
}
.brand-marquee-sec.marquee-up {
    top: -43px;
}
/******header*******/
.header-area {
	position: fixed;
	top: 43px;
	left: 0;
	width: 100%;
	z-index: 99;
    transition: all 0.5s ease-in-out;
	width: 100%;
	padding: 13px 0;
    background: #F8FCF5;
}
.header-area.nav-up {
    top: 0;
}
.header-logo img {
	width: 199px;
}
.header-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 23px;
}
.header-nav li {
	margin: 0;
    padding-left: 0;
}
.header-nav li::after {
    display: none;
}
.header-nav li a {
	font-family: 'Inter-Medium';
	line-height: normal;
	color: rgba(20, 20, 20, 0.62);
}
.header-nav li a:hover {
	color: #000;
}
.header-btn .common-btn {
	border-color: #575853;
	color: #575853;
}
.header-btn .common-btn::after {
    filter: brightness(1);
}
.header-btn .common-btn:hover::after {
    filter: brightness(0);
}
.header-wrap .col-lg-3 {
    width: 19%;
}
.header-wrap .col-lg-7 {
    width: 64%;
}
.nav-down {
    margin-top: 0;
}
/*******mobile-menu*******/
.menu-btn {
    padding: 10px 18px;
    background-color: #98D461;
    border-radius: 5px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #fff;
    line-height: 22px;
}
.mobile-menu {
	position: absolute;
	top: 75px;
	background: rgba(87, 88, 83, 0.6);
	backdrop-filter: blur(15px);
	height: 70vh;
	width: 100%;
	left: 0;
	padding: 40px;
	clip-path: inset(0 0 100% 0);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    z-index: 5;
}
.mobile-menu-wrap {
	height: 100%;
	overflow-x: auto;
}
.mobile-menu-wrap::-webkit-scrollbar {
	background-color: #101010;
	width: 8px;
	border-radius: 10px;
}
.mobile-menu-wrap::-webkit-scrollbar-thumb {
	background-color: #2c2c2c;
	border-radius: 10px;
}
.mobile-menu ul {
	flex-direction: column;
	text-align: center;
	margin: 0;
}
.mobile-menu.mob-menu-active {
	clip-path: inset(0 0 0 0);
}
.mobile-menu li {
	padding: 0;
	font-size: 1.8rem;
	margin-bottom: 20px;
}
.mobile-menu li a {
	color: #fff;
}
.mobile-menu li a:hover {
	color: #88BD57;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu li::after {
	display: none;
}
.mobile-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
}
/****fix-wp****/
.fixed-part {
    position: fixed;
    right: 3%;
    bottom: 10%;
    z-index: 98;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.fixed-mail img,
.fixed-call img {
    width: 24px;
}
.fixed-mail a {
    width: 63px;
    height: 63px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #88BD57;
    background-color: #fff;
}
.fixed-call a {
    width: 63px;
    height: 63px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #88BD57;
    background-color: #fff;
}
.fix-wp a {
    width: 63px;
    height: 63px;
    border-radius: 100px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #25d366;
}
.fix-wp a img {
    width: 24px;
}
/* ======================= index ========================= */
/********banner********/
.banner-sec {
	position: relative;
    overflow-x: clip;
    padding-top: 131px;
}
.banner-sec .col-lg-5 {
	width: 33%;
}
.banner-sec .col-lg-7 {
	width: 67%;
}
.banner-img {
    width: 100vw !important;
	position: relative;
    z-index: -1;
}
.each-home-banner, .video-banner {
    height: 688px;
}
.each-home-banner img{
    height: 100%;
    object-fit: cover;
}
.video-banner video{
    height: 100%;
    object-fit: cover;
}
.banner-title {
    width: 100%;
    max-width: 574px;
}
.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.banner-content h1 {
	color: #575853;
	font-size: 6.4rem;
}
.banner-content h1 em {
	font-style: normal;
	position: relative;
	padding: 32px 0;
    padding-right: 32px;
    border-radius: 26px;
    background: #FEFFFD;
    z-index: -1;
}
.mob-banner {
    display: none;
}
/****filter-sec****/
.aanbod-filter-sec {
    padding: 203px 0 38px;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #4E6A34;
}
.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: #88BD57;
}
.filter-reset a:hover img {
    filter: brightness(0) saturate(100%) invert(94%) sepia(6%) saturate(3782%) hue-rotate(33deg) brightness(79%) contrast(82%);
}
.select-style {
	width: 100%;
    height: 50px;
    color: #4E6A34;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    border: 1px solid #4E6A34;
    border-radius: 100px;
    padding: 0 30px 0 22px;
    background: url(../images/filter-arrow.svg)  no-repeat 95% center/10px;
    background-color: transparent;
    appearance: none;
    line-height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
    cursor: default;
}
.select-style.show {
    border-radius: 5px 5px 0 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'Inter-Regular';
	background-color: #14181E;
}
.filter-content {
    display: none;
    background-color:#14181E;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #F9F8F6;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.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: #4E6A34;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Inter-Regular';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #4E6A34;
    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 #4E6A34;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #88BD57;
    border-color: #88BD57;
}
.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: #88BD57;
	font-family: 'Inter-Regular';
    font-size: 1.4rem;
    border: 1px solid #88BD57;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
    color: #4E6A34;
    border-color: #88BD57;
    background-color: #D7EAC6;
}
.auto-overview-tag:hover img {
    filter: invert(1);
}
.aanbod-filter {
	margin-bottom: 18px;
	width: 20%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 119px;
    background-color: #575853;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    background-color: #88BD57;
    border-color: #5C813A;
    color: #fff;
}
.mobile-show-filter .common-btn:hover {
    background-color: #D7EAC6;
    color: #575853;
    border-color: #88BD57;
}
.mobile-show-filter .common-btn::after {
    display: none;
}
.filter-count {
    min-width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    color: #575853;
    border: 1px solid #fff;
    margin-left: 4px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn:hover .filter-count {
    background-color: #575853;
    border-color: #575853;
    color: #fff;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #5C813A;
}
.mobile-filter-close span {
    max-width: 32px;
    width: 100%;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: auto;
    border: 1px solid #5C813A;
}
.mobile-filter-close span img {
	width: 9px;
	filter: invert(1);
	-webkit-filter: invert(1);
}
.auto-overview-filter-result .common-btn {
	margin-top: 0;
	background-color: #99D561;
    border-color: #99D561;
    color: #fff;
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    justify-content: center;
}
.filter-up .mobile-show-filter {
    top: 75px;
}
.auto-overview-filter-result .common-btn::after {
    display: none;
}
.auto-overview-filter-result h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .common-btn:hover {
	background-color: transparent;
    border-color: #99D561;
}
.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: '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-area > .row {
    column-gap: 15px;
}
.aanbod-filter-sec .select-style,
.aanbod-filter-sec .select-style.show,
.aanbod-filter-sec .select-style.show:hover {
    color: #4E6A34;
    text-align: center;
    background: url(../images/aanbod-filter-arrow.svg) no-repeat 82% center/8px;
}
.aanbod-filter-sec .select-style:hover {
    background: url(../images/filter-arrow-white.svg) no-repeat 82% center/8px;
    border-color: #3D5625;
    background-color: #5C813A;
    color: #fff;
}
.filter-left-area .col-lg-3 {
    width: 23%;
}
.filter-left-area .filter-content,
.filter-sort .filter-content {
    background-color: #fff;
    border-color: #4E6A34;
}
/****banner-filter****/
.banner-filter {
    margin-top: 54px;
    max-width: 349px;
    width: 100%;
}
.banner-filter h4 {
    margin-bottom: 17px;
}
.banner-filter .filter-main > .row {
    row-gap: 16px;
}
.banner-filter .col-lg-12 {
    width: 100%;
    margin-bottom: 0;
}
.banner-filter .select-style {
    border-color:#575853;
    color: #575853;
}
.banner-filter .select-style:hover,
.banner-filter .select-style.show {
    background: url(../images/filter-arrow-white.svg) no-repeat 95% center / 10px;
    background-color: #575853;
    color: #fff;
}
.banner-filter .filter-content {
    background-color: #575853;
    border-color:#575853;
}
.banner-filter .filter-main {
    margin-bottom: 0;
}
.banner-filter label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Inter-Regular';
    font-size: 1.4rem;
	cursor: pointer;
}
.banner-filter label:last-child {
	margin-bottom: 0;
}
.banner-filter label span {
    float: right;
    color: #fff;
    opacity: 0.65;
}
.banner-filter .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;
}
.banner-filter .form-check-input:checked {
    background-color: #88BD57;
    border-color: #88BD57;
}
.banner-filter .common-btn {
    background-color: #88BD57;
    border-color:#88BD57;
    color: #fff;
    margin-top: 32px;
}
.banner-filter .common-btn::after {
    filter: brightness(0) invert(1);
}
.banner-filter .common-btn:hover {
    background-color: #D7EAC6;
    border-color: #88BD57;
    color: #575853;
}
.banner-filter .common-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(33%) sepia(2%) saturate(1050%) hue-rotate(32deg) brightness(94%) contrast(86%);
}
/****banner-btm-sec****/
.banner-btm-sec {
    background-color: #3D5625;
    padding: 25px 0;
}
.banner-btm-area {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 100px;
}
.each-banner-btm td {
    padding: 0 50px;
    border-right: 2px solid #88BD57;
}
.each-banner-btm td:first-child {
    padding-left: 0;
}
.each-banner-btm td:last-child {
    padding-right: 0;
    border-right: 0;
}
.each-banner-btm h5 {
    font-family: 'Inter-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    color: #fff;
}
/****product-sec****/
.product-sec {
    padding: 82px 0 108px;
    position: relative;
    overflow-x: clip;
}
.product-left-circle {
    position: absolute;
    top: -50%;
    left: 30px;
    width: 1060px;
    height: 1060px;
    pointer-events: none;
    z-index: -2;
}
.product-right-circle {
    position: absolute;
    bottom: -9%;
    right: -12%;
    width: 785px;
    height: 785px;
    pointer-events: none;
    z-index: -2;
}
.product-title {
    margin-bottom: 60px;
}
.product-title h2 {
    color: #575853;
    line-height: 58px;
}
.each-product {
    padding: 16px;
    border-radius: 26px;
    overflow: hidden;
    background-color: #FEFFFD;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product:hover {
    background: #FEFFFD;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
}
.each-product-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.each-product-img-wrap {
	height: 100%;
	width: 100%;
}
.each-product-img img {
	display: none;
}
.each-product-img-wrap img.active {
	display: block;
}
.each-product-progress {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 10px;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.20);
	display: none;
}
.each-product-progress span {
	background-color: #88BD57;
	display: block;
	height: 100%;
	width: 0;
	border-bottom-right-radius: 10px;
}
.each-product-info {
    padding: 22px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.each-product-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product-info p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(87, 88, 83, 0.50);
    margin-top: 10px;
    margin-bottom: 0;
}
.each-product-info table {
    margin: 24px 0 14px;
}
.each-product-info tr {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}
.each-product-info td {
    line-height: 24px;
    color: #575853;
    /* padding: 0 19px; */
    position: relative;
    padding-right: 19px;
    margin-right: 19px;
}
.each-product-info td::after {
    content: "";
    background-color: #575853;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 11px);
    width: 1px;
}
.each-product-info td:first-child {
    /* padding-left: 0; */
}
.each-product-info td:last-child {
    padding-right: 0;
    margin-right: 0;
}
.each-product-info td:last-child::after {
    display: none;
}
.product-price h4 {
    color: #8EC55B;
}
.product-price h4 strong {
    font-family: 'kumbh_sansregular';
    font-weight: normal;
    color: rgba(87, 88, 83, 0.50);
    margin-left: 12px;
}
.product-slider .swiper-slide {
    padding: 11px;
}
.product-slider .swiper-button-next {
    right: -70px;
}
.product-slider .swiper-button-prev {
    left: -70px;
}
.product-btn {
    margin-top: 40px;
}
/****service-sec****/
.service-sec {
    background: #88BD57;
    backdrop-filter: blur(50px);
    padding: 67px 0 60px;
    position: relative;
    overflow: hidden;
}
.service-left-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.service-right-circle {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.service-title {
    width: 100%;
    max-width: 991px;
    margin: 0 auto;
}
.service-title h2 {
    color: #fff;
    line-height: 58px;
}
.service-title h2 strong {
    color: #575853;
}
.service-title p {
    color: #FEFFFD;
    margin: 33px 0 52px;
}
.service-area .row {
    margin: 0 -12px;
}
.service-area .col-lg-4 {
    padding: 0 12px;
}
.each-service {
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-img {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    height: 441px;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.each-service-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, rgba(20, 20, 20, 0.65) 100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #3D5625 0%, #3D5625 100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 0;
}
.each-service:hover .each-service-img::before {
    opacity: 1;
}
.each-service:hover .each-service-img::after {
    opacity: 0;
}
.each-service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 79px 45px;
    text-align: center;
    width: 100%;
}
.each-service-info h3 {
    color: #fff;
    margin-bottom: 30px;
}
.each-service-info p {
    margin-bottom: 0;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-btn {
    margin-top: 30px;
}
/****home-overons-sec****/
.home-overons-sec {
    padding: 126px 0 24px;
    position: relative;
}
.home-overons-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
}
.home-overons-left-circle {
    position: absolute;
    bottom: -45%;
    left: -6%;
    pointer-events: none;
    z-index: -2;
}
 .home-overons-right-circle {
    position: absolute;
    bottom: -63%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.home-overons-overlay {
    border-radius: 26px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.home-overons-overlay::before {
    content: "";
    position: absolute;
    top: -22px;
    left: -8%;
    width: 444px;
    height: 444px;
    border-radius: 444px;
    background: linear-gradient(180deg, #DADADA 0%, #FFF 100%);
    z-index: -1;
}
.home-overons-wrap {
    position: relative;
    z-index: 1;
}
.home-overons-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
    z-index: -1;
}
.home-overons-wrap .col-lg-7 {
    width: 63%;
}
.home-overons-wrap .col-lg-5 {
    width: 37%;
}
.home-overons-area {
    padding: 62px 90px 64px;
    padding-right: 0;
    position: relative;
    z-index: 1;
}
.home-overons-area p {
    padding: 23px 0 40px;
    margin-bottom: 0;
} 
.animated-map {
	max-width: 335px;
	width: 100%;
	margin-right: 0;
    margin-left: auto;
	position: relative;
}
.animated-map-point {
	height: 18px;
	width: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: #fff;
	position: absolute;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.animated-map-point img {
	width: 15px;
}
.animated-map-point {
	animation-duration: 20s;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
}
.map-point1 {
	animation-name: pointmove1;
	top: 29%;
	right: 23.5%;
}
.map-point2 {
	animation-name: pointmove2;
	top: 50%;
	right: 51.5%;
}
.map-point3 {
	animation-name: pointmove3;
	top: 40%;
    right: 56%;
}
.map-point4 {
	animation-name: pointmove4;
    top: 68%;
    right: 60%;
}
@keyframes pointmove1 {
	0% {
		top: 29%;
		right: 23.5%;
	}
    15% {
		top: 27%;
        right: 21.5%;
    }
    20% {
		top: 23%;
        right: 18.5%;
    }
    30% {
		top: 19%;
        right: 16.5%;
    }
    45% {
        top: 15%;
        right: 15%;
    }
	100% {
		top: 12%;
        right: 14.5%;
    }
}
@keyframes pointmove2 {
	0% {
		top: 50%;
		right: 51.5%;
	}
	15% {
		top: 52%;
        right: 48.5%;
    }
	20% {
		top: 52%;
		right: 44.5%;
	}
	30% {
		top: 52.5%;
        right: 40.5%;
    }
	40% {
		top: 53%;
        right: 37.5%;
    }
	45% {
		top: 53.4%;
        right: 34.5%;
    }
    50% {
        top: 52.4%;
        right: 29.5%;
    }
    55% {
        top: 51.4%;
        right: 26.5%;
    }
    60% {
        top: 49.4%;
        right: 23.5%;
    }
    65% {
        top: 48.4%;
        right: 20.5%;
    }
    70% {
        top: 47.4%;
        right: 17.5%;
    }
	100% {
		top: 48%;
		right: 23%;
	}
}
@keyframes pointmove3 {
	0% {
		top: 40%;
		right: 56%;
	}
	15% {
		top: 41.5%;
        right: 59%;
    }
	20% {
		top: 44%;
        right: 62%;
    }
	30% {
		top: 46%;
        right: 64%;
    }
	40% {
		top: 48%;
        right: 66%;
    }
	45% {
		top: 50%;
        right: 68%;
    }
    50% {
        top: 53%;
        right: 70%;
    }
    55% {
        top: 56%;
        right: 69%;
    }
    60% {
        top: 55%;
        right: 66%;
    }
    65% {
        top: 54%;
        right: 64%;
    }
    70% {
        top: 52%;
        right: 61%;
    }
    75% {
        top: 51.5%;
        right: 57%;
    }
	100% {
		top: 51.5%;
        right: 54%;
    }
}
@keyframes pointmove4 {
	0% {
		top: 69%;
        right: 60%;
    }
	20% {
		top: 70%;
        right: 58%;
    }
	30% {
		top: 71%;
		right: 45%;
	}
	40% {
		top: 72%;
		right: 40%;
	}
	45% {
		top: 70.5%;
        right: 52%;
    }
    50% {
        top: 71%;
        right: 50%;
    }
    55% {
        top: 72%;
        right: 47%;
    }
    60% {
        top: 73%;
        right: 44%;
    }
    70% {
        top: 73%;
        right: 35%;
    }
    75% {
        top: 74%;
        right: 31%;
    }
    80% {
        top: 75%;
        right: 28%;
    }
	100% {
		top: 75%;
        right: 26%;
    }
}

/* @keyframes pointmove4 {
	0% {
		top: 68%;
		right: 60%;
	}
	20% {
		top: 68%;
		right: 50%;
	}
	30% {
		top: 71%;
		right: 45%;
	}
	40% {
		top: 72%;
		right: 40%;
	}
	45% {
		top: 78%;
		right: 35%;
	}
	100% {
		top: 80%;
		right: 28%;
	}
} */
.home-overons-right {
    position: relative;
    padding-top: 5px;
}
.home-overons-car-img {
    position: absolute;
    top: 80%;
    left: -12%;
    width: 380px;
    height: 193px;
}
.home-overons-car-img  img {
    height: 100%;
    object-fit: cover;
}
/****about-sec****/
.about-sec {
    position: relative;
}
.about-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
}
.about-area {
    position: relative;
    z-index: 1;
}
.about-img {
    border-radius: 26px;
    overflow: hidden;
}
.about-info {
    padding-left: 24px;
}
.about-info li {
    margin-bottom: 32px;
    padding-left: 0;
}
.about-info li:last-child {
    margin-bottom: 0;
}
.about-info li::after {
    display: none;
}
.about-info h3 {
    color: #141414;
    line-height: 40px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
}
.about-info h3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    background-image: url(../images/hv-small-logo.svg);
    background-size: 36px;
    background-repeat: no-repeat;
    background-position: center center;
}
.about-info p {
    color: #141414;
    margin-bottom: 0;
    width: 100%;
    max-width: 759px;
    border-bottom: 2px solid rgba(20, 20, 20, 0.10);
    padding-bottom: 32px;
}
.about-info li:last-child p {
    border-bottom: 0;
	padding-bottom: 0;
}
/****google-review****/
.google-review {
    padding: 100px 0 120px;
}
/****footer****/
.footer-area {
    background-color: #88BD57;
    padding: 108px 0 68px;
    position: relative;
    overflow: hidden;
}
.footer-left-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.footer-right-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
.footer-wrap {
    position: relative;
}
.footer-top-content {
    display: flex;
    justify-content: center;
    column-gap: 221px;
}
.each-footer-top-info h3 {
    font-family: 'Inter-SemiBold';
    font-size: 2.4rem;
    color: #fff;
    border-bottom: 1px solid #fff;
    max-width: max-content;
    padding-bottom: 4px;
    margin-bottom: 30px;
}
.each-footer-top-info a {
    display: block;
    line-height: normal;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 14px;
}
.each-footer-top-info a:last-child {
    margin-bottom: 0;
}
.each-footer-top-info a:hover {
    color: #fff;
}
.each-footer-top-info td {
    line-height: 24px;
    color: rgba(255, 255, 255, 0.70);
}
.each-footer-top-info td:first-child {
    padding-right: 69px;
}
.footer-social {
    position: relative;
    margin: 74px 0 26px;
    padding: 35px 0;
}
.footer-social::before,
.footer-social::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.40);
}
.footer-social::before {
    top: 0;
}
.footer-social ul {
    display: flex;
    column-gap: 12px;
    justify-content: center;
}
.footer-social ul a {
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 50%;
}
.footer-social ul a:hover {
    background-color: #3D5625;
    border-color: #3D5625;
}
.footer-social ul a:hover img {
    filter: brightness(0) invert(1);
}
.footer-social ul a img {
    width: 23px;
}
.footer-social li {
    padding-left: 0;
}
.footer-social li::after {
    display: none;
}
.footer-btm .col-lg-4 {
    width: 42%;
}
.footer-btm .col-lg-8 {
    width: 58%;
}
.footer-creadit a {
    line-height: 24px;
    color: #fff;
}
.footer-creadit a:hover {
    color: #575853;
}
.footer-logo img {
    width: 199px;
}
.mob-footer-right-circle,
.mob-footer-left-circle {
    display: none;
}
/*****************diensten-list****************/
/****inner-banner****/
.inner-banner {
    position: relative;
    padding-top: 131px;
}
.inner-banner-img {
    position: relative;
}
.inner-banner-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.00) 0%, rgba(20, 20, 20, 0.50) 100%);
}
.inner-banner-content {
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
/****diens-service-list-sec****/
.diens-service-list-sec {
    padding: 189px 0 20px;
    position: relative;
    overflow: hidden;
}
.diens-left-top-circle {
    position: absolute;
    top: -7%;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.diens-left-btm-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.diens-right-circle {
    position: absolute;
    top: 20%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.each-diens-service {
    margin-bottom: 56px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diens-service-img {
    border-radius: 26px;
    overflow: hidden;
}
.each-diens-service-info {
    padding-left: 55px;
    width: 100%;
    max-width: 465px;
}
.each-diens-service-info p {
    margin: 32px 0 30px;
}
.each-diens-service:hover .common-btn {
    background-color: #D7EAC6;
    color: #575853;
}
.each-diens-service img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diens-service:hover img {
    transform: scale(1.1);
}
.diens-service-list-area .each-diens-service-area:nth-child(even) .each-diens-service-info {
    margin-right: 0;
    margin-left: auto;
    padding-right: 85px;
    max-width: 540px;
}
.each-diens-service .col-lg-7 {
    width: 51%
}
.each-diens-service .col-lg-5 {
    width: 49%
}
.diens-service-list-area .each-diens-service-area:nth-child(even) {
    margin-right: -130px;
}
.diens-service-list-area .each-diens-service-area:last-child .each-diens-service {
    margin-bottom: 0;
}
/*****************diensten-dtl****************/
/****back-btn-sec****/
.back-btn-sec {
    padding: 203px 0 32px;
}
.back-btn { 
    flex-direction: row-reverse;
}
.back-btn::after {
    transform: rotate(180deg);
}
/****diens-top-sec****/
.diens-top-sec {
    position: relative;
    padding-bottom: 120px;
}
.diens-top-left-circle {
    position: absolute;
    top: -32%;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.diens-top-right-circle {
    position: absolute;
    top: -16%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.diens-top-area .col-lg-7 {
    width: 51%;
}
.diens-top-area .col-lg-7 {
    width: 49%;
}
.diens-top-img {
    border-radius: 26px;
    overflow: hidden;
}
.diens-top-info {
    padding-left: 57px;
}
.diens-top-info h3 {
    margin-bottom: 26px;
}
.diens-top-info p {
    margin-bottom: 24px;
}
.diens-top-info p:last-child {
    margin-bottom: 0;
}
.diens-top-info h4 {
    color: #575853;
    line-height: 24px;
    margin-bottom: 14px;
}
.diens-top-info li {
    margin-bottom: 14px;
}
.diens-top-info h5 {
    font-family: 'Inter-SemiBold';
    font-size: 1.6rem;
    line-height: 24px;
}
/****price-table-sec****/
.price-table-sec {
    padding-bottom: 120px;
}
.price-table-area .row {
    margin: 0 -6px;
}
.price-table-area .col-xl-3 {
    padding: 0 6px;
}
.each-price-table {
    border-radius: 26px;
    background: #F5F5F5;
    height: 100%;
    position: relative;
}
.each-price-table-title {
    text-align: center;
    border-radius: 26px 26px 0px 0px;
    background-color: #88BD57;
    padding: 28px 14px;
}
.each-price-table-title h3 {
    color: #fff;
}
.each-price-table-title strong {
    display: block;
    font-weight: normal;
    margin-top: 22px;
}
.each-price-table-info {
    padding: 25px 31px 104px;
}
.each-price-table-info li {
    padding-left: 14px;
    margin-bottom: 15px;
}
.each-price-table-info li:last-child {
    margin-bottom: 0;
}
.each-price-table-info li::after {
    display: none;
}
.each-price-table-info li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #575853;
    border-radius: 50px;
}
.each-price-table-btm {
    border-top: 1px solid rgba(87, 88, 83, 0.20);
    padding: 24px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.each-price-table-btm h4 {
    text-align: center;
    font-size: 2rem;
}
/****form-sec****/
.form-sec {
    padding: 142px 0;
    position: relative;
    z-index: 1;
}
.form-wrap {
    border-radius: 20px;
    overflow: hidden;
    max-width: 1188px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.form-left-part {
    padding: 56px 77px 73px 57px;
    position: relative;
    background-color: #F8F9FD;
}
.form-left-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.form-title {
    margin-bottom: 35px;
}
.form-title h2 {
    color: #575853;
    line-height: normal;
}
.form-main-area .form-styl {
    resize: none;
    border: none;
	border-bottom: 2px solid rgba(87, 88, 83, 0.20);
    background-color: transparent;
    color: #181716;
    font-family: 'Inter-Regular';
    font-size: 1.6rem;
    padding: 0;
    padding-bottom: 18px;
	line-height: 28px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    position: relative;
    z-index: 1;
}
.form-main-area .form-group {
    margin-bottom: 56px;
    position: relative;
}
.form-styl:focus {
    color: #181716;
    border-color: #88BD57;
}
.form-main-area .form-styl::placeholder{
    color: rgba(24, 23, 22, 0.50);
}
.form-main-area .form-styl:placeholder {
    color: rgba(24, 23, 22, 0.50);
}
.form-main-area .form-styl:focus{
    outline: none;
    box-shadow: none;
    color: #181716;
    border-color: #88BD57;
    background-color: transparent;
}
.form-main-area .form-styl:focus::placeholder{
    color: #181716;
}
.form-main-area textarea.form-styl {
    min-height: 109px;
    padding: 0;
    border-bottom: 2px solid rgba(87, 88, 83, 0.20);
}
.form-main-area .form-styl.photo_upload,
.form-main-area .form-styl.foto_upload {
    color: rgba(24, 23, 22, 0.50);
}
.form-main-area label {
	font-family: 'Inter-Regular';
	color: rgba(24, 23, 22, 0.50);
    font-size: 1.6rem;
	position: absolute;
	left: 0;
	top: 3px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.form-main-area label strong {
	color: rgba(24, 23, 22, 0.50);
}
.form-main-area input[type=text].form-styl:focus + label {
	color: rgba(24, 23, 22, 0.50);
}
.form-main-area input[type=text].form-styl:focus + label strong {
	color: #88BD57;
}
.form-main-area textarea.form-style {
    min-height: 214px;
	border-radius: 13px;
}
.form-main-area textarea.form-style:focus {
	border-radius: 13px;
}
.form-main-area .col-lg-6,
.form-main-area .col-lg-12 {
	padding: 0 24px
}
.form-main-area .row {
	margin: 0 -24px;
}
.form-main-area .form-group.form-comment {
    margin-bottom: 0;
}
.form-btn {
    margin-top: 32px;
}
.form-left-part,
.form-right-part {
    height: 100%;
}
.form-right-part {
    background-color: #88BD57;
    text-align: center;
    padding: 68px 0;
    position: relative;
}
.form-right-top-circle {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.form-right-btm-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
.form-right-content {
    position: relative;
    z-index: 1;
}
.each-form-right-info {
    margin-bottom: 42px;
}
.each-form-right-info h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 12px;
}
.each-form-right-info p {
    margin-bottom: 0;
}
.each-form-right-info a {
    font-size: 1.6rem;
}
.each-form-right-info a:hover {
    color: #5C813A;
}
.each-form-right-info table {
    margin: 0 auto;
    text-align: start;
}
.each-form-right-info td {
    line-height: 24px;
    color: #fff;
}
.each-form-right-info td:first-child {
    padding-right: 30px;
}
.form-right-social {
    padding-top: 44px;
}
.form-right-social ul {
    display: flex;
    column-gap: 10px;
    justify-content: center;
}
.form-right-social li {
    padding-left: 0;
}
.form-right-social li a img {
    filter: brightness(0) invert(1);
    width: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.form-right-social li::after {
    display: none;
}
.form-right-social li a {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
}
.form-right-social li a:hover {
    background-color: #fff;
}
.form-right-social li a:hover img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(44%) saturate(544%) hue-rotate(74deg) brightness(97%) contrast(94%);
}
/****diens-btm-sec****/
.diens-btm-sec {
    padding: 124px 0 20px;
    position: relative;
}
.diens-btm-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
}
.diens-btm-left-circle {
    position: absolute;
    top: -42%;
    left: 0;
    pointer-events: none;
}
.diens-btm-right-circle {
    position: absolute;
    bottom: -25%;
    right: 0;
    pointer-events: none;
}
.diens-btm-area {
    position: relative;
    z-index: 1;
}
.diens-btm-title {
    margin-bottom: 68px;
}
.diens-btm-sec .each-service-info {
    padding-top: 76px;
    padding-bottom: 76px;
}
/****diens-google-review****/
.diens-google-review {
    position: relative;
}
.diens-google-review::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
}
.google-review-img {
    position: relative;
    z-index: 1;
}
/****range-sec****/
.range-sec {
    padding-bottom: 120px;
}
.range-sec .common-btn {
    border-color: #fff;
    color: #fff;
    margin-top: 28px;
}
.range-wrap {
    border-radius: 20px;
    background: #95D05F;
    padding: 76px 10px 69px;
}
.range-title h3,
.range-title p {
    color: #fff;
}
.range-title p {
    margin: 28px 0;
}
.range-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 908px;
    width: 100%;
    margin: 0 auto;
}
.min-vlue,
.max-value {
    width: 9%;
    font-family: 'kumbh_sansbold';
    font-size: 2.4rem;
    line-height: normal;
    color: #fff;
}
.max-value {
    width: 11%;
    text-align: end;
}
.range-area #slider {
    width: 80%;
}
.ui-widget.ui-widget-content {
    border: 0;
    height: 10px;
}
.ui-state-default, 
.ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default, 
.ui-button, 
html .ui-button.ui-state-disabled:hover, 
html .ui-button.ui-state-disabled:active {
    border: 1px solid #fff;
    background: #fff;
    font-weight: normal;
    color: #fff;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    transform: translateY(-50%);
    border-radius: 50px;
}
.ui-slider-horizontal .ui-slider-range {
    background: #fff;
}
/*****************contact****************/
/****map****/
.map {
    height: 600px;
    margin-top: 131px;
}
/****contact-form-sec****/
.contact-form-sec {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}
.contact-form-sec .form-title {
    position: relative;
    z-index: 1;
}
.contact-form-left-circle {
    position: absolute;
    top: -43%;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.contact-form-right-circle {
    position: absolute;
    bottom: -7%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.contact-form-sec .form-left-part { 
    background-color: #F5F5F5;
}
.form-small-circle1 {
    position: absolute;
    top: 0;
    right: -1px;
    pointer-events: none;
}
.form-small-circle2 {
    position: absolute;
    top: 50%;
    right: -1px;
    pointer-events: none;
}
.form-small-circle3 {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.contact-form-sec .form-right-part {
    position: relative;
}
.contact-form-sec .form-right-part::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(136, 189, 87, 0.95) 0%, rgba(136, 189, 87, 0.95) 100%);
}
/****contact-btm-sec****/
.each-contact-btm-img {
    border-radius: 26px;
    overflow: hidden;
}
/*****************over-ons****************/
/****overons-about-sec****/
.overons-about-sec {
    padding: 214px 0 120px;
    position: relative;
}
.overons-about-area h2 {
    margin-bottom: 13px;
}
.overons-about-img {
    max-width: 455px;
    margin-right: 0;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
}
.overons-about-left-circle {
    position: absolute;
    bottom: -10%;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.overons-about-right-circle {
    position: absolute;
    top: 22%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
/****overons-mid-sec****/
.overons-mid-sec {
    position: relative;
}
.overons-mid-btm-circle {
    position: absolute;
    bottom: -73%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.overons-mid-top .about-info {
    width: 100%;
    max-width: 642px;
}
.overons-mid-top-map .animated-map {
    margin-left: 0;
    margin-right: auto;
}
.overons-mid-btm-img {
    border-radius: 20px;
    overflow: hidden;
}
.overons-mid-btm .about-info {
    padding-left: 55px;
    width: 100%;
    max-width: 603px;
}
/****overons-team-sec****/
.overons-team-sec {
    padding: 120px 0 48px;
}
.overons-team-wrap {
    padding: 0 16px;
}
.each-team-member {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.each-team-member-info {
    background: #121212;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px 32px;
}
.each-team-member-info h3 {
    color: #fff;
    margin-bottom: 18px;
}
.each-team-member-info p {
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
}
.overons-team-slider .common-arrow {
    background-color: #D9D9D9;
    border-color: #575853;
}
.overons-team-slider .common-arrow:hover {
    background-color: #88BD57;
    border-color: #88BD57;
}
.overons-team-slider .swiper-button-prev {
    left: 26px;
}
.overons-team-slider .swiper-button-next {
    right: 26px;
}
/*****************aanbod-list****************/
.aanbod-product-area .row {
    row-gap: 48px;
}
/*****************verkocht****************/
.verkocht-top-sec {
    padding: 75px 0 68px;
}
.verkocht-top-right {
    text-align: end;
}
/*****************vacature-dtl****************/
.vacature-table-block {
    padding-bottom: 120px;
}
.vacature-table-block tr {
    display: flex;
    flex-wrap: wrap;
    column-gap: 22px;
}
.vacature-table-block td {
    border-radius: 26px;
    background: #F5F5F5;
    width: 49%;
}
.vacature-table-block h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 35px 24px;
}
.vacature-table-block h3::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 26px 26px 0px 0px;
    background: #88BD57;
    z-index: -1;
}
.vacature-table-block ul {
    padding: 18px 24px 38px;
}
.vacature-table-block li {
    margin-bottom: 12px;
}
.vacature-table-block li:last-child {
    margin-bottom: 0;
}
/*****************aanbod-dtl****************/
/****aanbod-back-btn****/
.aanbod-back-btn {
    padding-bottom: 0;
}
.mob-aanbod-back-btn {
    display: none;
}
/****delen-btn****/
.delen-btn {
    margin-top: -49px;
    padding-bottom: 32px;
}
.delen-btn .common-btn::after {
    display: none;
}
.delen-btn .common-btn img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.delen-btn .common-btn:hover img {
    filter: invert(1);
}
.mob-delen-btn {
    display: none;
}
/****dtl-top-sec****/
.dtl-top-sec {
    position: relative;
}
.dtl-left-circle {
    position: absolute;
    top: -38%;
    left: 0;
    pointer-events: none;
    z-index: -2;
}
.dtl-right-circle {
    position: absolute;
    bottom: -70%;
    right: 0;
    pointer-events: none;
    z-index: -2;
}
.dtl-top-area .col-lg-8 {
    width: 65%
}
.dtl-top-area .col-lg-4 {
    width: 35%
}
.dtl-top-slider .col-md-9 {
    width: 79%;
}
.dtl-top-slider .col-md-3 {
    width: 21%;
}
.gallery-thumbs-wrapper .swiper-slide {
    height: 101px !important;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide {
	height: 100%;
}
.dtl-top-sec .gallery-thumbs .dtl-car-slide img { 
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide .dtl-car-slide {
    border: 2px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.gallery-thumbs .swiper-slide-thumb-active .dtl-car-slide {
    border-color: #88BD57;
}
.dtl-car-slide {
    border-radius: 10px;
    overflow: hidden;
}
.gallery-thumbs {
    position: relative;
}
.gallery-thumbs::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 14%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 2;
    pointer-events: none;
}
.gallery-thumbs {
    height: 100%;
    object-fit: cover;
}
.dtl-car-slide {
    position: relative;
}
.gallery-thumbs .dtl-car-slide::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
}
.gallery-thumbs .swiper-slide-thumb-active .dtl-car-slide::before {
    background: transparent;
}
.aanbod-top-slider .swiper-button-next {
    right: -20px;
}
.aanbod-top-slider .swiper-button-prev {
    left: -20px;
}
.dtl-top-info {
    border-radius: 10px;
    background: #FEFFFD;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    padding: 44px 31px 40px;
}
/* .aanbod-top-info-top h2, 
.aanbod-top-info-top p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.aanbod-top-info-top p {
    color: rgba(87, 88, 83, 0.50);
    margin-top: 6px;
    margin-bottom: 0;
}
.aanbod-top-info-mid table {
    width: 100%;
    max-width: 330px;
    margin: 33px 0 17px;
}
.aanbod-top-info-mid tr {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.aanbod-top-info-mid tr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 44%;
    width: 1px;
    height: 100%;
    background-color: rgba(87, 88, 83, 0.20);
}
.aanbod-top-info-mid td {
    width: 50%;
    padding-bottom: 15px;
    margin-bottom: 17px;
    position: relative; 
}
.aanbod-top-info-mid td::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 39px);
    height: 1px;
    background-color: rgba(87, 88, 83, 0.20);
}
.aanbod-top-info-mid td:nth-last-child(2), 
.aanbod-top-info-mid td:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.aanbod-top-info-mid td:nth-last-child(2)::after, 
.aanbod-top-info-mid td:last-child::after {
    display: none;
}
.aanbod-top-info-mid td p {
    margin-top: 11px;
    margin-bottom: 0;
}
.aanbod-top-price h4 {
    color: #8EC55B;
}
.aanbod-top-price h4 strong {
    font-weight: normal;
    color: rgba(87, 88, 83, 0.50);
    font-family: 'kumbh_sansregular';
    margin-left: 12px;
}
.aanbod-contact-dtls {
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid rgba(87, 88, 83, 0.10);
    background: #FEFFFD;
}
.aanbod-contact-dtls .row {
    align-items: center;
}
.aanbod-contact-dtls .col-3 {
    width: 28%;
}
.aanbod-contact-dtls .col-9 {
    width: 72%;
}
.aanbod-contact-dtls-img {
    width: 85px;
    height: 85px;
}
.aanbod-contact-dtls-img img {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.aanbod-contact-info {
    padding-left: 5px;
}
.aanbod-contact-info p {
    margin-bottom: 0;
    margin-top: 9px;
}
.aanbod-contact-info a {
    color: #575853;
}
.aanbod-contact-info a:hover {
    color: #88BD57;
}
.aanbod-top-price {
    margin: 30px 0 33px;
}
.dtl-right-btn {
    margin-top: 14px;
}
.dtl-right-btn ul {
    display: flex;
    column-gap: 8px;
    justify-content: end;
}
.dtl-right-btn li {
    padding-left: 0;
}
.dtl-right-btn li::after {
    display: none;
}
.dtl-right-btn li .common-btn {
    background-color: #88BD57;
    border-color: #88BD57;
    color: #fff;
}
.dtl-right-btn li .common-btn::after {
    filter: brightness(0) invert(1);
}
.dtl-right-btn li .common-btn:hover {
    background-color: #D7EAC6;
    border-color: #88BD57;
    color: #575853;
}
.dtl-right-btn li .common-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(33%) sepia(2%) saturate(1050%) hue-rotate(32deg) brightness(94%) contrast(86%);
}
.aanbod-contact-dtls-img {
    width: 85px;
    height: 85px;
}
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 120px 0;
	position: relative;
	overflow: hidden;
}
.tab-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    opacity: 0.5;
}
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 42px;
    margin-bottom: 57px;
    border: 0;
    row-gap: 20px;
}
.tab-btn-right {
	margin-bottom: 60px;
}
.tab-area {
	position: relative;
	z-index: 1;
}
.tab-area .col-lg-8 {
    width: 70%;
}
.tab-area .col-lg-4 {
    width: 30%;
}
/****tab-part****/
.kenmerken-tab {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
}
.kenmerken-tab table {
    width: 100%;
    background: #FFF;
}
.kenmerken-tab tr {
    display: flex;
    flex-wrap: wrap;
    padding: 11px 49px 7px;
    position: relative;
}
.kenmerken-tab tr::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 32px;
	content: "";
	background: #fff;
}
.kenmerken-tab td {
    padding: 39px 55px 44px;
    width: 25%;
    flex-shrink: 0;
    position: relative;
    border-bottom: 2px solid rgba(15, 23, 38, 0.20);
    margin-bottom: -5px;
}
.kenmerken-tab td::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    content: "";
    background: rgba(15, 23, 38, 0.20);
}
.kenmerken-tab td:first-child,
.kenmerken-tab td:nth-child(5n) {
	padding-left: 0;
}
.kenmerken-tab td:nth-child(4n) {
    padding-right: 0;
}
.kenmerken-tab td:nth-child(4n)::after {
    display: none;
}
ul.tabs li {
	line-height: normal;
	margin: 0;
	word-break: break-word;
	text-transform: none;
	cursor: pointer;
	max-width: max-content;
	display: inline-block;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-radius: 50px;
    font-size: 1.8rem;
}
ul.tabs li.common-btn:hover {
    background-color: #5C813A;
    color: #fff;
    border-color: #3D5625;
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
.tab_last::after {
    display: none;
}
.tab-area .price-table-sec {
    padding-bottom: 0;
}
.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;
}
.kenmerken-tab {
	overflow: hidden;
}
.kenmerken-tab h3 {
    font-family: 'Inter-Medium';
    color: #0F1726;
    margin-bottom: 6px;
}
.kenmerken-tab h4 {
    font-family: 'Inter-Medium';
    color: #0F1726;
    font-size: 1.8rem;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}
.kenmerken-tab li {
    font-family: 'walkway_boldregular';
    width: 40%;
    position: relative;
    color: #F5F5F5;
    line-height: 22px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    word-break: break-word;
    padding-right: 20px;
    padding-left: 30px;
    letter-spacing: 1.6px;
}
.kenmerken-tab li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.50);
}
.kenmerken-tab li:nth-child(even) {
    color: rgba(245, 245, 245, 0.70);
    padding-left: 0;
    width: 60%;
}
.kenmerken-tab li:last-child, .kenmerken-tab li:nth-last-child(2) {
    margin-bottom: 0;
}
.bullet-panel h5 {
    font-size: 2rem;
    border-bottom: 1px solid #88BD57;
    padding-bottom: 10px;
	margin-bottom: 10px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 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;
	margin-bottom: 10px;
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 7px;
    position: absolute;
	top: 8px;
    left: 0;
    content: '';
    width: 7px;
    height: 7px;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #88BD57;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #88BD57;
    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;
    color: #FFF;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h5 {
    text-transform: none;
    font-size: 2.2rem;
}
.tab-btm-btn {
    margin-top: 60px;
}
.tab-btm-btn .common-btn {
  cursor: pointer;
}
.tab-btm-btn .common-btn::after {
    display: none;
}
.kenmerken-tab-block-part {
	display: none;
}
.Afleverpakketten-tab-wrap {
    display: flex;
    column-gap: 69px;
}
.each-table h4 {
    margin: 24px 0;
}
.each-table {
    border: 1px solid #0F1726;
    border-radius: 10px;
    overflow: hidden;
    background: #1F293D;
    padding: 30px 40px 97px;
}
.each-table li {
    color: #fff;
    line-height: 24px;
    letter-spacing: 0.36px;
    position: relative;
    margin-bottom: 17px;
    padding-left: 34px;
}
.each-table li::after {
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    content: "";
    background-image: url(../images/black-tick-round.svg);
    background-size: 22px;
    background-repeat: no-repeat;
}
.each-table:last-child {
    margin-bottom: 0;
    border: 1px solid rgba(31, 41, 61, 0.22);
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.13);
}
.each-table:last-child li::after {
    background-image: url(../images/white-tick-round.svg);
}
.each-table:last-child li {
    color: #1C1C1C;
}
/*****kenmarken-popup******/
.kenmarken-popup {
	display: none;
}
.kenmarken-popup-wrap {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.kenmarken-popup-overlay {
	position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #88BD57;
    box-shadow: 0px 0px 25px 0px rgba(136, 189, 87, 1);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(136, 189, 87, 1);
    overflow: hidden;
}
.kenmarken-popup-close {
	background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #575853;
}
.kenmarken-popup-close img {
	width: 25px;
    filter: brightness(100) invert(1);
}
.kenmarken-popup-content {
	overflow-y: scroll;
	height: calc(100% - 116px);
	padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar  {
	background-color: #5B5A5E;
	width: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.kenmerken-popup-model {
	padding-bottom: 30px;
	padding-right: 40px;
}
.kenmerken-popup-model h3 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
    font-size: 3rem;
}
.kenmerken-popup-model p {
    margin-bottom: 0;
}
.kenmerken-popup-model h6 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(31, 41, 61, 1);
}
.kenmarken-popup-content h3 {
    margin-bottom: 16px;
    line-height: 32px;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 61px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    color: #0F1726;
    line-height: 24px;
    letter-spacing: 0.36px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1.5px solid #D9D9D9;
}
.kenmarken-popup-content li:nth-child(even) {
    color: rgba(15, 23, 38, 0.70);
}
.kenmarken-popup-content li::after {
    display: none;
}
/****dtl-product-sec****/
.product-sec.aanbod-dtl-btm-sec {
    padding-top: 135px;
    padding-bottom: 0;
    position: relative;
}
.aanbod-dtl-btm-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.94) 100%);
}
.dtl-product-left-circle {
    position: absolute;
    top: -32%;
    left: 0;
    pointer-events: none;
}
.dtl-product-right-circle { 
    position: absolute;
    bottom: -22%;
    right: 0;
    pointer-events: none;
}
.aanbod-dtl-btm-area {
    position: relative;
    z-index: 1;
}
.aanbod-dtl-btm-sec .product-title h2 {
    color: #141414;
}
.dtl-product-slider .swiper-slide {
    padding: 11px;
}
.dtl-product-slider .swiper-button-next {
    right: -70px;
}
.dtl-product-slider .swiper-button-prev {
    left: -70px;
}
/*****************bedankt****************/
.bedankt-banner .col-lg-5 {
    width: 43%;
}
.bedankt-banner .col-lg-7 {
    width: 57%;
}
.bedankt-banner .common-btn {
    background-color: #88BD57;
    border-color: #88BD57;
    color: #fff;
    margin-top: 36px;
}
.bedankt-banner .common-btn::after {
    filter: brightness(0) invert(1);
}
.bedankt-banner .common-btn:hover {
    background-color: #D7EAC6;
    border-color: #88BD57;
    color: #575853;
}
.bedankt-banner .common-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(33%) sepia(2%) saturate(1050%) hue-rotate(32deg) brightness(94%) contrast(86%);
}
/****popup****/
.modal-area .modal-dialog {
    max-width: 66.85%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
}
.modal-area .modal-content {
    position: relative;
    border-radius: 20px;
    background: #F8FCF5;
    overflow: hidden;
    border: 0;
    padding: 10px;
}
.modal-area .popup-content {
    padding: 70px 69px 10px 79px;
    background: #F8FCF5;
}
.pop-up-image {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.pop-up-image img {
    height: 100%;
    object-fit: cover;
}
.popup-content h3 {
    font-size: 3.6rem;
    line-height: 44px;
    margin: 33px 0 36px;
}
.popup-content ul {
    margin-bottom: 35px;
}
.popup-content li {
    margin-bottom: 9px;
}
.popup-content li:last-child {
    margin-bottom: 0;
}
.popup-content p:last-child {
    margin-bottom: 30px;
}
.close-img {
    position: absolute;
    top: 13px;
    right: 17px;
}
.close-img img {
    width: 11px;
}
.modal-main-content .col-lg-5 {
    width: 45%;
}
.modal-main-content .col-lg-7 { 
    width: 55%;
}
/*=========================================STYLE FOR DEVELOPERS==============================================*/

/*******loader*****/
#loader_section{
    display:none;
    width:100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
  }
  #loader_section p{
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  #loader_section img{
    width: 100px;
    margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
      background: #000000;
      width: 100%;
      height: 50px;
      display: block;
      text-align: center;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer:hover {
      background: #202020;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
      height: 35px;
      padding-top: 15px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
      background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
      background-repeat: no-repeat;
      background-position: left;
      padding: 4px 10px 6px 20px;
      color: #000;
      background-size: contain;
  }
  .star_icon{
      margin-bottom: 30px;
  }
  .star_icon 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;
  }
  
  /* .fixed-whatsapp-icon {
      width: 70px;
      height: 70px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      right: 10px;
      bottom: 0px;
      z-index: 999;
  }
  
  .fixed-whatsapp-icon img {
      width: 50px;
  } */
  
  .popup .popuptext {
      display: none;
      width: 200px;
      background-color: #097100;
      color: #fff;
      text-align: center;
      border-radius: 20px;
      padding: 8px 0;
      position: absolute;
      z-index: 1;
      bottom: 3px;
      right: 3vw;
      font-size: small;
  }
  
  .notifcation {
      position: relative;
  }
  
  .alert-number {
      display: none;
      position: absolute;
      bottom: 28px;
      left: 16px;
      border-radius: 50%;
      width: 17px;
      height: 17px;
      background-color: red;
      color: white;
      text-align: center;
      font-size: small;
      animation: shake 0.5s;
      animation-iteration-count: 1;
  }
  
  @media screen and (max-width: 600px) {
      .popuptext {
          right: 60px !important;
      }
  }
  @media (max-width : 767.98px){
      .fixed-whatsapp-icon{
          display: none;
      }
  }
  /* .footer-area{
      margin-bottom: 22px;
  } */
  .each-service:hover .each-service-arrow .common-arrow-part{
      background-color: #FAFAFA;
  }
  .privacy_section h2{
      padding-top: 85px;
  }
  
  .each-price-table li::after {
      display: none;
  }
  .range-sec .range-area .fill{
      background-color: #121212;
  }
  /* .share-social-media-button{
      padding: 6px 9px;
  } */
  /* @media(max-width: 519px) and (min-width: 416px){
      .calculator{
          height: 1670px !important;
      }
  }
  @media(max-width: 415px){
      .calculator{
          height: 1826px !important;
      }
  }
  
  
  @media(max-width: 990px) and (min-width: 768px){
      .calsty {
          height: 789px;
      }
  }
  @media(max-width: 767px) and (min-width: 519px){
      .calsty {
      height: 689px;
  }
  }
  @media(max-width: 518px){
      .calsty {
      height: 810px;
  }
  } */
  /* .col-lg-4:nth-child(1) .each-diens-dtl-btm{
      flex-direction: column-reverse;
  } */

  .success_cls, .error_cls {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
  }
  








.banner-content {
    top: 26%;
    transform: none;
    padding-bottom: 40px;
}
.banner-btm-area .each-banner-btm:first-child h5 {
    font-family: 'Inter-Bold';
}
.verkocht-top-sec {
    padding-top: 208px;
}
.home-overons-sec {
    overflow: hidden;
}
.home-overons-car-img {
    display: none;
}
.home-overons-wrap .col-lg-7 {
    width: 61%;
}
.home-overons-wrap .col-lg-5 {
    width: 39%;
}
.home-overons-right {
    padding-top: 0;
}
.animated-map {
    max-width: 480px;
    top: -55px;
    left: 12%;
}
.each-footer-top-info a {
    line-height: 34px;
}
.each-footer-top-info h3 {
    margin-bottom: 22px;
}
.each-footer-top-info a {
    margin-bottom: 0;
}
.nav-up {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
}
.footer-area {
    padding: 108px 0 42px;
}
.mobile-menu {
    height: 100vh;
}
.privacy_section {
    padding: 50px 0;
}
.aanbod-filter-sec .col-xl-9 {
    width: 82%;
}
.aanbod-filter-sec .col-xl-3 {
    width: 18%;
}
.filter-left-area .col-lg-3 {
    width: 20%;
}
.filter-left-area > .row {
    column-gap: 0px !important;
}
.gallery-thumbs-wrapper {
    height: 427px;
}
.modal-area2 .popup-right .form-group label {
    display: block !important;
}
.star_icon h5 {
    font-size: 2rem;
    border-bottom: 1px solid #88BD57;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.banner-filter .prijs-van-filter .form-check-input {
    display: none;
}
.each-price-table {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-price-table:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
}
.min-vlue, .max-value {
  width: 15%;
  padding-right: 20px;
}
.range-area #slider {
  width: 72%;
}
.max-value {
  width: 13%;
  text-align: end;
  padding-left: 10px;
  padding-right: 0;
}
.range-area {
  max-width: 938px;
}
.range-slider {
    background: #fff;
    height: 10px;
    border-radius: 10px;  
}
.range-slider::-webkit-slider-runnable-track {
  background: #fff;
  height: 10px;
  border-radius: 10px;
}
.range-slider::-moz-range-track {
  background: #fff;
  height: 10px;
  border-radius: 10px;
}
.range-slider::-ms-track {
  background: #fff;
  height: 10px;
  border-radius: 10px;
}
.overons-mid-top .about-info {
    padding-left: 0;
}
.overons-mid-top {
  padding-bottom: 14px;
}
.each-team-member,
.each-team-member-info {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-team-member:hover .each-team-member-info {
    background-color: #88BD57;
}
.footer-social ul a img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-filter-sec .aanschafprijs-filter .form-check-input {
    display: none;
}
.range-sec .select-styl {
  border-radius: 30px;
  border: 1px solid #4E6A34;
  padding: 10px 20px;
  color: #4E6A34;
  background: url(../images/aanbod-filter-arrow.svg) no-repeat 91% center / 8px;
  background-color: #fff;
}
.range-sec .calculator_btn::after {
  filter: brightness(0) invert(1);
}
.each-price-table li::after {
    display: none;
}
.each-service {
    margin-bottom: 20px;
}
.range-sec .row {
  row-gap: 15px;
}
.checkbox_main_div {
    margin-top: 10px;
}
.bedankt-banner .banner-content { 
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 0;
}
.form-main-area body .success_cls, .form-main-area body .error_cls {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
}
.switch_input_main_div input[type=checkbox].switch_input:checked {
     accent-color: #fff;
}
.switch_input_main_div {
    display: flex;
    align-items: center;
    column-gap: 3px;
    justify-content: center;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  cursor: pointer;
}
input.range_val.input_range {
    background-color: #88BD57;
    border: 0;
}
input.range_val.input_range {
    background-color: transparent;
    border: 0;
    color: #fff;
    width: calc(100% - -5%);
    padding: 0 12px;
}
.range-sec .row {
    row-gap: 0 !important;
    justify-content: center;
}
.range-sec .col-6 {
    width: 25%;
}
.select-arrow .input.select {
    margin-bottom: 10px;
}
.range_val_h4.min strong {
    font-weight: normal;
}
.checkbox_main_div span.switch-label {
    color: #fff;
}
.switch_input_main_div input {
    width: 15px;
    height: 15px;
}
 input[type=range].range-slider {
  -webkit-appearance: none;
}
input[type=range].range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  height: 30px;
  width: 30px;
  margin-top: -10px;
  border-radius: 50px;
}
.range-sec .select-styl {
    -webkit-appearance: none;
}
body .form-main-area .error_cls,
body .form-main-area .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

/* Video Banner */
.banner-video-desk{
		height: 700px;

	}
	.desk-video{
		height: 100%;
	}
	.desk-video video{
		height: 100%;
		object-fit: cover;
		width: 100%;
	}


.banner-video-desk {
    height: 780px;
    position: absolute;
    width: 65% !important;
    top: 0;
}
.banner-sec {
    height: 780px;
}
#tab4 iframe{
	height: 800px;
}

