@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
    color: #fff;
    font-family: 'DMSans-Regular';
    font-size: 1.6rem;
	background-color: #101010;
    /*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;
}
.fix-wp a {
    position: fixed;
    right: 0;
    bottom: 20%;
    width: 60px;
    height: 60px;
    border-radius: 10px 0px 0px 10px;
    background-color: #6EE37A;
    z-index: 98;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 26px;
}
/*****header-info******/
.header-info {
	padding: 13px 0;
}
.header-info-wrap {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}
.header-social ul,
.header-reach ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.header-social li,
.header-reach li {
	padding-right: 10px;
	margin-right: 10px;
	padding-left: 0;
	margin-bottom: 0;
	font-size: 1.2rem;
	letter-spacing: 0.12px;
	font-family: 'DMSans-Medium';
}
.header-social li::after,
.header-reach li::after {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: auto;
	background-color: rgba(255, 255, 255, 0.15);
	width: 1px;
	height: 70%;
	border-radius: 0;
}
.header-social li:last-child,
.header-reach li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.header-social li:last-child::after,
.header-reach li:last-child::after {
	display: none;
}
.header-reach li img {
	margin-right: 10px;
}
/*****header-area******/
.header-area {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-wrap {
	border-radius: 20px;
	border: 1px solid transparent;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-area.stiky {
	top: 30px;
}
.header-area.stiky .header-wrap {
	border-color: rgba(255, 255, 255, 0.15);
	padding: 20px 30px;
	background-color: #1C1C1C;
}
.header-logo img {
	width: 182px;
}
.header-nav ul {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 50px;
}
.header-nav li {
	margin: 0;
	padding: 0;
    font-family: 'DMSans-Medium';
	font-size: 1.6rem;
	line-height: 22px;
	letter-spacing: 0.16px;
}
.header-nav li::after {
	display: none;
}
.header-nav li a {
	position: relative;
	padding-bottom: 5px;
}
.header-nav li a::after {
	content: "";
	width: 0;
	height: 1px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #A77143;
	position: absolute;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-nav li a:hover {
	color: #fff;
}
.header-nav li a:hover::after {
	width: 100%;
}
.header-btn .common-btn {
	top: 5px;
}
.menu-bar {
    position: relative;
    max-width: 46px;
	height: 46px;
	border-radius: 100%;
	border: 1px solid #fff;
    width: 100%;
	margin-left: 6px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 24px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    top: 10px;
    right: 10px;
}
.menu-bar.active  div {
    transform: scale(0);
}
.menu-bar.active:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-bar.active:after {
    transform: translateY(-8px) rotate(-135deg);
}
/*****mobile-menu********/
.mobile-header-menu {
	position: absolute;
	top: 95px;
	background-color: #1C1C1C;
	height: 70vh;
	width: 100%;
	left: 0;
	padding: 40px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	clip-path: inset(0 0 100% 0);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.mobile-header-menu-wrap {
	height: 100%;
	overflow-x: auto;
}
.mobile-header-menu-wrap::-webkit-scrollbar {
	background-color: #101010;
	width: 8px;
	border-radius: 10px;
}
.mobile-header-menu-wrap::-webkit-scrollbar-thumb {
	background-color: #2c2c2c;
	border-radius: 10px;
}
.mobile-header-menu ul {
	flex-direction: column;
	text-align: center;
	margin: 0;
}
.mobile-header-menu.mob-menu-active {
	clip-path: inset(0 0 0 0);
}
.mobile-header-menu li {
	padding: 0;
	font-size: 2rem;
	margin-bottom: 20px;
}
.mobile-header-menu li:last-child {
	margin-bottom: 0;
}
.mobile-header-menu li::after {
	display: none;
}
.mobile-header-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
}
.body-blur {
	height: 100vh;
	width: 200vh;
	position: fixed;
	top: 0;
	left: 0;
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	z-index: 98;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.body-blur-active {
	opacity: 1;
	pointer-events: all;
}
/********banner-sec*********/
.banner-sec {
	position: relative;
}
.banner-sec .common-wrap {
	padding: 0;
}
.banner-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-content h1 {
    font-size: 6.4rem;
}
.banner-content p {
	margin-bottom: 37px;
}
.banner-content .white-btn {
	margin-right: 14px;
}
.banner-video,.each-banner  {
	height: 764px;
}
.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;
}
/****filter-sec****/
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
	border-radius: 10px;
	background-color: #1C1C1C;
	padding: 24px 30px;
}
.filter-reset a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.4rem;
    font-family: 'DMSans-Regular';
}
.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: #A77143;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.select-style {
	width: 100%;
    height: 48px;
    color: #fff;
    font-family: 'DMSans-SemiBold';
    font-size: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 95px;
    padding: 0 30px 0 23px;
    background: url(../images/filter-arrow.svg) #1C1C1C no-repeat 88% center/10px;
    appearance: none;
    line-height: 48px;
    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: 'DMSans-Regular';
	background-color: #1C1C1C;
}
.filter-content {
    display: none;
	background-color: #1C1C1C;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    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 .filter-main .row {
	justify-content: start;
}
.aanbod-filter-sec label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'DMSans-Regular';
    font-size: 1.2rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #F9F8F6;
    opacity: 0.65;
}
.aanbod-filter-sec .form-check-input{
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #A77143;
    border-color: #A77143;
}
.auto-overview-tag {
    margin-right: 5px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    border-radius: 6px;
    background-color:#A77143;
    font-family: 'DMSans-Regular';
    font-size: 1.4rem;
    border: 1px solid #A77143;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: transparent;
}
.filter-main .col-lg-3 {
	width: 16.6%;
}
.filter-main .row {
	row-gap: 15px;
	justify-content: center;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 50%;
	transform: translateX(-50%);
    top: 132px;
    background-color: #A77143;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 10px 8px;
	border-radius: 10px;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #101010;
    border-color: #101010;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #fff;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 100%;
	color: #101010;
    border: 1px solid #fff;
	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: #A77143;
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #A77143;
}
.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: #A77143;
	border-color: #A77143;
  	color: #fff;
	padding: 10px;
	border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result h4{
	font-size: 1.6rem;
	color: #fff;
}
.auto-overview-filter-result .common-btn:hover {
	background-color: #1C1C1C;
    border-color: #A77143;
}
.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: 'DMSans-Regular';
    text-transform: none;
    letter-spacing: normal;
}
.filter-sort .col-lg-3 {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.aanbod-filter-sec {
    margin-top: -50px;
}
.radio_filter .form-check-input {
	display: none;
}
/*****home-filter-sec****/
.home-filter-sec {
    margin-top: -50px;
}
.home-filter-sec .filter-main {
	margin-bottom: 0;
}
.home-filter-sec .filter-main .row {
	justify-content: start;
}
.home-filter-sec .common-btn {
	position: relative;
}
.home-filter-sec .common-btn strong .word {
	position: relative;
	padding-right: 20px;
}
.home-filter-sec .common-btn strong .word::after {
	content: "";
	height: 16px;
	width: 16px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	right: 0;
	background-image: url(../images/search.svg);
	background-position: center center;
	background-size: 16px;
	background-repeat: no-repeat;
}
/*****product-sec*****/
.product-sec {
	padding: 70px 0 56px;
	position: relative;
}
.product-mark {
	width: 250px;
	top: 0;
	right: 0;
	position: absolute;
	pointer-events: none;
	z-index: -1;
}
.product-heading {
	margin-bottom: 40px;
}
.product-heading .common-btn {
	background-color: #101010;
}
.product-heading .common-btn:hover {
	background-color: #A77143;
}
.each-product {
	border-radius: 10px;
	background-color: #1c1c1c;
	padding: 16px;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-img {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 37px;
}
.each-product-text h3 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-product-text h6 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 7px 0 33px;
}
.each-product-text table {
	display: table;
	width: 100%;
}
.each-product-text tbody {
	display: table;
	width: 100%;
}
.each-product-text tr {
	display: flex;
	gap: 10px;
}
.each-product-text td {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: 20px;
    letter-spacing: 0.28px;
    display: flex;
    align-items: start;
}
.each-product-text td img {
	margin-right: 5px;
	margin-top: 2px;
	width: 16px;
}
.product-btm {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.each-product-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.each-product-spec td:nth-child(2) img {
	width: 22px;
}
.each-product-price {
	min-width: 115px;
}
.each-product-price h4 {
	font-size: 1.8rem;
    line-height: normal;
	font-family: 'DMSans-Bold';
}
.product-btm h5 {
	line-height: normal;
    letter-spacing: normal;
    text-transform: none;
	font-family: 'DMSans-Medium';
}
.each-product:hover .common-btn {
	background-color: #A77143;
	border-color: #A77143;
}
.product-slider {
	position: relative;
	padding-bottom: 75px;
}
.product-slider .common-arrow {
	background-color: #101010;
	transform: translateY(-50%);
}
.product-slider .common-arrow:hover {
	background-color: #A77143;
}
.each-product:hover {
	background-color: #262626;
}
.product-slider .swiper-button-prev {
	left: -33px;
}
.product-slider .swiper-button-next {
	right: -33px;
}
.common-pagination {
	bottom: 0 !important;
}
.common-pagination .swiper-pagination-bullet {
	background-color: rgba(255, 140, 66, 0.20);
	opacity: 1;
	height: 8px;
	width: 8px;
	border-radius: 100%;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-pagination .swiper-pagination-bullet-active {
	background-color: #A77143;
	width: 84px;
	border-radius: 10px;
}
/*****service-sec*******/
.service-sec .common-wrap {
	padding-top: 90px;
	padding-bottom: 90px;
}
.service-heading {
	max-width: 754px;
	width: 100%;
	margin: 0 auto 60px;
}
.service-heading h2 {
	margin-bottom: 17px;
}
.each-servie-img {
	height: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-servie-img img {
	height: 100%;
	object-fit: cover;
}
.each-servie-text h2 {
	display: flex;
	overflow-y: clip;
    position: absolute;
    bottom: -48px;
	height: 40px;
	line-height: 40px;
	font-size: 5rem;
	letter-spacing: 0.5px;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-servie-text p {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-servie-text h2 .digit-wrapper {
	position: relative;
	height: 40px;
	width: 40px; 
	overflow: hidden;
	display:none;
}
.each-servie-text h2 .static {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(0);
	transition: transform 0.2s ease;
}
.each-servie-text h2 .roll {
	position: absolute;
	top: 0%;
	left: 0;
	transform: translateY(100%);
	transition: transform 0.2s ease;
}
.each-servie:hover h2 {
    height: 60px;
    bottom: 0;
    position: relative;
	-webkit-text-fill-color: #fff;
}
.each-servie {
	position: relative;
	overflow: hidden;
	height: 383px;
	background: linear-gradient(237deg, #BC8A5F 0%, #A77143 100%);
	border-radius: 20px;
}
.each-servie::after {
	content: "";
	height: 150px;
	width: 130px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../images/service-each-mark.svg);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-servie-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	overflow: hidden;
	z-index: 1;
}
.each-servie:hover .each-servie-img {
	opacity: 0;
	transform: scale(1.1);
}
.each-servie:hover::after {
	opacity: 1;
}
.each-servie-text-btm {
	position: relative;
}
.service-slider {
	position: relative;
}
.service-slider .swiper-button-next {
    right: -57px;
}
.service-slider .swiper-button-prev {
    left: -57px;
}
.service-btn {
	margin-top: 60px;
	text-align: center;
}
.service-btn .common-btn {
	margin: 0 10px;
}
/*****about-sec*****/
.about-sec {
	padding: 80px 0;
	position: relative;
}
.about-welcome-text {
	padding: 50px 80px;
	border-radius: 20px;
	background-color: #1C1C1C;
	overflow: hidden;
	height: 100%;
}
.about-welcome-text p:last-child {
	margin-bottom: 0;
}
.about-welcome-text h2 {
	margin-bottom: 16px;
}
.about-welcome-img {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.about-welcome-img img {
	height: 100%;
	object-fit: cover;
}
.about-welcome .col-lg-5 {
	width: 45%;
}
.about-welcome .col-lg-7 {
	width: 55%;
}
.why-us {
	margin-top: 13px;
}
.why-us .col-lg-5 {
	width: 45%;
}
.why-us .col-lg-7 {
	width: 55%;
}
.why-us-img {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.why-us-img img {
	height: 100%;
	object-fit: cover;
}
.why-us-text {
	height: 100%;
	border-radius: 20px;
	background-color: #1C1C1C;
	padding: 37px 54px;
	position: relative;
}
.why-us-text::after {
	content: "";
	height: 92px;
	width: 82px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../images/about-mark-small.svg);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
}
.why-us-text p {
	margin-bottom: 10px;
}
.why-us-text p strong {
	font-weight: normal;
	font-family: 'DMSans-SemiBold';
}
.why-us-text h4 {
	color: #A77143;
    font-family: 'LaBelleAurore';
	font-size: 3.2rem;
	line-height: normal;
	margin-bottom: 10px;
}
.why-us-text h3 {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: 'DMSans-Bold';
	background: linear-gradient(90deg, rgba(167,113,67,1) 0%, rgba(188,138,95,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-mark {
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.counter {
	margin-top: 13px;
}
.each-counter {
	border-radius: 10px;
	background-color: #1C1C1C;
	overflow: hidden;
	height: 100%;
	text-align: center;
	padding: 15px;
	min-height: 128px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.each-counter h2 {
	-webkit-text-fill-color: #fff;
	font-size: 3.2rem;
	letter-spacing: 0.32px;
	font-family: 'DMSans-Regular';
	margin-right: 10px;
}
.each-counter h2 strong {
	font-weight: normal;
}
.each-counter-value {
	display: flex;
	align-items: center;
	justify-content: center;
}
.each-counter h5 {
	text-transform: none;
	letter-spacing: 0.16px;
	font-family: 'DMSans-Medium';
	margin-top: 6px;
}
.each-counter::after,
.each-counter::before {
	content: "";
	height: 70px;
	width: 60px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../images/counter-mark-right.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.each-counter::before {
	background-image: url(../images/counter-mark-left.svg);
	right: auto;
	left: 0;
	height: 80px;
}
.counter .col-lg-3:first-child .each-counter::before {
	opacity: 0;
}
.counter .col-lg-3:last-child .each-counter::after {
	opacity: 0;
}
/*****review-sec******/
.review-sec {
	padding-bottom: 80px;
}
/***footer-area***/
.footer-area .common-wrap {
    padding: 75px 0 43px;
    position: relative;
    background-color: #121212;
}
.footer-insta {
	border-radius: 20px;
	overflow: hidden;
	max-width: 680px;
	width: 100%;
}
.footer-insta .swiper-slide {
	height: auto;
}
.each-footer-insta {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 100%;
}
.each-footer-insta::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(16, 16, 16, 0.7);
	opacity: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-footer-insta:hover::after {
	opacity: 1;
}
.each-footer-insta img {
	height: 100%;
	object-fit: cover;
}
.each-footer-insta h6 {
	font-family: 'DMSans-MediumItalic';
	position: absolute;
	width: 100%;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	line-height: 18px;
    letter-spacing: normal;
	z-index: 1;
}
.each-footer-insta h6 img {
	width: 18px;
	margin-right: 5px;
}
.each-footer-info {
    margin-bottom: 37px;
    position: relative;
    z-index: 1;
}
.each-footer-info h5 {
	margin-bottom: 5px;
}
.each-footer-info p {
    font-family: 'DMSans-Medium';
    font-size: 1.4rem;
    line-height: 22px;
    margin-bottom: 0;
	color: rgba(255, 255, 255, 0.70);
}
.each-footer-info p a {
    color: rgba(255, 255, 255, 0.70);
}
.each-footer-info p a:hover {
	color: #A77143;
}
.each-footer-info td {
	color: rgba(255, 255, 255, 0.70);
	font-family: 'DMSans-Medium';
    font-size: 1.4rem;
    line-height: 22px;
}
.each-footer-info td:nth-child(odd) {
	padding-right: 15px;
}
.each-footer-info h6 {
	color: #F6F8FA;
	font-family: 'LamaSans-Medium';
	letter-spacing: 0.14px;
	margin-top: 13px;
	margin-bottom: 5px;
}
.footer-info {
	max-width: 545px;
	width: 100%;
	margin: 0 auto;
}
.terms h5 {
    font-family: 'LamaSans-SemiBold';
	letter-spacing: 0.16px;
	text-transform: none;
}
.terms p {
	color: rgba(255, 255, 255, 0.70);	
    font-family: 'LamaSans-Regular';
    font-size: 1.4rem;
    line-height: 19px;
}
.footer-info-wrap {
	position: relative;
}
.footer-info-wrap::after {
	content: "";
    height: calc(100% + 24%);
    width: 200vw;
    margin-left: -100vw;
    left: 50%;
    background-color: #1C1C1C;
    bottom: 15px;
    position: absolute;
    z-index: 0;
}
.footer-nav ul {
	display: flex;
	align-items: center;
	column-gap: 88px;
	row-gap: 20px;
	margin-bottom: 0;
}
.footer-nav li {
	color: #fff;
    font-family: 'DMSans-SemiBold';
	font-size: 1.6rem;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	padding-left: 0;
	margin: 0;
}
.footer-nav li::after {
	display: none;
}
.footer-nav li a {
	color: #fff;
}
.footer-nav li a:hover {
	color: #A77143;
}
.footer-btm {
	margin-top: 60px;
	border-bottom: 1px solid #fff;
	padding-bottom: 13px;
	margin-bottom: 46px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-social ul {
	display: flex;
	align-items: center;
	justify-content: end;
	margin-bottom: 0;
	gap: 11px;
}
.footer-social li {
	padding-left: 0;
	margin: 0;
}
.footer-social li::after {
	display: none;
}
.footer-social li a {
	height: 48px;
	width: 48px;
	border: 1px solid rgba(255, 255, 255, 0.50);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}
.footer-social li a.footer-wp {
	border-color: rgba(36, 255, 0, 0.50);
}
.footer-social li img {
	width: 16px;
}
.footer-social li a:hover {
	background-color: #1C1C1C;
}
.footer-credit {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-logo img {
	width: 168px;
}
.footer-privacy p {
	color: #AEADAD;
	font-size: 1.4rem;
	font-family: 'DMSans-Medium';
	margin-bottom: 0;
}
.footer-privacy p a {
	color: #AEADAD;
}
.footer-privacy p a:hover {
	color: #A77143;
}
/********************************diensten********************************/
/****inner-banner****/
.inner-banner {
	position: relative;
}
.inner-banner-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	z-index: 2;
	width: 100%;
}
.each-inner-banner {
	border-radius: 20px;
	overflow: hidden;
}
.inner-banner .common-wrap {
	padding: 0;
}
/****list-sec****/
.list-sec {
	padding: 107px 0 80px;
	position: relative;
}
.list-sec .each-servie::after {
    height: 73px;
    width: 96px;
    bottom: 30px;
    right: 30px;
    background-image: url(../images/list-heart.svg);
}
.list-sec .each-servie:hover::after {
    opacity: 1;
}
.list-sec .each-servie-text p {
    -webkit-line-clamp: 3;
    max-width: 520px;
	width: 100%;
}
.list-sec .col-lg-6 {
	padding: 0 10px;
}
.list-sec .row {
	margin: 0 -10px;
	row-gap: 28px;
}
.list-sec-mark {
    width: 250px;
    top: -33px;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
/********************************vacature********************************/
.vacature-top {
	padding-top: 87px;
	position: relative;
}
.vacature-top p {
	max-width: 960px;
	width: 100%;
	margin: 20px auto 0;
}
/*****vacature-list-sec****/
.vacature-list-sec {
	padding-top: 51px;
}
/********************************financiering-lease********************************/
/****inner-header****/
.inner-header .header-wrap {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background-color: #1C1C1C;
	padding: 20px 33px;
	border-radius: 20px;
}
/****back-btn****/
.back-btn-part {
	position: relative;
	top: 176px;
}
.back-btn {
	padding-top: 30px;
}
/****diensten-dtl-info-sec****/
.diensten-dtl-info-sec {
	padding-top: 100px;
}
.diensten-dtl-info-sec h3 {
	text-transform: uppercase;
	background: linear-gradient(90deg, rgba(167, 113, 67, 1) 0%, rgba(188, 138, 95, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: normal;
	letter-spacing: normal;
	font-family: 'DMSans-Bold';
}
.diensten-dtl-info-sec p {
	max-width: 710px;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 0;
}
/****diensten-dtl-top****/
.diensten-dtl-top-wrap {
	position: relative;
	padding-top: 64px;
	margin-top: 61px;
}
.diensten-dtl-top-wrap::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.15);
	height: 1px;
	width: 100%;
}
.diensten-dtl-top-img {
	padding-left: 72px;
}
.diensten-dtl-top-img img {
	border-radius: 10px;
	overflow: hidden;
}
.diensten-dtl-top-info {
	padding-right: 89px;
}
.diensten-dtl-top-info h2 {
	margin-bottom: 25px;
}
/****diensten-dtl-mid****/
.diensten-dtl-mid {
	padding: 78px 0;
}
.diensten-dtl-mid tr {
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
	justify-content: center;
}
.diensten-dtl-mid td {
	width: 32.2%;
	border: 1px solid #B07B4F;
	background: #101010;
	/* border-radius: 20px; */
	overflow: hidden;
	padding: 37px 30px 52px;
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.diensten-dtl-mid-mark {
	width: 70px;
	bottom: 0px;
	right: 0px;
	position: absolute;
	pointer-events: none;
}
.diensten-dtl-mid table {
	width: 100%;
}
.diensten-dtl-mid td p {
	margin-bottom: 92px;
}
.diensten-dtl-mid td:hover {
	/* box-shadow: -7px 7px 0px -3px rgba(176, 123, 79, 1); */
}
.diensten-dtl-mid td::after {
	position: absolute;
	/* content: ''; */
	background-image: url(../images/diensten-dtl-mid-mark.svg);
	background-repeat: no-repeat;
	background-size: 70px;
	height: 70px;
	width: 70px;
	right: 0;
	bottom: 0;
	background-position: center;
}
/****form-sec****/
.form-sec {
	position: relative;
	overflow: hidden;
}
.form-sec .col-lg-5 {
	width: 50%;
}
.form-sec .col-lg-7 {
	width: 50%;
}
.form-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.form-img img {
	height: 100%;
	object-fit: cover;
}
.form-right-info-wrap {
    overflow: hidden;
    padding: 30px 80px;
    border-radius: 10px;
    border: 1px solid rgba(144, 91, 47, 1);
    background: linear-gradient(229deg, rgba(188, 138, 95, 0.90) 0%, rgba(144, 91, 47, 0.90) 90.08%);
    position: absolute;
    left: 48.4%;
    transform: translateX(-50%);
    bottom: 37px;
    width: calc(100% - 66px);
}
.form-right-info {
	display: flex;
	column-gap: 30px;
	justify-content: space-between;
}
.form-left {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.form-sec .common-wrap {
    background-color: transparent;
}
.form-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #1C1C1C;
    border-radius: 20px;
    overflow: hidden;
    width: calc(100% + 50%);
}
.form-block {
	position: relative;
	z-index: 1;
	padding: 65px 0 63px;
	max-width: 645px;
}
.form-right {
    height: 100%;
}
.form-block p {
	margin: 11px 0 27px;
}
.form-block .form-group {
	margin-bottom: 22px;
}
.form-block .form-style {
	resize: none;
	border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    font-family: 'DMSans-Medium';
    color: #fff;
    font-size: 2rem;
    padding: 11px 0;
	background-color: transparent;
}
.form-block .form-style:placeholder {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.6rem;
}
.form-block .form-style:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.6rem;
}
.form-block .form-style::placeholder {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.6rem;
}
.form-block .form-style:focus {
    box-shadow: none;
	border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}
.form-block .form-style:focus::placeholder {
    color: #fff;
}
.form-block textarea.form-style {
    height: 99px;
}
.form-block .form-style.foto_upload,
.form-block .form-style.photo_upload {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.6rem;
}
.form-block .form-btn {
    text-align: end;
    margin-top: 50px;
}
.each-form-right-info a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    line-height: 22px;
	font-family: 'DMSans-Medium';
}
.each-form-right-info a:hover {
	color: #fff;
}
/****dtl-slider-sec****/
.dtl-slider-sec {
	padding: 99px 0 59px;
	position: relative;
}
.dtl-slider-title {
	text-align: center;
	margin-bottom: 64px;
}
.dtl-slider .swiper-button-next {
	right: -7%;
}
.dtl-slider .swiper-button-prev {
	left: -7%;
}
.dtl-slider-mark {
    width: 170px;
    top: -100px;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.dtl-slider-sec .each-servie::after {
	height: 73px;
    width: 96px;
    bottom: 30px;
    right: 30px;
    background-image: url(../images/list-heart.svg);
}
/********************************werkplaats-dtl********************************/ 
/****werkplaats-dtl-top****/
.werkplaats-dtl-top .diensten-dtl-top-wrap::after {
	display: none;
}
.werkplaats-dtl-top .diensten-dtl-top-wrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.werkplaats-dtl-top {
	padding-top: 215px;
}
/********************************vacature-dtl********************************/ 
/****diensten-dtl-top****/
.diensten-dtl-top h5 {
	text-transform: none;
	margin-bottom: 28px;
	letter-spacing: normal;
}
/****vacature-dtl-mid****/
.vacature-dtl-mid td {
	width: 49%;
}
/********************************contact********************************/
/****contact-banner****/
.contact-banner .map {
	height: 400px;
}
/****contact-info-area****/
.contact-info-area{
	padding-top: 15px;
}
.contact-info-area .common-wrap {
	border-radius: 0;
	padding: 0;
	background-color: transparent;
}
.each-contact-info p{
	line-height: 26px;
	font-family: 'DMSans-Medium';
	font-size: 1.4rem;
	margin-bottom: 0;
}
.each-contact-info p a{
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.each-contact-info p a:hover{
	color: #fff;
}
.contact-info-wrapper{
	display: flex;
	column-gap: 16px;
}
.each-contact-info {
    background-color: #1c1c1c;
    padding: 30px;
    width: 100%;
    min-height: 163px;
    border-radius: 15px;
    overflow: hidden;
}
.each-contact-info h5{
	margin: 22px 0 4px;
}
.each-contact-info table{
	max-width: 210px;
	width: 100%;
	margin: 0px auto;
	text-align: left;
}
.each-contact-info td{
	color: rgba(255, 255, 255, 0.7);
	font-family: 'DMSans-Medium';
	font-size: 1.4rem;
	line-height: 22px;
}
.each-contact-info td:first-child {
	padding-right: 10px;
	text-align: right;
}
/****contact-form-sec****/
.contact-form-sec {
	padding: 120px 0;
	position: relative;
}
.contact-form-mark {
    width: 250px;
    top: -45px;
    right: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.contact-form-sec .form-left::after {
	display: none;
}
.contact-form-sec .form-wrap {
	width: auto !important;
}
/********************************over-ons********************************/
/****over-ons-top****/
.over-ons-top {
	position: relative;
	margin: 75px 0;
}
.over-ons-top-mark {
    width: 130px;
    top: -135px;
    right: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.over-ons-top .common-wrap {
	background-color: transparent;
	padding: 0;
}
.over-ons-top-img {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 48%;
    height: calc(100% + 125px);
    transform: translateY(-50%);
	border-radius: 20px;
	overflow: hidden;
}
.over-ons-top-img img {
	height: 100%;
	object-fit: cover;
}
.over-ons-top-info {
    padding-left: 67px;
}
.over-ons-top-info h2 {
	margin-bottom: 20px;
}
/****usp-marquee****/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.usp-marquee-wrap {
    display: flex;
    width: max-content;
    gap: 84px;
    background-color: #1c1c1c;
    padding: 31px 50px 21px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 84px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
	color: #fff;
    position: relative;
    padding-right: 18px;
	font-family: 'LamaSans-Medium';
	line-height: 17.6px;
}
.usp-marquee-wrap li::after {
    content: '';
    top: 2px;
    background-image: url(../images/marquee-vector.svg);
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    height: 16px;
    width: 22px;
    left: -7px;
	background-color: transparent;
	border-radius: 0;
}
/****over-ons-mid****/
.over-ons-mid {
	padding: 95px 0;
}
.over-ons-mid .about-mark {
    top: -5%;
}
/****over-ons-gal****/
.over-ons-gal {
	padding-bottom: 10px;
	position: relative;
}
.over-ons-gal::after {
	background: radial-gradient(81.3% 81.3% at 51.33% 40.91%, rgba(13, 14, 23, 0.00) 0%, rgba(13, 14, 23, 0.60) 100%);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
}
.each-over-ons-gal {
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}
.each-over-ons-gal img {
	height: 100%;
	object-fit: cover;
	
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.over-ons-gal-left {
	height: 100%;
}
.over-ons-gal-left .each-over-ons-gal {
	height: calc(100% - 51%);
}
.each-over-ons-gal-left-top {
	margin-bottom: 12px;
}
.over-ons-gal-btm {
    margin-top: 12px;
}
.over-ons-right .each-over-ons-gal {
	height: 278px;
}
.over-ons-right .over-ons-right-first {
	margin-bottom: 12px;
}
.over-ons-right .each-over-ons-gal img {
	height: 100%;
	object-fit: cover;
}
.over-ons-gal .common-wrap {
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.each-over-ons-gal:hover img {
	transform: scale(1.1);
}
/********************************bedankt********************************/
/****bedankt-banner-sec****/
.bedankt-banner-sec {
	margin-bottom: 15px;
}
.bedankt-banner-sec .banner-content {
	top: 56%;
}
.bedankt-banner-sec .banner-content h1 {
    margin-bottom: 36px;
}
/********************************popup********************************/
/****popup****/
.modal-area .modal-dialog {
	max-width: 64%;
    margin: 10% auto 0;
}
.modal-area .modal {
	background: rgba(16, 16, 16, 0.80);
}
.modal-area .modal-content {
    border: 0;
    background-color: transparent;
	position: relative;
}
.modal-area .modal-content .row {
	row-gap: 10px;
}
.modal-area .modal-content .col-lg-5 {
	width: 46%;
}
.modal-area .modal-content .col-lg-7 {
	width: 54%;
}
.modal-content .modal-main-content {
	border-radius: 20px;
	overflow: hidden;
}
.modal-area .pop-up-image {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.modal-area .pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.modal-area .popup-content {
	padding: 78px;
	background-color: #1c1c1c;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.modal-area .popup-content p {
    margin: 62px 0 40px;
    max-width: 435px;
    width: 100%;
    line-height: 26.4px;
    letter-spacing: 0.32px;
}
.popup-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 150px;
	pointer-events: none;
}
.popup-logo img {
	width: 152px;
}
/********************************aanbod-list********************************/
/****aanbod-list-product-sec****/
.aanbod-list-product-sec {
	padding: 23px 0 45px;
}
.aanbod-list-product-sec .row {
	row-gap: 22px;
}
/********************************aanbod-dtl********************************/
/****aanbod-dtl-top-section****/
.aanbod-dtl-top-icon ul{
	display: flex;
	column-gap: 10px;
	margin-bottom: 0;
	align-items: center;
}
.aanbod-dtl-top-icon ul li::after{
	display: none;
}
.aanbod-dtl-top-icon ul li{
	height: 40px;
    width: 40px;
    border: 1px solid #fff;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	padding-left: 0;
	text-align: center;
	margin-bottom: 0;
	cursor: pointer;
}
.aanbod-dtl-top-icon ul li:hover{
	background-color: #A77143;
    border-color: #A77143;
}
.aanbod-dtl-top-icon ul li img{
	max-width: 15px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 12px;
}
.aanbod-dtl-top-section{
	padding-top: 178px;
	padding-bottom: 15px;
}
.aanbod-dtl-top-right{
	display: flex;
	justify-content: end;
	column-gap: 10px;
	align-items: center;
}
.aanbod-dtl-top-btn .common-btn img{
	max-width: 17px;
}
.aanbod-dtl-top-btn .common-btn{
	display: flex;
	column-gap: 8px;
	max-width: 250px;
	font-size: 1.4rem;
	line-height: 24px;
}
/****aanbod-dtl-product-sec****/
.aanbod-dtl-slider-sec .each-diens-dtl-slider:hover::after {
	content: none;
}
.aanbod-dtl-slider-sec .each-diens-dtl-slider:hover h5 {
	color: #FFF;
}
.aanbod-dtl-slider-sec .diens-dtl-service-slider:hover p {
	color: #A1A0A0;
}
.aanbod-dtl-slider-sec .diens-dtl-service-slider p{
	color: #A1A0A0;
	font-size: 1.6rem;
    padding-top: 3px;
} 
.aanbod-dtl-slider-sec .each-slide-car-content-left h5{
	font-size: 1.8rem;
	padding-top: 5px;
}
.aanbod-dtl-slider-sec .each-slide-car-content-left table{
	margin-top: 8px;
}
.aanbod-dtl-slider-sec .each-slide-car-content-right p{
	margin-bottom: 2px;
}
.aanbod-dtl-slider-sec .each-slide-car-content-left td{
	padding-right: 8px;
	padding-left: 6px;
	font-size: 1.6rem;
	font-family: 'encodesansexpanded-regular';
}
.aanbod-dtl-slider-sec .each-slide-car-content-left td:first-child{
	padding-left: 0;
}
.diens-dtl-slider-sec.aanbod-dtl-slider-sec {
	margin-bottom: 77px;
	margin-top: 130px;
}
.shear-btn{
	text-align: right;
	margin-top: -52px;
}
.aanbod-dtl-product-content{
	border-radius: 10px;
    background: #1C1C1C;
	padding: 21px 33px 10px 33px;
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.aanbod-dtl-product-content-top p{
	padding: 5px 0;
	margin-bottom: 0;
	line-height: 26px;
	color: rgba(255, 255, 255, 0.70);
}
.aanbod-dtl-product-content-top table{
	width: 100%;
}
.aanbod-dtl-product-content-top table td {
    padding-top: 7px;
    padding-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.shear-btn .common_btn.transparent_btn{
	border: 0.5px solid #FFF;
}
.shear-btn .common_btn.transparent_btn em{
	padding-right: 5px;
}
.shear-btn .common_btn.transparent_btn img{
	height: 16px;
	width: 16px;
}
.aanbod-dtl-product-btn{
	display: flex;
	column-gap: 30px;
	justify-content: center;
}
.aanbod-dtl-product-sec{
	margin-bottom: 88px;
}
.aanbod-dtl-product-slider-right .swiper-button-next,  .aanbod-dtl-product-slider-right .swiper-button-prev {
	top: 49%;
}
.each-aanbod-dtl-product-slideview img {
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.each-aanbod-dtl-product-thumbs img{
	border-radius: 5px;
}
.each-aanbod-dtl-product-content-left table span{
	color: #D2A837;
}
.aanbod-dtl-product-content-top table td:last-child{
	text-align: right;
	border-bottom: none;
}
.aanbod-dtl-product-top-btn .common-btn{
	font-size: 1.2rem;
}
.aanbod-dtl-product-content-top strong{
    color: #fff;
	font-weight: normal;
	font-family: 'DMSans-Medium';
	line-height: 26px;
}
.aanbod-dtl-product-content-top h3{
	line-height: 24px;
	letter-spacing: normal;
	color: #F3F3F3;
	font-family: 'DMSans-SemiBold';
	margin-bottom: 8px;
}
.aanbod-dtl-product-slider-right .common-arrow{
	width: 59px;
	height: 59px;
}
.aanbod-dtl-product-slider-right{
	margin-bottom: 9px;
}
.aanbod-dtl-product-content-middle{
	border-radius: 10px;
    background: #1C1C1C;
	padding: 15px 24px;
	/* padding-bottom: 22px; */
	border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
/* .aanbod-dtl-product-content-middle{
	display: flex;
	column-gap: 10px;
	align-items: center;
} */
.aanbod-dtl-product-content-middle h3 {
    font-size: 3.2rem;
    font-family: 'DMSans-Bold';
    line-height: normal;
    letter-spacing: normal;
    background: linear-gradient(90deg, rgba(167, 113, 67, 1) 0%, rgba(188, 138, 95, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.aanbod-dtl-product-content-middle p{
	margin-bottom: 0;
	color: #F3F3F3;
	letter-spacing: 0.45px;
	font-size: 1.8rem;
	line-height: 18px;
	text-decoration: underline;
	cursor: pointer;
}
.aanbod-dtl-product-top-btn {
    margin-bottom: 10px;
    display: flex;
    column-gap: 6px;
}
.aanbod-dtl-product-top-btn .common-btn{
	border: 1px solid rgba(167, 113, 67, 0.50);
    background: #101010;
	padding: 5px 20px;
}
.aanbod-dtl-product-top-btn .common-btn:hover {
	color: #fff;
	background-color: #A77143;
	border-color: #A77143;
}
/*.aanbod-dtl-product-content-middle::after {
    content: "";
    height: 71px;
    width: 63px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../images/about-mark-small-white.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.aanbod-dtl-product-content-middle{
	position: relative;
	margin-bottom: 12px;
	display: flex;
	column-gap: 10px;
	align-items: center;
}
.aanbod-dtl-product-member{
	display: flex;
	column-gap: 34px;
	align-items: center;
}
.aanbod-dtl-product-member-img{
	height: 64px;
	width: 67px;
}
.aanbod-dtl-product-member-img img{
	border-radius: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.aanbod-dtl-product-content-btm{
	border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #1C1C1C;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
	padding: 8px 8px 25px 8px;
}
.aanbod-dtl-product-member{
	border-radius: 5px;
    background: #121212;
	padding: 20px 22px;
}
.aanbod-dtl-product-contact-area ul li::after{
	display: none;
}
.aanbod-dtl-product-contact-area ul li{
	display: flex;
	column-gap: 10px;
}
.aanbod-dtl-product-contact-area ul li a{
	margin-bottom: 0;
	line-height: 17px;
	font-family: 'Inter-Regular';
	padding-left: 6px;
}
.aanbod-dtl-product-contact-area ul{
	margin-bottom: 0;
}
.aanbod-dtl-product-contact-area{
	padding-top: 16px;
}
.aanbod-dtl-product-btm-btn{
	display: flex;
	column-gap: 10px;
	padding-left: 20px;
	margin-top: 26px;
}
.aanbod-dtl-product-btm-btn .common-btn{
	max-width: 175px;
	/* padding: 8px 20px 13px; */
}
.aanbod-dtl-product-contact-area span{
	font-family: 'Inter-SemiBold';
	font-weight: normal;
    line-height: 17px;
}
.aanbod-dtl-product-member-text p{
	color: rgba(255, 255, 255, 0.70);
	font-family: 'Inter-Regular';
	letter-spacing: 0.14px;
	line-height: 19px;
	font-size: 1.4rem;
	margin-bottom: 0;
}
.aanbod-dtl-product-slider-right .swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: 30px;
	left: auto;
}
.aanbod-dtl-product-slider-right .swiper-button-prev, .swiper-rtl .swiper-button-next {
	left: 30px;
	right: auto;
}
.overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    border-radius: 2.5px;
    background: rgba(28, 28, 28, 0.70);
    /* backdrop-filter: blur(7.5px); */
    width: 100%;
    height: 100%;
    height: calc(100% - 16px);
    width: calc(100% - 24px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	overflow: hidden;
}
.overlay h6{
	color: #F3F3F3;
    letter-spacing: 0.48px;
	font-family: 'DMSans-Medium';
	font-size: 3rem;
	line-height: 32px;
}
.overlay p{
    line-height: 34px;
    margin-bottom: 0;
	font-family: 'DMSans-Medium';
	color: #F3F3F3;
	font-size: 1.8rem;
}
.each-aanbod-dtl-mobile-img{
    overflow: hidden;
    position: relative;
    height: 100%;
}
.each-aanbod-dtl-mobile-img{
	border-radius: 3.5px;
}
/****aanbod-dtl-tab-sec****/
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 60px;
	margin-bottom: 38px;
    border: 0;
	justify-content: center;
}
.tab-btn .tabs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    padding: 10px 0;
    margin-bottom: 43px;
}
.tab-btn .tabs li.active {
    background-color: transparent;
    opacity: 1;
	position: relative;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.70);
    text-transform: none;
	font-size: 2rem;
	font-family: 'DMSans-SemiBold';
	line-height: normal;
	padding-left: 0;
	position: relative;
}
/* .tab-btn ul.tabs li.tab_last{
	margin-top: 25px;
} */
.tab_container.tab-content{
	max-width: 1020px;
}
.tab-btn ul.tabs li.active span{
	color: #FFF;
}
.tab-btn ul.tabs li.active span::after, ul.tabs li span:hover::after{
    opacity: 1;
}
.tab_content {
    display: none;
}
.tab_content .printer-pdf{
	max-width: 40%;
	height: 30px;
	filter: invert(1);
	padding-right: 15px;
}
.tab_drawer_heading{
    display: none;
}
.dtl-tab-sec {
    padding: 0px 0 18px;
}
.dtl-tab-sec .common-wrap{
    padding-top: 73px;
	padding-bottom: 85px;
}
.tab_drawer_heading{
	display: none;
}
.tab-btn .tabs {
    display: flex;
    justify-content: left;
    column-gap: 60px;
    max-width: 1020px;
    padding: 10px 0;
    overflow: hidden;
    margin-bottom: 35px;
}
.tab-btn .tabs li.active{
	color: #A77143;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
	column-gap: 12px;
    row-gap: 4px;
}
.kenmerken-tab li {
    line-height: 30px; 
    width: 32%;
	padding: 16px 25px 18px 30px;
	position: relative;
	font-family: 'DMSans-Regular';
	color: rgba(255, 255, 255, 0.70);
	line-height: 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
	border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.kenmerken-tab li:hover{
	border-radius: 10px;
    background: linear-gradient(237deg, #BC8A5F 0%, #A77143 100%);
	border-color:  #A77143;
	color: #fff;
}
.kenmerken-tab li strong {
	font-family: 'DMSans-Medium';
    font-weight: normal;
	display: block;
	color: #FFF;
	line-height: 20px;
	text-align: right;
}
.kenmerken-tab li::after {
	display: none;
}
.kenmerken-tab{
	overflow: hidden;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #D9D9D9;
    padding-bottom: 10px;
	margin-bottom: 10px;
    font-size: 2.4rem;
    line-height: 32px;
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 20px;
    position: relative;
	margin-bottom: 10px;
	font-family: 'DMSans-Regular';
}
.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: #A77143;;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #A77143;;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.left-bg-block h6 {
    line-height: 20px;
	font-size: 1.6rem;
	text-transform: none;
    color: #fff;
}
.each-onderhoud-block h4 {
	text-transform: none;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 20px;
}
.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
	text-transform: none;
    color: rgba(255, 255, 255, 0.70);
	font-family: 'DMSans-Regular';
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tab-btm-btn{
    text-align: left;
    color: #A77143;
    cursor: pointer;
    margin-top: 7px;
	font-family: 'Inter-Medium';
    font-size: 1.8rem;
	line-height: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.tab-btm-btn:hover{
    color: #FFF;
}
.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: 100vw;
    height: 100vh;
    background: rgba(18, 18, 18, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.tab-popup-area {
    border-radius: 30px;
    background: #0F0F0F;
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #A77143;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(172, 212, 0, 0.05);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(172, 212, 0, 0.05);
	max-width: 93%;
}
.popup-cross{
    background: #121212;
    width: 45px;
    height: 45px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #A77143;
}
.tab-popup-content {
    overflow: scroll;
    overflow-x: hidden;
    padding-right: 20px;
    height: calc(100% - 116px) !important;
}
.tab-popup-content ul{
    margin-bottom: 33px;
    padding: 0;
}
.tab-popup-content ul:last-child{
    margin-bottom: 0;
}
.popup-cross img{
    width: 38px;
}
.tab-popup-area h3{
	font-family: 'DMSans-SemiBold';
    line-height: normal;
    margin-bottom: 20px;
    font-size: 2.8rem;
}
.tab-popup-area p{
    color: rgba(247, 240, 236, 0.50);
    line-height: normal;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	font-family: 'DMSans-Regular';
	margin-bottom: 0;
}
.tab-popup-content h4{
	font-family: 'DMSans-SemiBold';
    line-height: 56px;
    margin-bottom: 20px;
}
.tab-popup-content li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
	font-family: 'DMSans-Regular';
    line-height: 30px;
    color: #F7F0EC;;
    /* padding: 6px 0; */
    flex-wrap: wrap;
	padding-left: 0;
}
.tab-popup-content li::after{
	display: none;
}
.tab-popup-content li strong{
    width: 50%;
    font-weight: normal;
    color: rgba(247, 240, 236, 0.70);
}
.show-popup{
    display: none;
}
.tab-btn .tabs li.active::after {
	transform: rotate(90deg);
	filter: invert(44%) sepia(100%) saturate(1830%) hue-rotate(5deg) brightness(108%) contrast(100%);
    opacity: 1;
}
.tabs li::after {
	display: inline-block;
	content: url(../images/tab_arrow.svg);
	position: relative;
	top: 2px;
    left: 7px;
	background-color: transparent;
	width: 9px;
    height: auto;
}
.tab-btn .tabs li.active::before {
	content: "";
	height: 2px;
	background-color: #A77143;
	width: 100%;
    position: absolute;
	bottom: -10px;
	left: 0;
}
.dtl-tab-mark{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
}
.dtl-tab-mark img{
	height: 100%;
	object-fit: cover;
}
.dtl-tab-sec .common-wrap{
	position: relative;
}
/****related-product-sec****/
.related-product-sec .product-mark {
    left: 0;
    top: -57px;
    right: unset;
}
.related-product-sec{
	position: relative;
	padding-top: 90px;
	padding-bottom: 87px;
}
.related-product-sec .product-heading {
	margin-bottom: 50px;
}
.related-product-sec .product-slider {
	padding-bottom: 70px;
}
.product-sec.related-product-sec .each-product-text h3{
	font-family: 'DMSans-SemiBold';
	line-height: normal;
}
.product-sec.related-product-sec .common-btn{
	font-family: 'Inter-Medium';
	line-height: 20px;
	font-size: 1.4rem;
}
.related-product-slider {
	position: relative;
	padding-bottom: 75px;
}
.related-product-slider .common-arrow {
	background-color: #101010;
	transform: translateY(-50%);
}
.related-product-slider .common-arrow:hover {
	background-color: #A77143;
}
.related-product-slider .swiper-button-prev {
	left: -33px;
}
.related-product-slider .swiper-button-next {
	right: -33px;
}
.no-car-form {
    padding-bottom: 18px;
}
/********************************verkocht********************************/
/****verkocht-product****/
.verkocht-product {
	padding: 100px 0;
}
.verkocht-product .row {
	row-gap: 20px;
}
.aanbod-dtl-back-btn {
    padding-bottom: 40px;
	display: none;
}
.privacy_section {
    padding: 20px 0 60px;
}
/*******review-plugin-customize******/
body .ibnJBQ {
	padding: 0 !important;
}
body .bzqjut {
	max-width: 100% !important;
}
body .gewBSn,
body .fcOfJE,
body .fdTALo {
	background-color: #1C1C1C;
}
body .RZKyf {
	color: #A77143;
}

body .form-block .error_cls,
body .form-block .success_cls {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}


/*******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 34px;
	  color: #000;
	  background-size: contain;
	  position: relative;
	  bottom: 5px;
  }
  .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;
	  margin-bottom: 0;
  }
  .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;
  }


	.each-product .each-product-img img {
	    transform: scale(1.02);
	}

	.each-aanbod-dtl-product-slideview img {
	    transform: scale(1.02);
	}


  .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;
  }
  
  .footer-area{
	  margin-bottom: 22px;
  }
  .each-service:hover .each-service-arrow .common-arrow-part{
	  background-color: #FAFAFA;
  }
  .privacy_section h2{
	  padding-top: 85px;
  }
  .share-social-media-button{
	  padding: 6px 9px;
  }
  @media(max-width: 519px) and (min-width: 416px){
	  .calculator{
		  height: 1670px !important;
	  }
  }
  @media(max-width: 415px){
	  .calculator{
		  height: 1826px !important;
	  }
  }
  

.each-aanbod-dtl-product-slideview {
    border-radius: 10px;
    overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}

/*.has-image[data-image-fit="contain"] .fancybox__image {
    margin-left: -2%;
	margin-right: -2%;
} 
.fancyboxcarousel .fancyboxslide.can-zoom_in .fancybox__content {
  overflow:hidden;
}*/

.has-image .fancybox__content {
	overflow: hidden;
}
.fancybox__image {
    margin-left: -12px;
    min-width: calc(100% + 24px);
	object-fit: cover !important;
}
.each-product-text {
    display: flex;
    flex-direction: column;
    justify-content: end;
}










