body {
	padding: 0px;
	margin: 0px;
	color: rgba(255, 255, 255, 0.70);
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    background-color: #0C0A00;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/****cookie-fix****/
.cmn-cookie-info ul {
    margin-bottom: 0;
}
.cmn-cookie-info li {
    padding-left: 0;
    margin-bottom: 0;
}
.cmn-cookie-info li::after {
    display: none;
}
.cookie-close img {
    width: 15px;
}
/****iframe-footer****/
.iframe-footer {
    border: 0;
    width: 100%;
    margin-bottom: 0;
    height: 50px;
    display: block;
}
/* ============================================== index ============================================== */
/****fix-wp****/
.fix-wp a {
    position: fixed;
    right: 20px;
    bottom: 5%;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    background-color: #25D366;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 25px;
}
/****header-area****/
.header-area {
	padding: 12px 0;
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 99;
	top: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    background-color: #0C0A00;
    border-bottom: 1px solid rgba(250, 214, 165, 0.5);
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 0;
    justify-content: center;
}
.header-nav li {
    padding-left: 0;
    margin: 0;
    color: #F2F0EF;
}
.header-nav li a {
    color: #F2F0EF;
}
.header-nav li a:hover {
    color: rgba(250, 214, 165, 0.5);
}
.header-nav li::after {
    display: none;
}
.header-logo img {
    width: 188px;
}
.header-btn img {
    margin-right: 9px;
    width: 23px;
}
.header-btn .common-btn:hover img {
    filter: brightness(1) invert(1);
    position: relative;
    z-index: 1;
}
.hamburger {
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 2px;
    background: #FAD6A5;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-icon span::before,
.hamburger-icon span::after {
    display: block;
    background-color: #0C0A00;
    content: '';
    height: 2px;
    margin: 8px 0 8px auto;
    width: 32px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.hamburger-active span::after {
    transform: translateY(-5px) rotate(-135deg);
}
.hamburger-active span::before {
    transform: translateY(5px) rotate(135deg);
}
/****mega-menu****/
.mega-menu {
    position: fixed;
    height: calc(100% - 20px);
    width: 29%;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 200px 130px;
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.76,0,.24,1);
}
.mega-menu-active {
    opacity: 1;
    pointer-events: all;
    transition: all .4s cubic-bezier(.76,0,.24,1);
}
.mega-menu-bg {
    transition: all .4s cubic-bezier(.76,0,.24,1);
    background-color: #534631;
    border-radius: 1.2px;
    width: 8.5px;
    height: 7px;
    top: 44px;
    right: 160px;
    position: absolute;
    z-index: -1;
}
.mega-menu-active .mega-menu-bg {
    transition: all .8s cubic-bezier(.76,0,.24,1);
    height: 100%;
    width: 100%;
    top: 10px;
    right: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.mega-menu ul {
    padding: 0;
    margin: 0;
}
.mega-menu li {
    color: #F2F0EF;
    font-size: 3rem;
    line-height: normal;
    margin-bottom: 20px;
    padding-left: 0;
}
.mega-menu li::after {
    display: none;
}
.mega-menu li:last-child {
    margin-bottom: 0;
}
.mega-menu li a {
    color: #F2F0EF;
}
.mega-menu li a:hover,
.mega-menu li a.this-pg {
    color: #FAD6A5;
}
.mega-menu li.active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.mega-menu-wrap {
    height: 100%;
    overflow-y: auto;
}
.mega-menu-wrap::-webkit-scrollbar {
    width: 10px;
    background-color: #474747;
    border-radius: 10px;
}
.mega-menu-wrap::-webkit-scrollbar-thumb {
    background-color: #696969;
    border-radius: 10px;
}
.maga-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all .6s cubic-bezier(.76,0,.24,1);
    background-color: rgba(12, 10, 0, 0.7);
}
.maga-menu-overlay-active {
    visibility: visible;
    opacity: 1;
}
/****banner-sec****/
.banner-sec {
	position: relative;
	overflow: hidden;
}
.banner-sec .mobile-pattern {
    display: none;
}
.banner-sec::after {
    content: "";
    height: 20%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(12, 10, 0, 0.00) 0%, #0C0A00 50%);
    z-index: 1;
}
.banner-content {
	position: absolute;
	top: 61%;
	left: 0;
    transform: translateY(-50%);
	z-index: 2;
	width: 100%;
}
.banner-content h2 {
    margin: 5px 0 81px;
}
.banner-video,.each-banner  {
	height: 915px;
	overflow: hidden;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
/****counter-sec****/
.counter-sec {
    position: relative;
    padding-top: 16px;
    overflow: hidden;
    padding-bottom: 10px;
}
.counter-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: #0C0A00;
    height: 100%;
    width: 4%;
}
.counter-sec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0C0A00;
    height: 100%;
    width: 4%;
}
/* .counter-wrap {
    max-width: 92%;
    margin: 0 auto;
} */
.each-counter {
	padding: 37px 50px;
	height: 100%;
    background-color: #534631;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-counter:hover {
    background-color: #0C0A00;
}
.each-counter h3 {
    font-family: 'MonaSansExpanded-Bold';
    font-style: italic;
    color: #F2F0EF;
}
.each-counter h3 strong {
	font-weight: 400;
}
.each-counter h5 {
    font-family: 'MonaSansExpanded-Regular';
    color: #F2F0EF;
	line-height: 32px;
	font-size: 2.4rem;
}
/****product-sec****/
.product-sec {
    padding: 88px 0 118px;
}
.product-title {
    text-align: center;
    margin-bottom: 100px;
}
.product-wrap {
    padding: 0 22px;
}
.product-slider .common-arrow {
    top: 27%;
}
.product-slider .swiper-button-next {
    right: 3%;
}
.product-slider .swiper-button-prev {
    left: 3%;
}
.each-product-text h6 {
    font-family: 'MonaSansExpanded-Regular';
}
.each-product-text h6 strong {
    font-weight: normal;
    color: rgba(242, 240, 239, 0.50);
}
.each-product-text li::after {
    display: none;
}
.each-product-text li {
    padding-left: 0;
    color: rgba(242, 240, 239, 0.70);
}
.each-product-text ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 42px;
    row-gap: 10px;
    margin-bottom: 43px;
}
.each-product-text {
    background-color: #151515;
    padding: 25px 40px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-text h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 14px;
}
.each-product-text p {
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-product {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product:hover img {
    transform: scale(1.1);
}
.each-product-img {
    overflow: hidden;
}
.each-product-img img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product:hover .each-product-text {
    background-color: #534631;
}
.product-btn {
    text-align: center;
    margin-top: 78px;
}
/****service-sec****/
.service-sec {
    background-color: #F2F0EF;
    padding: 120px 0 118px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.service-sec .mobile-pattern {
    display: none;
}
.service-title p {
    margin: 33px 0 43px;
    color: rgba(12, 10, 0, 0.70);
}
.service-title h2 {
    color: #0C0A00;
}
.service-sec.inview {
    background-color: #0C0A00;
}
.service-sec.inview .pattern {
    filter: brightness(0) invert(1);
    z-index: 0;
}
.service-sec.inview .service-title h2 {
    color: #fff;
}
.service-sec.inview .service-title p {
    color: rgba(255, 255, 255, 0.70);
}
.each-service-img {
    height: 535px;
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
}
.each-service-title {
    background-color: #fad7a5;
    padding: 16px 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}
.each-service-title h3 {
    color: #0C0A00;
    margin-bottom: 10px;
}
.each-service-block {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-title p {
    margin-bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2lh;
    max-width: 353px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: -58px;
}
.each-service-block:hover .each-service-title {
    background-color: #534732;
}
.each-service-block:hover .each-service-title p {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-bottom: 0;
}
.each-service-block:hover .each-service-title h3 {
    color: #fff;
}
.service-title {
    max-width: 460px;
    margin: 0 auto 73px;
    text-align: center;
}
.service-block .row {
    row-gap: 16px;
}
.service-btn {
    text-align: center;
    margin-top: 78px;
}
/****about-sec****/
.about-info .border-btn {
    border-color: #0C0A00;
    color: #0C0A00;
}
.about-title {
    position: absolute;
    top: 0;
    left: 0;
    padding: 124px 106px;
}
.about-title h2 strong {
    color: #F2F0EF;
    font-family: 'MonaSansExpanded-Bold';
    text-transform: uppercase;
    letter-spacing: 4.8px;
}
.about-info .border-btn:hover {
    border-color: #FAD6A5;
}
.about-info {
    background-color: #F2F0EF;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 40px 44px;
    max-width: 500px;
    margin-right: 0;
    margin-left: auto;
}
.about-info p {
    color: rgba(12, 10, 0, 0.70);
}
/****home-btm-sec****/
.home-btm-sec {
    padding: 116px 0 108px;
    position: relative;
    overflow: hidden;
}
.home-btm-sec .mobile-pattern {
    display: none;
}
.home-btm-title {
    text-align: center;
    margin-bottom: 35px;
}
.home-btm-left,
.home-btm-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .home-btm-right {
    padding-left: 12%;
} */
.home-btm-right .each-home-btm-block {
    padding-right: 20px;
    padding-left: 20%;
}
.each-home-btm-block {
    padding: 70px 45px;
    max-width: 475px;
    height: 100%;
    min-height: 300px;
}
.each-home-btm-block h3 {
    margin-bottom: 30px;
    color: #F2F0EF;
}
.each-home-btm-block p {
    margin-bottom: 0;
    color: rgba(242, 240, 239, 0.70);
}
.home-btm-img {
    padding: 38px 30px;
    height: 100%;
    z-index: 2;
    position: relative;
}
.home-btm-img img {
    height: 100%;
    object-fit: cover;
}
/****google-review****/
.google-review {
    padding: 0 0 234px;
}
/****home-contact-part****/
.home-contact-part {
    padding-bottom: 89px;
}
.home-contact-part-wrap {
    max-width: 1027px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
    text-align: center;
}
.each-home-contact table {
    max-width: max-content;
    margin: 0 auto;
    text-align: left;
}
.each-home-contact {
    width: 30%;
}
.each-home-contact img {
    height: 39px;
}
.each-home-contact a {
    color: rgba(242, 240, 239, 0.70);
    line-height: 24px;
}
.each-home-contact a:hover {
    color: #fff;
}
.each-home-contact td {
    color: rgba(242, 240, 239, 0.70);
    line-height: 24px;
}
.each-home-contact td:first-child {
    padding-right: 13px;
}
.each-home-contact h6 {
    margin: 22px 0 18px;
}
.each-home-contact p {
    margin-bottom: 0;
}
/****usp-marquee-sec****/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 25px 0;
    background-color: #FAD6A5;
}
.usp-marquee-wrap li a:hover {
    color: #090A0E;
}
.usp-marquee-sec::after {
    background-color: rgba(27, 27, 27, 0.70);
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 80px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 80px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li a {
	white-space: nowrap;
	line-height: 92px;
	font-size: 8.4rem;
    font-family: 'MonaSansExpanded-Light';
	padding-left: 120px;
	position: relative;
    color: rgba(9, 10, 14, 0.70);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.usp-marquee-wrap li::after {
	background-image: url(../images/usp-plus.svg);
    height: 44px;
    width: 44px;
    background-size: 44px;
    top: 30px;
}
.usp-marquee-wrap li:hover {
    color: #090A0E;
}
/****footer-area****/
.footer-area {
    background-color: #FAD6A5;
    padding: 20px 0 32px;
    overflow: hidden;
}
.footer-logo img {
    width: 188px;
}
.footer-nav ul {
    display: flex;
    column-gap: 24px;
}
.footer-nav li {
    padding-left: 0;
    color: rgba(12, 10, 0, 0.70);
    line-height: 24px;
}
.footer-nav li a {
    color: rgba(12, 10, 0, 0.70);
}
.footer-nav li a:hover {
    color: #0C0A00;
}
.footer-nav li::after {
   display: none;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    align-items: center;
    position: relative;
    padding-bottom: 12px;
}
.footer-top::after {
    background: rgba(27, 27, 27, 0.70);
    content: '';
    position: absolute;
    left: -20%;
    bottom: 0;
    height: 1px;
    width: 150vw;
}
.footer-social li {
    padding-left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-social li::after {
    display: none;
}
.footer-social ul {
    display: flex;
    column-gap: 5px;
}
.footer-social li a {
    border-radius: 5px;
    border: 0.5px solid #0C0A00;
    overflow: hidden;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social li a img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}
.footer-social li:hover {
    background-color: #0C0A00;
    border-radius: 5px;
    overflow: hidden;
}
.footer-social li:hover img {
    filter: brightness(1) invert(0);
}
.footer-credit a {
    color: rgba(12, 10, 0, 0.70);
    line-height: 24px;
}
.footer-credit a:hover {
    color: #0C0A00;
}
.footer-credit {
    text-align: center;
    margin-top: 25px;
}
/*==============diensten-list============ */
/****inner-banner****/
.inner-banner {
    position: relative;
    overflow: hidden;
}
.inner-banner-content {
    text-align: center;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 2;
    width: 100%;
}
.inner-banner::after{
    content: "";
    width: 100%;
    height: 186px;
    position: absolute;
    bottom: -85px;
    left: 0;
    background: linear-gradient(180deg, rgba(12, 10, 0, 0.00) 0%, #0C0A00 50%);
}
/* ********diens-service-list-sec****** */
.diens-service-list-sec{
    padding-top: 120px;
    padding-bottom: 120px;
}
.each-diens-service-text{
    padding: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    max-width: 570px;
    padding-left: 56px;
}
.each-diens-service-text p{
    margin-top: 30px;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.each-diens-service-text h2{
    color: #fff;
}
.each-diens-service-img {
    height: 535px;
}
.each-diens-service-img img{
    height: 100%;
    object-fit: cover;
}
.each-diens-service-list:hover{
    background: #534732;
}
.each-diens-service-list{
    transition: all 0.5s;
}
.each-diens-service-list .row{
    margin-right: -0px;
    margin-left: -0px;
}
.each-diens-service-list .col-lg-6{
    padding-left: 0px;
    padding-right: 0px;
}
/* =======================diens-dtl====================================== */
/* ******back-btn****** */
.back-btn {
    padding: 152px 0 35px;
    overflow: hidden;
}
.back-btn .pattern{
    z-index: -1;
    top: -36px;
}
/* ********diens-dtl-top-sec********** */
.diens-dtl-top-sec .col-lg-5 {
    width: 43%;
}
.diens-dtl-top-sec .col-lg-7 {
    width: 57%;
}
.diens-dtl-top-content p{
    margin-bottom: 0;
}
.diens-dtl-top-content h2{
    padding-bottom: 35px;
    color: #fff;
}
.diens-dtl-top-content{
    max-width: 680px;
    margin-left: 50px;
    padding-left: 5px;
    padding-right: 5px;
}
.diens-dtl-top-sec{
    padding-bottom: 120px;
}
/* ******diens-dtl-mid******** */
.diens-dtl-mid-sec {
    padding-bottom: 120px;
}
.each-diens-dtl-mid p{
    max-width: 620px;
    margin-top: 25px;
    color: #fff;
    margin-bottom: 0;
}
.each-diens-dtl-mid{
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #151515;
    height: 100%;
    padding: 31px 32px 70px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diens-dtl-mid-img img{
    border-radius: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.each-diens-dtl-mid-img{
    position: relative;
    height: 100%;
}
.diens-dtl-mid-sec .row{
    row-gap: 15px;
}
.diens-dtl-mid-heading{
    padding-bottom: 74px;
}
.diens-dtl-mid-heading h2{
    color: #FFF;
}
.each-diens-dtl-mid:hover{
    background: #534732;
}
/* ****form-sec****** */
.form-sec{
    background: #F2F0EF;
    padding-top: 60px;
    padding-bottom: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.form-sec .pattern img{
    height: 100%;
}
.form-sec .pattern {
    z-index: -1;
    top: -70px;
}
.form-heading h2{
    color: #0C0A00;
}
.form-heading{
    padding-bottom: 70px;
}
.form-heading p{
    color: #0C0A00;
    max-width: 496px;
    margin: 0px auto;
    padding-top: 10px;
}
.form-area-wrap .row{
    margin-left: -13px;
    margin-right: -13px;
}
.form-area-wrap .col-lg-7{
    padding-left: 13px;
    padding-right: 13px;
    width: 60%;
}
.form-area-wrap .col-lg-5{
    padding-left: 13px;
    padding-right: 13px;
    width: 40%;
}
.form-main-area{
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #FFF;
    padding: 30px 25px;
}
.form-area .form-styl{
    border: 1px solid #F2F0EF;
    background: #F2F0EF;
    padding: 24px 22px; 
    color: #0C0A00;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
}
.form-area .form-group{
    margin-bottom: 25px;
}
.form-area .form-styl::placeholder {
    color: #0C0A00;
}
.form-area .form-styl:focus::placeholder{
    color: #0C0A00;
}
.form-area textarea.form-styl {
    min-height: 196px;
    width: 100%;
}
.form-area .form-control:focus{
    box-shadow: none;
}
.form-button .common-btn{
    width: 100%;
    text-align: center;
}
.form-area .row{
    margin-right: -10px;
    margin-left: -10px;
}
.form-area .col-lg-6{
    padding-left: 10px;
    padding-right: 10px;
}
.form-area .col-lg-12{
    padding-left: 10px;
    padding-right: 10px;
}
.form-area textarea{
    resize: none;
}
.form-area .form-style.photo_upload, 
.form-area .form-style.foto_upload {
    color: #0C0A00;
}
.form-sec  .mobile-pattern {
    display: none;
}
/* *****form-left-area***** */
.each-form-left-area{
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #FFF;
    margin-bottom: 22px;
    padding: 26px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-form-left-area:hover{
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #FAD6A5;
}
.each-form-left-area:hover .each-form-left-icon{
    background-color: #FFF;
}
.each-form-left-icon{
    width: 56px;
    height: 56px;
    border-radius: 2px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    background: #F2F0EF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.each-form-left-icon img{
    width: 20px;
    flex-shrink: 0;
}
.each-form-left-text h3{
    color: #0C0A00;
}
.each-form-left-area-wrap{
    display: flex;
    align-items: center;
    column-gap: 25px;
    margin-bottom: 31px;
}
.each-form-left-area a{
    color: #0C0A00;
    line-height: 24px
}
.each-form-left-area a:hover{
    opacity: 0.5;
}
/* **********diens-dtl-service-sec********** */
.diens-dtl-service-sec{
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}
.diens-dtl-service-sec .pattern{
    z-index: 1;
    top: -42px;
}
.diens-dtl-service-heading{
    margin-bottom: 74px;
}
.each-service-img {
    height: 494px;
}
.diens-dtl-service-sec .each-service-img img{
    height: 100%;
    object-fit: cover;
}
.diens-dtl-service-sec  .each-service-title {
    padding: 16px 16px;
}
.diens-dtl-service-slider .swiper-button-prev{
    top: 44%;
    left: -1.6%;
}
.diens-dtl-service-slider .swiper-button-next{
    top: 44%;
    right: -1.6%;
}
/* =============================contact==================================== */
/* ******contact-banner***** */
 .contact-banner-img {
    width: 100%;
    height: 600px;
}
/* ****contact-form-sec***** */
.contact-form-sec{
    background: #0C0A00;
}
.contact-form-sec .form-heading h2{
    color: #F2F0EF;
}
.contact-form-sec .form-heading p{
    color: #F2F0EF;
}
.contact-form-sec .form-main-area {
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #151515;
}
.contact-form-sec .form-area .form-styl{
    background: rgba(242, 240, 239, 0.20);
    border: 1px solid rgba(242, 240, 239, 0.20);
}
.contact-form-sec  .form-area .form-styl::placeholder {
    color: #F2F0EF;
}
.contact-form-sec  .form-area .form-styl:focus::placeholder{
    color: #F2F0EF;
}
.contact-form-sec  .form-area .form-styl:focus{
    border: 1px solid #F2F0EF;
}
.contact-form-sec .form-area .form-styl{
    color: #F2F0EF;
}
.contact-form-sec .each-form-left-area{
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #151515;
}
.contact-form-sec .each-form-left-icon{
    border-radius: 2px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    background: rgba(242, 240, 239, 0.20);
}
.contact-form-sec .each-form-left-icon img{
    filter: invert(1);
}
.contact-form-sec .each-form-left-area:hover .each-form-left-icon {
    background: rgba(242, 240, 239, 0.20);
}
.contact-form-sec .each-form-left-text h3{
    color: #F2F0EF;
}
.contact-form-sec .each-form-left-area a{
    color: #F2F0EF;
}
.contact-form-sec .contact-form-left-area{
    display: flex;
    column-gap: 17px;
}
.contact-form-left-area-wrap{
    min-height: 302px;
}
.contact-form-left-area-wrap .each-form-left-text{
    padding-top: 32px;
}
.each-form-left-text h6{
    padding-bottom: 15px;
}
.contact-form-time-area .each-form-left-area{
    padding: 24px 16px;
    padding-right: 10px;
}
.contact-form-time-area td:first-child{
    padding-right: 16px;
}
.contact-form-time-area td{
    color: rgba(242, 240, 239, 0.70);
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    line-height: 24px; 
}
.form-left-area .col-lg-7{
    width: 55%;
    padding-left: 10px;
    padding-right: 10px;
}
.form-left-area .col-lg-5{
    width: 45%;
    padding-left: 10px;
    padding-right: 10px;
}
.form-left-area .row{
    margin-left: -10px;
    margin-right: -10px;
}
.contact-form-sec{
    padding-top: 124px;
}
.contact-form-sec .form-heading {
    padding-bottom: 28px;
}
.contact-form-sec h6{
    display: flex;
    align-items: center;
    justify-content: left;
    font-family: 'MonaSansExpanded-Regular';
}
.contact-form-sec h6 em{
    margin-left: auto;
    margin-right: 0;
    margin-top: -64px;
    font-style: normal;
}
.contact-form-sec .form-area .form-style.photo_upload, 
.contact-form-sec .form-area .form-style.foto_upload {
    color: #0C0A00;
}
/* ==========================aanbod-dtl=================== */
/* *****aanbod-dtl-top-sec******** */
.aanbod-dtl-top-wrap{
    max-width: 1235px;
    margin-left: auto;
    margin-top: -84px;
    padding-bottom: 6px;
    padding-left: 10px;
}
.aanbod-dtl-top-left{
    /* text-align: end; */
    float: right;
}
.aanbod-dtl-top-left h4{
    color: rgba(242, 240, 239, 0.50);
    font-family: 'MonaSansExpanded-Medium';
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 32px;
}
.aanbod-dtl-top-left h3{
    color: #F2F0EF;
}
.aanbod-dtl-top-sec{
    position: relative;
}

/* ******aanbod-dtl-slider-sec****** */
.aanbod-dtl-slider-sec{
    padding-bottom: 60px;
}
.each-aanbod-dtl-slider-right{
    border: 1px solid rgba(242, 240, 239, 0.07);
    background: #151515;
    padding: 30px 1px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-aanbod-dtl-slider-right:hover{
    border: 1px solid rgba(242, 240, 239, 0.07);
    background: #FAD6A5;
}
.each-aanbod-dtl-slider-right:hover h3{
    color: #0C0A00;
}
.each-aanbod-dtl-slider-right:hover h6{
    color: rgba(12, 10, 0, 0.50);
}
.aanbod-dtl-slider-right .row{
    row-gap: 15px;
}
.aanbod-dtl-contact-area{
    border: 1px solid rgba(242, 240, 239, 0.07);
    background: #151515;
    padding: 30px 25px 23px 25px;
    border-bottom: 0;
}
.man-img{
    width: 72px;
    flex-shrink: 0;
    height: 72px;
    overflow: hidden;
}
.man-img img{
    border-radius: 5px;
}
.aanbod-dtl-info-btn-area{
    border: 1px solid rgba(242, 240, 239, 0.07);
    background: #151515;
    padding: 23px 40px 30px 25px;
}
.aanbod-dtl-contact-area{
    display: flex;
    column-gap: 16px;
    margin-top: 16px;
    align-items: center;
}
.share-btn{
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    flex-shrink: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-dtl-info-btn-area{
    display: flex;
    column-gap: 30px;
}
.aanbod-dtl-info-btn {
    display: flex;
    column-gap: 8px;
}
.aanbod-dtl-info-btn .common-btn{
    border-radius: 0;
}
.each-aanbod-dtl-slider-right h6{
    color: rgba(242, 240, 239, 0.50);
    font-family: 'MonaSansExpanded-Regular';
    padding-bottom: 9px;
}
.each-aanbod-dtl-slider-right h3{
    color: #F2F0EF;
}
.each-aanbod-dtl-right-icon{
    padding-bottom: 23px;
    margin-bottom: 23px;
    position: relative;
}
.each-aanbod-dtl-right-icon::after{
    content: "";
    width: 108px;
    height: 1px;
    background-color: rgba(242, 240, 239, 0.15);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.each-aanbod-dtl-right-icon img{
    width: 28px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-dtl-slider-sec .col-lg-8{
    width: 68%;
}
.aanbod-dtl-slider-sec .col-lg-4{
    width: 32%;
}
.aanbod-dtl-slider-area .swiper-button-prev{
    bottom: 25px;
    top: unset;
    left: 24px;
}
.aanbod-dtl-slider-area .swiper-button-next{
    bottom: 25px;
    top: unset;
    right: auto;
    left: 10%;
}
.each-aanbod-dtl-slider-right:hover .each-aanbod-dtl-right-icon::after{
    background-color: rgba(12, 10, 0, 0.15);
}
.each-aanbod-dtl-slider-right:hover .each-aanbod-dtl-right-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(744%) hue-rotate(10deg) brightness(90%) contrast(100%);
}
.aanbod-dtl-contact-info a:hover{
    color: #FAD6A5;
}
.man-call::after{
    width: 1px;
    height: 16px;
    content: "";
    background-color: rgba(242, 240, 239, 0.80);
    position: absolute;
    top: 3px;
    left: 0;
}
.man-call{
    position: relative;
    padding-left: 16px;
    margin-left: 13px;
}
.aanbod-dtl-contact-info a{
    color: rgba(242, 240, 239, 0.80);
    font-size: 1.6rem;
    line-height: 24px;
}
.aanbod-dtl-contact-info h6{
    font-family: 'MonaSansExpanded-Regular';
}
.share-btn:hover{
    background-color: #FAD6A5;
    border: 1px solid #F2F0EF;
}
.share-btn img{
    width: 15px;
}
.share-btn:hover img{
    filter: invert(1);
}
/****aanbod-tab-sec****/
.aanbod-dtls-sec {
    padding-bottom: 120px;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}
.aanbod-dtls-sec .pattern {
    position: absolute;
    left: 50%;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50% , -50%);
    top: 55%;
    max-width: 1436px;
    margin-left: auto;
    margin-right: auto;
}
.aanbod-dtls-sec .mobile-pattern{
    display: none;
}
.aanbod-dtls-area {
    overflow: hidden;
}
.tab-area{
    max-width: 1436px;
    margin-left: auto;
    margin-right: auto;
}
.dtl-tab-part {
    position: relative;
    overflow: hidden;
}
.tab-btn .nav-tabs {
    column-gap: 17px;
    margin-bottom: 60px;
    border: 0;
    row-gap: 26px;
}
.tab-btn .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    max-width: max-content;
    margin: auto;
    padding: 10px 0;
    margin-bottom: 68px;
}
.tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 0;
    padding: 10px 32px;
}
ul.tabs li::after {
    top: 0;
    border-radius: 0;
}
.tab-btn .tabs li.active {
    color: #0C0A00;
    background: #FAD6A5;
    border-color: #FAD6A5;
}
.tab-btn .tabs li::after{
    background-image: none;
}
.tab-btn .tabs li:hover{
    border-color: #FAD6A5;
}
.tab-btn .tabs .tab_content {
    display: none;
}
.tab_drawer_heading {
    display: none;
}
.kenmerken-tab {
    overflow: hidden;
}
.kenmerken-tab table {
    width: 100%;
    margin-bottom: -1px;
}
.kenmerken-tab td {
    padding: 50px 50px 28px;
    width: 25%;
    flex-shrink: 0;
    position: relative;
}
.kenmerken-tab tr{
    position: relative;
}
.kenmerken-tab tr {
    display: flex;
    flex-wrap: wrap;
}
.kenmerken-tab td p {
    word-break: break-word;
    margin-top: 15px;
    color: rgba(242, 240, 239, 0.50);
    height: 3lh;
    overflow: hidden;
}
.kenmerken-tab td h6 {
    font-family: 'MonaSansExpanded-Regular';
}
.kenmerken-tab td strong{
    max-width: max-content;
    display: block;
    font-weight: normal;
}
.kenmerken-tab h3 {
    color: #292B2C;
    margin: 49px 0 21px;
}
.kenmerken-tab ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.kenmerken-tab li {
    width: 40%;
    position: relative;
    color: #292B2C;
    line-height: 24px;
    margin-bottom: 13px;
    padding-bottom: 10px;
    word-break: break-word;
    padding-right: 20px;
    padding-left: 35px;
    font-size: 1.6rem;
    letter-spacing: 0.48px;
}
.kenmerken-tab li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: rgba(41, 43, 44, 0.50);
}
.kenmerken-tab li:nth-child(even) {
    color: rgba(41, 43, 44, 0.70);
    padding-left: 0;
    width: 60%;
}
.kenmerken-tab-block-part {
    display: none;
}
.kenmerken-tab-block-part ul:first-child{
    margin-top: 6px;
}
.aanbod-dtls-area.hidden-tab .col-lg-8 {
    width: 100%;
}
.aanbod-dtls-area.hidden-tab .each-aanbod-contact {
    display: none;
}
.each-aanbod-contact .row {
    align-items: center;
}
.tab-cross {
    cursor: pointer;
}
.hidden-tab-btn {
    margin: 60px 0 20px;
}
.hidden-tab-btn .common_btn {
    font-size: 1.8rem;
    padding: 10px 40px;
}
.dtl-tab-part .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}
.bullet-panel {
    margin-bottom: 20px;
}
.bullet-panel h4 {
    border-bottom: 1px solid #FFF;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #FFF;
}
.dtl-tab-part .bullet-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.dtl-tab-part .bullet-panel ul li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.6rem;
    position: relative;
    color: rgba(255, 255, 255, 0.70);
}
.dtl-tab-part .bullet-panel ul li::after{
    opacity: 0.5;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAD6A5;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #FAD6A5;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block p {
    margin-top: 8px;
    margin-bottom: 25px;
}
.left-bg-block p {
    color: #0C0A00;
    margin-bottom: 0;
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.block-dtls h6 {
    text-transform: none;
    font-size: 2rem;
    color: #fff;
    font-family: 'MonaSansExpanded-Medium';
}
.tab-btm-btn {
    text-align: center;
    padding-top: 100px;
}
/*****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;
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
    border-radius: 20px;
    background-color: #0C0A00;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #FAD6A5;
    box-shadow: 0px 0px 25px 0px rgba(250, 214, 165, 0.5);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(250, 214, 165, 0.5);
    overflow: hidden;
}
.kenmarken-popup-close {
    background-color: #0C0A00;
    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 #FAD6A5;
}
.kenmarken-popup-close img {
    width: 30px;
}
.kenmarken-popup-content {
    overflow-y: scroll;
    height: calc(100% - 116px);
    padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar {
    background-color: rgba(210, 169, 55, 0.27);
    width: 10px;
    border-radius: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
    background-color: #0C0A00;
    border-radius: 20px;
}
.kenmerken-popup-model {
    padding-bottom: 30px;
    padding-right: 40px;
}
.kenmerken-popup-model h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 2rem;
    margin-bottom: 10px;
}
.kenmerken-popup-model h6 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.6rem;
    font-family: 'MonaSansExpanded-Regular';
    color: #FFF;
}
.kenmarken-popup-content h4 {
    margin-bottom: 33px;
    font-size: 3.2rem;
    line-height: 32px;
    letter-spacing: normal;
    color: #fff;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 34px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.60);
}
.kenmarken-popup-content li:nth-child(even) {
    color: rgba(255, 255, 255, 0.50);
}
.kenmarken-popup-content li::after {
    display: none;
}
.aanbod-dtl-product-slider-thumbs{
    position: relative;
}
.aanbod-dtl-product-slider-thumbs::before, .aanbod-dtl-product-slider-thumbs::after{
    position: absolute;
    top:0;
    left: 0;
    width: 85px;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #2C2C2C 17.48%, rgba(44, 44, 44, 0.00) 100%);
    z-index: 3;
}
.aanbod-dtl-product-slider-thumbs::before{
    left: auto;
    right: 0;
    width: 85px;
    height: 100%;
    background: linear-gradient(-90deg, #2C2C2C 17.48%, rgba(44, 44, 44, 0.00) 100%);
}
/* *******aanbod-dtl-product-sec********** */
.aanbod-dtl-product-slider .swiper-button-next {
    right: 3%;
}
.aanbod-dtl-product-slider .common-arrow {
    top: 27%;
}
.aanbod-dtl-product-sec {
    padding: 100px 0 118px;
}
.aanbod-dtl-product-sec .product-title {
    margin-bottom: 45px;
}
/* ==========================================over-one=============================================== */
/* *******Over-ons-top-sec******* */
.over-one-banner::after{
    display: none;
}
.Over-ons-top-sec{
    padding-top: 85px;
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.Over-ons-top-sec .pattern{
    z-index: 1;
}
.Over-ons-top-heading{
    max-width: 958px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}
.Over-ons-top-heading p{
    margin-bottom: 0;
    padding-top: 35px;
    color: #F2F0EF;
}
.Over-ons-top-heading h2{
    color: #FFF;
}
.each-over-one-top-slider img{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}
.each-over-one-top-slider {
    position: relative;
    width: 100%;
}
.each-over-one-top-slider-img {
    height: 220px;
}
.each-gal-img img {
    height: 100%;
    object-fit: cover;
}
.Over-ons-top-slider .swiper-slide:nth-child(even) .each-over-one-top-slider {
    margin-top: 45px;
}
/* *******over-one-btm-sec****** */
.each-over-one-btm-slider-img img{
    border-radius: 10px;
}
.each-over-one-btm-slider-img{
    height: 532px;
}
.each-over-one-btm-slider-img img {
    height: 100%;
    object-fit: cover;
}
.over-one-btm-slider .swiper-slide:nth-child(even) .each-over-one-btm-slider {
    margin-top: 62px;
}
.over-one-btm-heading{
    padding-bottom: 75px;
}
.over-one-btm-heading h2{
    color: #FFF;
}
.over-one-btm-sec{
    padding-top: 22px;
    padding-bottom: 120px;
}
.over-one-home-sec .pattern{
    top: -55px;
}
/* ==================================verkoop============================== */
/* ******verkoop-top-sec****** */
.verkoop-top-sec .diens-dtl-top-content h3{
    color: rgba(255, 255, 255, 0.70);
}
.verkoop-mid-info table{
    width: 100%;
}
.verkoop-mid-info td {
    width: 50%;
    padding: 65px 35px 43px;
    border: 1px solid rgba(12, 10, 0, 0.10);
    background: #151515;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.verkoop-mid-info td:hover{
    background: #534732;
}
.verkoop-mid-info tr {
  display: flex;
  column-gap: 15px;
}
.verkoop-mid-info td h3{
    padding-bottom: 25px;
}
.verkoop-mid-info td li{
    padding-bottom: 3px;
}
.verkoop-mid-info td ul{
    padding-left: 10px;
}
/* ================thank-you===================== */
/****popup****/
.modal-area .modal-dialog {
    max-width: 76.5%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background: rgba(12, 10, 0, 0.50);
}
.modal-area .modal-content {
    border: 0;
    position: relative;
    background: #F2F0EF;
    border-radius: 0;
}
.modal-area .popup-content {
    padding: 22px 42px 14px 70px;
}
.pop-up-image {
    height: 100%;
}
.pop-up-image img {
    height: 100%;
    object-fit: cover;
}
.popup-content h3 {
    margin: 26px 0 23px;
    color: #0A1520;
}
.popup-content p,
.popup-content li {
    color: #0A1520;
    margin-bottom: 0;
    max-width: 649px;
}
.popup-content li{
    padding-left: 17px;
}
.popup-content ul{
    padding-left: 10px;
}
.popup-content li:last-child {
    margin-bottom: 14px;
}
.popup-content li::after{
    background-image: url(../images/bullet-black.svg);
}
.close-img {
    position: absolute;
    top: 22px;
    right: 22px;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    border-radius: 50%;
}
.close-img img {
    width: 30px;
}
.modal-main-content .col-lg-5 { 
    width: 37.5%;
}
.modal-main-content .col-lg-7 { 
    width: 62.5%;
}
/* *******thankyou-banner-sce******** */
.thankyou-banner-sce .inner-banner-img {
  height: 915px;
}
.thankyou-banner-sce .inner-banner-img img{
    height: 100%;
    object-fit: cover;
}
.thankyou-banner-sce .inner-banner-content {
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    left: 0;
    z-index: 2;
    width: 100%;
}
.thankyou-banner-sce .inner-banner-content h1 {
    margin-bottom: 4px;
}
.thankyou-banner-sce .inner-banner-content h2{
    margin-bottom: 80px;
}
.inner-banner.thankyou-banner-sce::after{
    z-index: -1;
}
.inner-banner.thankyou-banner-sce{
    margin-bottom: 50px;
}
/* ========aanbod-list============ */
/* ********aanbod-list-car-sec******* */
.aanbod-list-car-sec{
    padding-bottom: 120px;
    position: relative;
    padding-top: 45px;
}
.aanbod-list-car-sec .row{
    row-gap: 50px;
}
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding-top: 174px;
	position: relative;
}
.aanbod-filter-heading{
    padding-bottom: 37px;
}
.aanbod-filter-sec .product-sec-mark {
    z-index: 1;
}
.aanbod-filter-wrap .hidden-filter {
    background-color: #0C0A00;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a:hover{
    color: #FAD6A5;
}
.filter-reset {
	padding: 0;
    background-color: transparent;
    border: none;
    color: #fff;
    position: relative;
}
.filter-reset::after{
    content: "";
    height: 56px;
    width: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25%;
    background-color: rgba(255, 255, 255, 0.10);
}
.filter-reset::before {
	display: none;
}
.filter-mobile-reset {
	display: none;
}
.aanbod-filter strong {
	font-weight: normal;
	padding: 20px 30px 20px 25px;
	position: absolute;
	color: #fff;
	font-family: 'MonaSansExpanded-Regular';
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
}
.select-style {
	width: 100%;
    height: 100px;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.6rem;
    padding: 12px 30px 12px 25px;
    background: url(../images/filter-arrow.svg)  no-repeat 85% center/15px;
    appearance: none;
    line-height: 110px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
    cursor: default;
    color: rgba(255, 255, 255, 0.50);
}
.filter-main {
    margin-bottom: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    padding-right: 25px;
    padding-left: 14px;
}
.each-filter::after{
    content: "";
    height: 56px;
    width: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: rgba(255, 255, 255, 0.10);
}
.each-filter{
    position: relative;
}
.filter-main option{
	font-family: 'NotoSans-Medium';
	background-color: #0C0A00;
}
.filter-content {
    display: none;
    background-color: #F2F0EF;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #F2F0EF;
    border-top: 0;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
	border-radius: 0;
}
.filter-content::-webkit-scrollbar {
	background-color: #F2F0EF;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #0C0A00;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'MonaSansExpanded-Regular';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #0C0A00;
    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 #0C0A00;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #0C0A00;
}
.auto-overview-tag {
    margin-right: 5px;
	margin-bottom: 10px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    border-radius: 0;
    background-color: #534631;
	font-family: 'MonaSansExpanded-Regular';
    font-size: 1.4rem;
    border: 1px solid #534631;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover img{
    filter:  invert(1);
}
.auto-overview-tag:hover {
	background: rgba(250, 214, 165, 1);
    border: 1px solid rgba(250, 214, 165, 1);
    color: #0C0A00;
}
.aanbod-filter {
    width: 20%;
}
.filter-main-part.row {
	position: relative;
}
.filter-main-part.row::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(34, 34, 34, 0.3);
}
.filter-main .col-xl-10 {
	width: 64%;
}
.filter-main .col-xl-2 {
	width: 36%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 103px;
    background-color: rgba(34, 34, 34, 0.9);
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #fad7a5;
    border-color: #fad7a5;
	padding: 13px 24px;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #F2F0EF;
    padding: 13px 24px;
}
.mobile-show-filter .common-btn::before {
	display: none;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #0C0A00;
	border-radius: 100%;
	color: #F2F0EF;
    border: 1px solid #0C0A00;
	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;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.10);
    background: #0C0A00;
}
.mobile-filter-close span {
    max-width: 35px;
	width: 100%;
    height: 35px;
    background: #534631;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #0C0A00;
}
.mobile-filter-close span img {
	width: 11px;
}
.auto-overview-filter-result .common-btn::before {
	display: none;
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	padding: 10px;
	border-radius: 2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F2F0EF;
}
.auto-overview-filter-result .occasions-btn{
    border-color: #F2F0EF;
    background-color: transparent;
    color: #F2F0EF;
    border: 1px solid #F2F0EF;
    transition: all 0.5S;
    -webkit-transition: all 0.5S;
}
.auto-overview-filter-result .occasions-btn:hover{
    background-color: #FAD6A5;
    color: #0C0A00;
    padding: 10px;
}
.cursor-pointer {
	cursor: pointer;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.aanbod-filter:first-child .each-filter::after{
    display: none;
}
.aanbod-list-car-sec .pattern{
    z-index: -1;
}
.aanbod-dtl-product-sec{
    position: relative;
    overflow: hidden;
}
.aanbod-dtl-product-sec .pattern{
    z-index: -1;
    top: unset;
    bottom: 0px;
}
/* ==========verkocht=================== */
.verkocht-car-list-sec .each-product-img img{
    transform: unset;
}
.verkocht-car-list-sec .each-product:hover .each-product-text {
    background-color: #151515;
}
.verkocht-car-list-sec{
    padding-top: 23px;
}
/**********************style for developer************************/

/*******loader*****/
#loader_section{
    display:none;
    width:100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
  }
  #loader_section p{
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  #loader_section img{
    width: 100px;
    margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
      background: #000000;
      width: 100%;
      height: 50px;
      display: block;
      text-align: center;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer:hover {
      background: #202020;
      transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
      height: 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 #fff;
    padding-bottom: 10px;
    color: #fff;
    font-size: 2rem;
}
  .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;
  }
  /* /iframe-footer/ */
  .iframe-footer {
      border: 0;
      width: 100%;
      /* margin-bottom: 0; */
      height: 50px;
      display: block;
      border-radius: 10px;
      margin: 10px auto 0;
      max-width: 100%;
  }
  
  /* .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: #25D366;
      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;
  }
  
  /* .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;
  } */
  
  .google-review{
      display: none;
  }
.share-social-media-button .a2a_dd svg {
    margin-right: 0 !important;
}
.calsty {
    border: 0;
    width: 100%;
    height: 690px;
    background: transparent;
}


/* New Css Fix */
.inner-banner-img {
    height: 600px;
    width: 100%;
}
.inner-banner-img img {
    height: 100%;
    object-fit: cover;
}
.widget-btn-area{
	bottom: 2rem;
  	left: 3rem;
  	z-index: 99;
}
.widget-btn{
	border-radius: 10px;
  	background: #FAD6A5;
	box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
	-webkit-box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
  	padding: 1.3rem 2.5rem;
  	font-size: 1.7rem;
  	font-family: 'MonaSansExpanded-Medium';
  	cursor: pointer;
  	color: #121212;
}	
.widget-btn span:after, .widget-mobile span:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	right: -.5rem;
	content: '';
	width: 1rem;
	height: 1rem;
	background: url(../images/next-white.svg) no-repeat center/ contain;
}
.widget-content{
	background: #1c1c1c;
	padding: 4.5rem;
  	-webkit-box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
	box-shadow: -5px 1px 17px 3px rgba(0,0,0,0.2);
  	border-radius: 20px;
  	width: 51rem;
  	display: none;
}
.arw-rotate{
	margin-top: -2.5rem;
  	margin-bottom: 1rem;
  	transform: rotate(-90deg);
	cursor:pointer;
}
.widget-content h4, .widget-content h5{
	text-transform: unset;
	color: #fff;
	letter-spacing: normal;
}
.widget-content h4{
  	font-size: 2.4rem;
}
.widget-content h5{
	font-family: 'MonaSansExpanded-Regular';
	font-size: 1.7rem;
	margin: 1.5rem 0 5.4rem;
}
.widget-content h5 span{
	text-decoration: underline;
	color: #FAD6A5;
}
.widget-content button, .widget-mobile button{
	border-radius: 5px;
	color: #121212;
	border: 2px solid #FAD6A5;
  	background: #FAD6A5;
	padding: 1.2rem 2rem;
	font-size: 1.7rem;
  	font-family: 'MonaSansExpanded-Medium';
	margin-right: .5rem;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	cursor: pointer;
}
.widget-content button:hover, .widget-mobile button:hover{
	background: #fff !important;
	border-color: #fff !important;
	color: #FAD6A5 !important;
}