body {
	padding: 0px;
	margin: 0px;
    color: #121212;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    /*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;
}
.star_icon p { 
    margin-bottom: 0; 
}
/****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;
}
/***fix-wp***/
.fix-wp {
    position: fixed;
    height: 48px;
    width: 48px;
    background-color: #25D366;
    border-radius: 100%;
    z-index: 98;
    bottom: 50px;
    right: 30px;
}
.fix-wp img {
    width: 22px;
}
.fix-wp a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/***header-area****/
.header-area {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-active {
    background-color: #0E0E0E;
    border-color: rgba(255, 255, 255, 0.2);
}
.header-reach ul {
    margin: 0;
    display: flex;
    align-items: center;
}
.header-reach li {
    padding-left: 0;
    color: #fff;
}
.header-reach li::after {
    display: none;
}
.header-reach li img {
    margin-right: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-reach li strong {
    margin-right: 10px;
    font-weight: normal;
    position: relative;
    top: 1px;
    font-family: 'LamaSans-Medium';
}
.header-reach li a {
    color: #fff;
}
.header-reach li a:hover {
    color: #B10F23;
}
.header-reach li a:hover img {
    opacity: 0.5;
}
.header-logo img {
    width: 222px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
}
.header-nav {
    margin-right: 40px;
}
.header-nav > ul {
    display: flex;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-nav > ul > li {
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 25px;
    letter-spacing: 0.32px;
    padding-left: 0;
}
.header-nav > ul > li::after {
    display: none;
}
.header-nav > ul > li > a {
    color: #fff;
}
.header-nav > ul > li > a:hover {
    color: #B10F23;
}
/******menu-btn******/
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    color: #fff;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    gap: 10px;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar {
    position: relative;
    max-width: 28px;
    width: 100%;
    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: 3px 0 3px auto;
    width: 28px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-btn strong {
    font-weight: normal;
}
.menu-btn.active .menu-bar div {
    transform: scale(0);
}
.menu-btn.active .menu-bar:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-btn.active .menu-bar:after {
    transform: translateY(-4px) rotate(-135deg);
}
.menu-btn.active strong {
    opacity: 0;
    pointer-events: none;
}
/***dropdown***/
.parent-dropdown {
	position: relative;
    z-index: 1;
}
.parent-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 34px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #fff;
	min-width: 170px;
	text-align: center;
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown ul li {
	color: #fff;
    padding-left: 0;
}
.parent-dropdown ul li::after {
    display: none;
}
.header-nav .parent-dropdown > a {
    padding-right: 15px;
    padding-bottom: 13px;
}
.parent-dropdown ul li a {
	color: #121212;
	padding: 5px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	display: block;
	width: 100%;
}
.parent-dropdown ul li:last-child a {
	border-bottom: 0;
}
.parent-dropdown ul li a:hover {
	color: #B10F23;
}
.parent-dropdown img {
    cursor: pointer;
    width: 10px;
    position: absolute;
    right: 0;
    top: 11px;
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.parent-dropdown.open img {
	transform: rotate(180deg);
    filter: brightness(0) invert(1);
}
.parent-dropdown.open ul {
	max-height: 500px;
	opacity: 1;
	pointer-events: all;
}
.parent-dropdown.open img {
	transform: rotate(180deg);
} 
/*****mega-menu****/
.mega-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #B10F23;
    padding: 0 40px 65px;
    z-index: 98;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
}
.mega-menu .container {
    height: 100%;
}
.mega-menu-wrap {
    height: 100%;
    overflow-y: auto;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}
.mega-menu-wrap::-webkit-scrollbar {
    width: 10px;
    background-color: #2C2C2C;
    border-radius: 10px;
}
.mega-menu-wrap::-webkit-scrollbar-thumb {
    background-color: #151515;
    border-radius: 10px;
}
.mega-menu-nav {
    margin: 48px 0 68px;
    padding-bottom: 54px;
    border-bottom: 1px solid #fff;
}
.mega-menu-nav ul {
    margin-bottom: 0;
}
.mega-menu-nav > ul {
    display: flex;
    column-gap: 10px;
    row-gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mega-menu-nav > ul > li {
    padding-left: 0;
    font-size: 3.6rem;
    font-family: 'Riope-Regular';
    line-height: normal;
    display: table;
    width: 49%;
    margin-bottom: 0;
}
.mega-menu-nav > ul > li:nth-child(even) {
    text-align: right;
}
.mega-menu-nav > ul > li::after {
    display: none;
}
.mega-menu-nav > ul > li > a {
    color: rgba(255, 255, 255, 0.5);
}
.mega-menu-nav > ul > li > a:hover {
    color: #fff;
}
.mega-menu-nav .parent-dropdown > a {
    padding-right: 20px;
    padding-bottom: 3px;
}
.mega-menu-nav .parent-dropdown img {
    right: auto;
    filter: brightness(0) invert(1);
    width: 20px;
    opacity: 0.5;
}
.mega-menu-nav .parent-dropdown:hover img {
    opacity: 1;
}
.mega-menu-nav .parent-dropdown:hover > a {
    color: #fff;
}
.mega-menu-nav .parent-dropdown ul {
    left: 0;
    transform: translateX(0);
    background-color: #2C2C2C;
    border-color: rgba(255, 255, 255, 0.1);
    top: 40px;
}
.mega-menu-nav .parent-dropdown ul li {
    font-size: 1.6rem;
}
.mega-menu-nav .parent-dropdown ul li a {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.mega-menu-nav .parent-dropdown ul li a:hover {
    color: #B10F23;
}
.mega-menu .sec-pattern {
    height: 100%;
    width: 100%;
}
.mega-menu .sec-pattern img {
    height: 100%;
    object-fit: cover;
}
.menu-img {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    height: 100px;
    position: relative;
    display: grid;
}
.each-menu-img {
    height: 100%;
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.menu-img .each-menu-img.active {
    opacity: 1;
}
.each-menu-img img {
    height: 100%;
    object-fit: cover;
}
.mega-menu-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.mega-menu-contact h4 {
    color: #fff;
}
.mega-menu-contact p {
    color: #fff;
    font-family: 'Riope-Regular';
    font-size: 3.6rem;
    line-height: normal;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 38px;
}
.mega-menu-contact p a {
    color: #fff;
}
.mega-menu-contact p a:hover {
    color: rgba(255, 255, 255, 0.5);
}
/*****banner-sec***/
.banner-sec {
    position: relative;
}
.banner-video, .each-banner {
	height: 900px;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
.banner-content {
    position: absolute;
    left: 0;
    bottom: 68px;
    z-index: 1;
    width: 100%;
}
.banner-content h1 {
    margin-bottom: 190px;
}
.banner-content p {
    max-width: 410px;
    width: 100%;
    margin-bottom: 0;
    margin-left: auto;
    color: #fff;
}
.banner-sec .swiper-pagination {
    top: 50%;
    right: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    transform: translateY(-50%);
    padding-right: 37px;
}
.banner-sec .swiper-pagination-bullet {
    width: 2px;
    height: 67px;
    background: #fff;
    opacity: 1;
    margin: 10px 0 !important;
    border-radius: 0;
}
.banner-sec .swiper-pagination-bullet-active {
    background: #B10F23;
}
/*****product-sec*****/
.product-sec {
    padding: 83px 0 77px;
    position: relative;
}
.product-sec .container {
    position: relative;
    z-index: 1;
}
.product-heading-left {
    max-width: 444px;
    width: 100%;
}
.product-heading {
    margin-bottom: 60px;
}
.sec-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
.sec-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.product-sec .sec-pattern {
    top: 24px;
}
.product-heading p {
    margin-bottom: 0;
}
.each-product-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
    height: 100%;
}
.each-product-img-wrap {
	height: 100%;
	width: 100%;
}
.each-product-img img {
	display: none;
    height: 100%;
    object-fit: cover;
}
.each-product-img-wrap img.active {
	display: block;
}
.each-product-progress {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 10px;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.2);
	display: none;
}
.each-product-progress span {
	background: linear-gradient(90deg, rgba(135, 61, 40, 0.30) -0.14%, #B10F23 100.14%);
	display: block;
	height: 100%;
	width: 0;
}
.each-product-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.product-arrow {
    height: 61px;
    width: 61px;
    background-color: #B10F23;
    border-radius: 100%;
    position: absolute;
    right: 18px;
    bottom: 18px;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-arrow::after {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/product-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px;
}
.each-product-text {
    margin-top: 18px;
}
.each-product-text p {
    color: rgba(14, 14, 14, 0.5);
    margin: 3px 0;
    opacity: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2lh;
}
.product-slider .swiper-slide-active .each-product-text p {
    opacity: 1;
}
.each-product-text ul {
    margin-bottom: 0;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.each-product-price ul {
    justify-content: end;
}
.each-product-price li:first-child {
    background-color: #B10F23;
    color: #fff;
}
.each-product-text li {
    color: #121212;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 25px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 0;
    /* padding-right: 8px;
    margin-right: 8px; */
    margin-bottom: 0;
    border-radius: 5px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
}
.each-product-text li::after {
    display: none;
}
.each-product-text li img {
    width: 17px;
}
.each-product-text .col-lg-8 {
    width: 66%;
}
.each-product-text .col-lg-4 {
    width: 34%;
}
/* .each-product-text li::after {
    content: "";
    height: 60%;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    left: auto;
    background-color: #121212;
    border-radius: 0;
    background-image: none;
}
.each-product-text li:last-child {
    padding-right: 0;
}
.each-product-text li:last-child::after {
    display: none;
} */
.each-product-text h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-control {
    padding: 202px 0 105px;
    background-color: #F4EEE6;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -21%;
}
.product-control .common-arrow {
    height: auto;
    width: auto;
    border: 0;
    color: #121212;
    letter-spacing: 0.32px;
    gap: 20px;
    top: 57%;
    transform: translateY(-50%);
}
.product-control .common-arrow:hover {
    background-color: transparent;
}
.product-control .common-arrow strong {
    width: 98px;
    height: 98px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-control .common-arrow:hover strong {
    background-color: #B10F23;
    border-color: #B10F23;
}
.product-control .common-arrow strong img {
    width: 10px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(19%) saturate(1890%) hue-rotate(326deg) brightness(96%) contrast(92%);
}
.product-control .common-arrow:hover strong img {
    filter: brightness(0) invert(1);
}
.product-control .swiper-button-next {
    right: 44px;
}
.product-control .swiper-button-prev {
    left: 44px;
}
.each-product {
    transform: scale(0.55);
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-slider .swiper-slide-next .each-product {
    right: 24%;
    margin-top: -15.4%;
    height: 440px;
}
.product-slider .swiper-slide-prev .each-product {
    left: 24%;
    margin-top: -15.4%;
    height: 440px;
}
.product-slider .swiper-slide-next .each-product-text h4,
.product-slider .swiper-slide-prev .each-product-text h4 {
    font-size: 4.8rem;
}
.product-slider .swiper-slide-next .each-product-text ul,
.product-slider .swiper-slide-prev .each-product-text ul {
    opacity: 0;
}
.product-slider .swiper-slide-active .each-product {
    transform: scale(1);
}
.product-slider .swiper-slide-active .each-product-img {
    border-radius: 10px;
}
.product-slider .swiper-slide-active .product-arrow {
    opacity: 1;
}
.product-slider .common-arrow {
    display: none;
}
/******usp-sec****/
.usp-sec {
    position: relative;
}
.each-usp {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.each-usp img {
    width: 70px;
    height: 70px;
}
.each-usp h4 {
    margin: 36px 0 8px;
}
.each-usp p {
    margin-bottom: 0;
}
/****service-sec*****/
.service-sec {
    padding-top: 67px;
    position: relative;
    z-index: 1;
}
.service-sec::after {
    content: "";
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #121212;
    border-radius: 20px 20px 0 0;
}
.service-sec .sec-pattern {
    top: 60%;
    z-index: 1;
    /* height: calc(100% + 80%); */
    height: calc(100% + 26%);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.service-sec .sec-pattern img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.service-sec .container {
    position: relative;
    z-index: 2;
}
.service-sec .sec-mark {
    bottom: 36%;
}
.service-wrap {
    background-color: #F7F7F7;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
}
.each-service-thumb {
    border-radius: 10px;
    border: 1px solid rgba(18, 18, 18, 0.05);
    padding: 23px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-thumb em {
    width: 53px;
    height: 48px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service-thumb em img {
    width: 30px;
}
.each-service-thumb:hover,
.service-thumb .swiper-slide-thumb-active .each-service-thumb {
    border-color: #fff;
    background-color: #fff;
}
.each-service-thumb:hover em,
.service-thumb .swiper-slide-thumb-active .each-service-thumb em {
    background-color: #F7F7F7;
}
.service-thumb {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.service-content {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 48px 61px;
}
.each-service-content-desc {
    max-width: 460px;
    width: 100%;
}
.each-service-content-desc p {
    margin: 5px 0 20px;
}
.each-service-content-desc img {
    border-radius: 10px;
    max-width: 338px;
    margin-bottom: 30px;
    display: block;
}
.each-service-content-info {
    max-width: 553px;
    width: 100%;
    margin-left: auto;
}
.each-service-content-info p {
    margin: 8px 0 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.each-service-content-info ul {
    margin-bottom: 0;
}
.each-service-content-info li {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #F7F7F7;
}
.each-service-content-info li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.service-control {
    display: none;
}
/****service-cta-sec****/
.service-cta-sec {
    padding: 70px 0 56px;
    background-color: #121212;
    position: relative;
}
.service-cta-sec .container {
    position: relative;
    z-index: 1;
}
.service-cta-wrap {
    border-bottom: 1px solid rgba(244, 238, 230, 0.20);
    padding-bottom: 45px;
}
.service-cta-sec h4 {
    color: #fff;
}
.service-cta-sec .common-btn {
    margin-right: 10px;
    margin: 10px 10px 10px 0;
}
.service-cta-sec .common-btn:last-child {
    margin: 0;
}
/****about-sec*****/
.about-sec {
    background-color: #121212;
    position: relative;
}
.about-sec .container {
    position: relative;
    z-index: 1;
}
.about-wrap {
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.about-text {
    background-color: #F7F7F7;
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    position: relative;
}
.about-text p {
    margin: 9px 0 30px;
}
.about-text li {
    margin-bottom: 16px;
    letter-spacing: 0.32px;
}
.about-text ul {
    margin: 16px 0 26px;
    max-width: 245px;
    width: 100%;
}
.about-text img {
    position: absolute;
    right: 50px;
    bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 223px;
    display: block;
}
/****specility-sec****/
.specility-sec {
    background-color: #121212;
    padding-top: 19px;
    position: relative;
}
.specility-sec .swiper-slide {
    height: auto;
}
.specility-slider {
    border-radius: 20px;
    overflow: hidden;
}
.each-specility {
    padding: 27px 51px;
    border-radius: 20px;
    height: 100%;
    cursor: default;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-specility h4 {
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-specility p {
    color: #fff;
    margin: 8px 0 0;
    padding-right: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-specility:hover {
    background-color: #F7F7F7;
}
.each-specility:hover h4 {
    color: #121212;
}
.each-specility:hover p {
    color: #121212;
}
/****review-sec****/
.review-sec {
    padding: 95px 0;
    background-color: #121212;
    position: relative;
    z-index: 1;
}
.review-sec .sec-mark {
    right: auto;
    left: 0;
    bottom: -9%;
}
.review-sec .container {
    position: relative;
    z-index: 1;
}
/*****footer-area*****/
.footer-area {
    padding: 55px 0 45px;
    background-color: #151515;
    position: relative;
    z-index: 1;
}
.footer-area::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(21, 21, 21, 0.90) 0%, rgba(21, 21, 21, 0.90) 100%);
    pointer-events: none;
}
.footer-area .container {
    position: relative;
    z-index: 1;
}
.footer-logo img {
    width: 256px;
}
.footer-info {
    max-width: 920px;
    width: 100%;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.each-footer-info h6 {
    margin-bottom: 12px;
}
.each-footer-info p {
    color: #fff;
    margin-bottom: 0;
    letter-spacing: normal;
    line-height: 30px;
    font-family: 'Riope-Regular';
}
.each-footer-info p a {
    color: #fff;
}
.each-footer-info p a:hover {
    color: #B10F23;
}
.each-footer-info td {
    color: #fff;
    line-height: 30px;
    font-family: 'Riope-Regular';
}
.brand-name {
    border-bottom: 3px solid #2C2C2C;
    overflow: hidden;
    height: 150px;
    /* margin-top: 85px; */
    margin-top: 52px;
}
.brand-name h2 {
    color: rgba(44, 44, 44, 0.50);
    font-family: 'Riope-Regular';
    font-size: 17.1rem;
    line-height: normal;
    text-align: center;
}
.footer-btm {
    margin-top: 50px;
}
.footer-reach {
    display: flex;
    gap: 11px;
    align-items: center;
}
.footer-social ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer-social li {
    padding-left: 0;
    margin-bottom: 0;
}
.footer-social li::after {
    display: none;
}
.footer-social li a {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social li a:hover {
    background-color: #B10F23;
    border-color: #B10F23;
}
.footer-policy p {
    color: #fff;
    margin-bottom: 0;
}
.footer-policy p a {
    color: #fff;
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Riope-Regular';
}
.footer-policy p a:hover {
    color: #B10F23;
}
.footer-other {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
    /* justify-content: end; */
    align-items: center;
    margin-top: 50px;
}
.footer-bovag img{
    width: 103px;
    border-radius: 5px;
}
.footer-rating img{
    width: 136px;
}
.footer-rating iframe {
    width: 171px;
    height: 51px;
}
.footer-other-place {
    display: none;
}
/* ============================================== diensten-list ============================================== */
/****inner-banner-sec****/
.inner-banner-sec {
    position: relative;
}
.inner-banner-content {
    position: absolute;
    left: 0;
    top: 65%;
    z-index: 1;
    width: 100%;
    transform: translateY(-50%);
}
.each-inner-banner {
    height: 500px;
}
.each-inner-banner img {
    height: 100%;
    object-fit: cover;
}
/****diensten-list-sec****/
.diensten-list-sec {
    position: relative;
    padding: 95px 0 105px;
}
.diensten-list-sec .container {
    position: relative;
    z-index: 1;
}
.each-diensten-list {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diensten-list-img {
    border-radius: 10px;
    overflow: hidden;
    height: 333px;
}
.each-diensten-list-img img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 100%;
    object-fit: cover;
}
.each-diensten-list-info p {
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 13px;
}
.each-diensten-list-info .txt-btn {
    color: #121212;
    display: inline;
    text-decoration: none;
}
.each-diensten-list-info .txt-btn::after {
    filter: brightness(0);
}
.diensten-list-sec .col-lg-4 {
    padding-left: 23.5px;
    padding-right: 23.5px;
}
.diensten-list-sec .row {
    margin-left: -23.5px;
    margin-right: -23.5px;
    row-gap: 65px;
}
.each-diensten-list-info {
    margin-top: 23px;
}
.each-diensten-list:hover img {
    transform: scale(1.1);
}
.each-diensten-list:hover .txt-btn {
    color: #B10F23;
    text-decoration: underline;
}
.each-diensten-list:hover .txt-btn::after {
    filter: brightness(1);
    right: 0;
}
.diensten-list-sec .row .col-lg-4:nth-child(2)  .each-diensten-list-img,
.diensten-list-sec .row .col-lg-4:nth-child(5)  .each-diensten-list-img,
.diensten-list-sec .row .col-lg-4:nth-child(8)  .each-diensten-list-img {
    height: 434px;
}
/* ============================================== werkplaats-list ============================================== */
.each-werkplasts-list .each-diensten-list-info h4 {
    color: #fff;
} 
.each-werkplasts-list .each-diensten-list-info p {
    color: #fff;
    max-width: 355px;
    width: 100%;
    margin: 12px 0 43px;
}
.each-werkplasts-list .each-diensten-list-info {
    padding: 70px 43px 43px;
    margin-top: 0;
}
.each-werkplasts-list:hover .common-btn::before {
    width: calc(100% - 6px);
}
.each-werkplasts-list:hover .common-btn::after {
    right: 23px;
    filter: brightness(0) invert(1);
}
/* ============================================== diensten-dtl ============================================== */
/****inner-header****/
.inner-header {
    background-color: #121212;
}
/****bk-btn-sec****/
.bk-btn-sec {
    padding-top: 174px;
}
.bk-btn-sec .common-btn {
    padding: 17px 23px 17px 43px;
}
.bk-btn-sec .common-btn::after {
    left: 9px;
    right: auto;
    transform: rotate(180deg);
    top: 42%;
}
.bk-btn-sec .common-btn::before {
    right: 3px;
    left: auto;
}
.bk-btn-sec .common-btn:hover::after {
    left: 23px;
    right: auto;
}
/****diensten-dtl-top****/
.diensten-dtl-top {
    padding-bottom: 62px;
    margin-top: -3.4%;
}
.diensten-dtl-top-img img {
    border-radius: 10px;
    overflow: hidden;
}
.diensten-dtl-top-info {
    margin-top: 93px;
}
.diensten-dtl-top-info h2 {
    margin-bottom: 20px;
}
.diensten-dtl-top-info p {
    /* color: #151515; */
    max-width: 650px;
    width: 100%;
}
.diensten-dtl-top-img {
    padding-left: 15px;
}
/****diensten-dtl-mid****/
.diensten-dtl-mid-info li {
    padding-left: 0;
}
.diensten-dtl-mid-info li::after {
    display: none;
}
.diensten-dtl-mid-info li h5 {
    position: relative;
}
.diensten-dtl-mid-info li h5 strong {
    font-weight: normal;
    padding: 7px 43px 4px;
    border-radius: 110px;
    background-color: #B10F23;
    overflow: hidden;
    max-width: max-content;
    z-index: 1;
    position: relative;
    display: inline-block;
}
.diensten-dtl-mid-info li h5::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(177, 15, 35, 0.17);
    width: 100%;
    height: 3px;
}
.diensten-dtl-mid-info {
    padding-left: 69px;
    margin-top: 5px;
}
.diensten-dtl-mid-info ul {
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 0; */
}
.diensten-dtl-mid-info li p {
    margin-top: 11px;
    max-width: 580px;
    width: 100%;
    margin-bottom: 22px;

}
/* .diensten-dtl-mid-img {
    height: 100%;
} */
.diensten-dtl-mid-img img {
    border-radius: 10px;
    overflow: hidden;
    /* height: 100%;
    object-fit: cover; */
}
/* .diensten-dtl-mid-info li:last-child p {
    margin-bottom: 0;
} */
/****form-sec****/
.form-sec {
    position: relative;
    padding-top: 70px;
}
.form-sec .sec-mark {
    bottom: 26%;
}
.form-sec::after {
    content: "";
    position: absolute;
    height: 32%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #121212;
    border-radius: 20px 20px 0 0;
}
.form-sec .container {
    position: relative;
    z-index: 2;
}
.form-wrap {
    background-color: #F7F7F7;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
}
.form-inner-wrap {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 40px 55px;
}
.form-heading h3 {
    margin-bottom: 2px;
}
/* .form-img img {
    border-radius: 10px;
    overflow: hidden;
} */
.contact-form-sec .form-img img {
    border-radius: 10px;
    overflow: hidden;
}
.form-left {
    padding-right: 30px;
}
.form-right {
    padding-left: 45px;
}
.form-main-area .form-group {
    margin-bottom: 24px;
}
/* .form-main-area .form-group:last-child {
    margin-bottom: 0;
} */
.form-main-area .form-styl {
    resize: none;
    border-radius: 5px;
    overflow: hidden;
    font-family: 'LamaSans-Regular';
    color: #B10F23;
    font-size: 1.6rem;
    line-height: 25px;
    letter-spacing: 0.32px;
    padding: 15px 17px;
    border: 1px solid rgba(18, 18, 18, 0.50);
}
.form-main-area .form-styl:placeholder {
    color: rgba(18, 18, 18, 0.50);
}
.form-main-area .form-styl:-ms-input-placeholder {
    color: rgba(18, 18, 18, 0.50);
}
.form-main-area .form-styl::placeholder {
    color: rgba(18, 18, 18, 0.50);
}
.form-main-area .form-styl:focus {
    box-shadow: none;
    color: #B10F23;
    border: 1px solid #B10F23;
}
.form-main-area .form-styl:focus::placeholder {
    color: #B10F23;
}
.form-group textarea.form-control {
    min-height: 215px;
}
.form-main-area .form-styl.photo_upload, 
.form-main-area .form-styl.foto_upload { 
    color: rgba(14, 14, 14, 0.5);
}
.form-btm {
    margin-top: 68px;
}
.form-social ul {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.form-social li {
    padding-left: 0;
    margin-bottom: 0;
}
.form-social li::after {
    display: none;
}
.form-social li:first-child a {
    border-radius: 90px;
    background-color: #F7F7F7;
    overflow: hidden;
    padding: 5px;
    height: auto;
    width: auto;
    border: 0;
    margin-right: 10px;
}
.form-social li a em {
    border-radius: 100px;
    background-color: #62D358;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 10px 20px;
    font-style: normal;
}
.form-social li:first-child a:hover {
    background-color: #F7F7F7;
    border-color: #F7F7F7;
}
.form-social li:first-child a img {
    margin-left: 7px;
}
.form-social li a {
    color: #fff;
    border: 1px solid #121212;
    border-radius: 95px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-social li a img {
    width: 18px;
    height: 18px;
}
.form-social li a:hover {
    background-color: #B10F23;
    border-color: #B10F23;
}
.form-social li a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(16%) saturate(2%) hue-rotate(44deg) brightness(102%) contrast(100%);
}
.form-contact ul {
    display: flex;
    gap: 26px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.form-contact li {
    padding-left: 0;
}
.form-contact li a {
    display: flex;
    align-items: center;
}
.form-contact li::after {
    display: none;
}
.form-contact li img {
    margin-right: 12px;
    width: 15px;
    height: 15px;
}
.form-social-mobile {
    display: none;
}
/****dtl-slider-sec****/
.dtl-slider-sec {
    background-color: #121212;
    padding: 126px 0 74px;
    position: relative;
}
.dtl-slider-sec .sec-pattern {
    height: calc(100% + 80%);
    top: -28%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.dtl-slider-sec .container {
    position: relative;
    z-index: 1;
}
.dtl-slider-title {
    text-align: center;
    border-bottom: 1px solid rgba(247, 247, 247, 0.20);
    margin-bottom: 52px;
    padding-bottom: 33px;
}
.dtl-slider-title h2 {
    color: #fff;
}
.dtl-slider-sec .each-diensten-list-info h4 {
    color: #fff;
}
.dtl-slider-sec .each-diensten-list-info p {
    color: #F7F7F7;
}
.dtl-slider-sec .each-diensten-list-info .txt-btn {
    color: #fff;
}
.dtl-slider-sec .each-diensten-list-info .txt-btn::after {
    filter: brightness(0) invert(1);
}
.dtl-slider-sec .each-diensten-list:hover .txt-btn {
    color: #B10F23;
}
.dtl-slider-sec .each-diensten-list:hover .txt-btn::after {
    filter: brightness(1);
}
.dtl-slider .common-arrow {
    top: 30%;
}
.dtl-slider .swiper-button-next {
    right: -2.2%;
}
.dtl-slider .swiper-button-prev {
    left: -2.2%;
}
/* ============================================== vacature-dtl ============================================== */
/****vacature-dtl-mid****/
.vacature-dtl-mid > .container > .row > .col-lg-6 > .diensten-dtl-mid-info > ul > li > ul {
    margin-top: 30px;
}
.vacature-dtl-mid > .container > .row > .col-lg-6 > .diensten-dtl-mid-info > ul > li > ul li {
    padding-left: 25px;
}
.vacature-dtl-mid > .container > .row > .col-lg-6 > .diensten-dtl-mid-info > ul > li > ul li::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 4px;
    background-color: #B10F23;
    border-radius: 100%;
    background-image: url(../images/list-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px;
}
.vacature-dtl-mid > .container > .row > .col-lg-6 > .diensten-dtl-mid-info > ul {
    row-gap: 40px;
}
/* ============================================== contact ============================================== */
/****contact-form-sec****/
.contact-form-sec {
    padding-top: 0;
    margin-top: -60px;
}
.contact-form-sec::after {
    display: none;
}
.contact-form-sec .sec-mark {
    display: none;
}
.contact-form-info {
    display: flex;
    column-gap: 15%;
    row-gap: 20px;
    flex-wrap: wrap;
}
.each-contact-form-info h6 {
    color: #121212;
    margin-bottom: 5px;
}
.each-contact-form-info td:first-child {
    padding-right: 10px;
}
.each-contact-form-info a,
.each-contact-form-info td {
    line-height: 27px;
    font-family: 'Riope-Regular';
}
.contact-form-sec .form-btm {
    margin-top: 0;
}
/****contact-block****/
.contact-block {
    padding: 93px 0 93px;
}
.contact-block img {
    border-radius: 10px;
    overflow: hidden;
}
/* ============================================== over-ons ============================================== */
/****over-ons-top****/
.over-ons-top {
    position: relative;
    padding: 70px 0;
}
.over-ons-top .container {
    position: relative;
    z-index: 1;
}
.over-ons-top .sec-mark {
    bottom: auto;
    top: -8%;
    z-index: -1;
}
.over-ons-top .sec-pattern {
    z-index: -1;
}
.over-top-big-img img,
.each-over-ons-left-img img {
    border-radius: 10px;
    overflow: hidden;
}
.over-ons-left-img {
    display: flex;
    gap: 20px;
}
.over-top-big-img {
    padding-left: 10px;
}
.over-ons-top-info {
    margin-bottom: 67px;
}
.over-ons-top-info p {
    margin-top: 15px;
    max-width: 633px;
    width: 100%;
}
/****over-ons-mid-block****/
.over-ons-mid-block {
    position: relative;
}
.over-ons-mid-block .container {
    position: relative;
    z-index: 1;
}
.over-ons-mid-block .sec-mark {
    right: auto;
    z-index: -1;
    bottom: 28%;
    left: 0;
}
.over-ons-mid-block::after {
    content: "";
    position: absolute;
    height: 32%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #121212;
    border-radius: 20px 20px 0 0;
    z-index: -1;
}
.over-ons-mid-wrap {
    background-color: #F7F7F7;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
}
.over-ons-mid-inner-wrap {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 75px 85px 80px;
}
.over-ons-mid-right .diensten-dtl-mid-info li p {
    line-height: 24px;
}
.over-ons-mid-right .diensten-dtl-mid-info ul {
    margin-bottom: 0;
}
.over-ons-mid-right .diensten-dtl-mid-info li:last-child p {
    margin-bottom: 0;
}
.over-ons-mid-left {
    padding-right: 28px;
}
.over-ons-mid-left-img {
    height: 100%;
}
.over-ons-mid-left-img img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}
.over-ons-mid-right .diensten-dtl-mid-info {
    padding-left: 65px;
    margin-top: 11px;
}
/****over-ons-team-sec****/
.over-ons-team-sec {
    background-color: #121212;
    position: relative;
    padding: 90px 0 123px;
}
.over-ons-team-sec .sec-pattern {
    height: calc(100% + 27%);
    top: -27.5%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.over-ons-team-sec .container {
    position: relative;
    z-index: 1;
}
.over-ons-team-title {
    margin-bottom: 86px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(244, 238, 230, 0.2);
    text-align: center;
}
.over-ons-team-title h2 {
    color: #fff;
}
.each-over-ons-team-slider-img {
    height: 374px;
}
.each-over-ons-team-slider-img img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-over-ons-team-info {
    border-radius: 10px;
    background-color: #151515;
    padding: 14px 30px 18px;
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
}
.each-over-ons-team-info h4 {
    color: #fff;
}
.each-over-ons-team-info p {
    color: #fff;
    margin-bottom: 0;
}
.over-ons-team-slider .swiper {
    padding-bottom: 60px;
}
.each-over-ons-team-slider,
.each-over-ons-team-info,
.each-over-ons-team-info h4,
.each-over-ons-team-info p{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-over-ons-team-slider:hover .each-over-ons-team-info {
    background-color: #F7F7F7;
}
.each-over-ons-team-slider:hover .each-over-ons-team-info h4,
.each-over-ons-team-slider:hover .each-over-ons-team-info p {
    color: #121212;
}
.each-over-ons-team-slider:hover .each-over-ons-team-info .sec-mark {
    filter: brightness(0) saturate(100%) invert(96%) sepia(49%) saturate(698%) hue-rotate(293deg) brightness(114%) contrast(100%);
}
.over-ons-team-slider .swiper-button-next {
    right: -2%;
}
.over-ons-team-slider .swiper-button-prev {
    left: -2%;
}
.over-ons-team-slider .common-arrow {
    top: 37%;
}
/****over-ons-gal-sec****/
.over-ons-gal-sec {
    position: relative;
    background-color: #121212;
    padding-bottom: 76px;
}
.over-ons-gal-sec .container {
    position: relative;
    z-index: 1;
}
.over-ons-gal-sec .sec-mark {
    left: 0;
    right: auto;
    bottom: -4%;
}
.over-ons-gal-top,
.over-ons-gal-btm {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.over-ons-gal-top {
    margin-bottom: 20px;
}
.each-over-ons-gal-top {
    height: 326px;
    width: 32.33%;
}
.each-over-ons-gal-btm {
    height: 400px;
}
.each-over-ons-gal-top,
.each-over-ons-gal-btm {
    border-radius: 10px;
    overflow: hidden;
}
.each-over-ons-gal-top img,
.each-over-ons-gal-btm img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-over-ons-gal-btm-big {
    width: 49%;
}
.each-over-ons-gal-btm-small {
    width: 15.5%;
}
.each-over-ons-gal-top:hover img,
.each-over-ons-gal-btm:hover img {
    transform: scale(1.1);
}
/* ============================================== bedankt ============================================== */
/****bedankt-banner****/
.bedankt-banner .banner-content h1 {
    margin-bottom: 40px;
}
.bedankt-banner .banner-content {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 10;
}
/* ============================================== popup ============================================== */
.modal-area .modal-dialog {
    max-width: 70%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background: rgba(15, 16, 19, 0.8);
}
.modal-area .pop-up-image {
    height: 467px;
    margin-right: -6%;
    z-index: 1;
}
.modal-area .pop-up-image img {
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}
.modal-area .popup-logo img {
    width: 222px;
}
.modal-area .modal-content .col-lg-5 {
    width: 46%;
}
.modal-area .modal-content .col-lg-7 {
    width: 54%;
}
.modal-area .modal-content {
    border: 0;
    background: transparent;
    position: relative;
    border-radius: 0;
}
.modal-area .popup-content {
    padding: 50px 107px;
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, rgba(18, 18, 18, 0.90) 0%, rgba(18, 18, 18, 0.70) 100%);
    min-height: 515px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.modal-area .popup-content .common-btn {
    max-width: max-content;
}
.modal-area .popup-content p {
    color: #FFF;
    margin: 40px 0 32px;
}
.modal-area .popup-logo, .modal-area .popup-content p, .modal-area .popup-content .common-btn {
    position: relative;
    z-index: 1;
}
/* ============================================== aanbod-dtl ============================================== */
/****aanbod-dtl-top****/
.aanbod-dtl-top {
    padding: 187px 0 60px;
}
.aanbod-dtl-top .container {
    position: relative;
    z-index: 1;
}
.aanbod-dtl-top-left li {
    padding-left: 0;
    line-height: 25px;
    letter-spacing: 0.32px;
    padding-right: 10px;
}
.aanbod-dtl-top-left li:last-child {
    padding-right: 0;
}
.aanbod-dtl-top-left li:last-child::before {
    display: none;
}
.aanbod-dtl-top-left ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.aanbod-dtl-top-left li::after {
    display: none;
}
.aanbod-dtl-top-left li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    background-color: #121212;
    height: 15px;
    width: 1px;
}
/* .aanbod-dtl-top-left h2 {
    margin-bottom: 10px;
} */
.aanbod-dtl-top-right h2 {
    color: #B10F23;
}
.aanbod-dtl-top-right h6 {
    color: #121212;
}
/****aanbod-dtl-banner****/
.aanbod-dtl-banner {
    position: relative;
/*    z-index: -1;*/
}
.aanbod-dtl-banner::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 26%;
    width: 100%;
    background-color: #F7F7F7;
}
.aanbod-dtl-banner .sec-pattern {
    top: -24%;
}
.aanbod-dtl-banner-slider .product-control .swiper-button-next,
.aanbod-dtl-banner-slider .product-control .swiper-button-prev {
    color: #fff;
}
.aanbod-dtl-banner-slider .product-control .common-arrow strong img {
    filter: brightness(0) invert(1);
}
.aanbod-dtl-banner-slider .product-control {
    position: initial;
    margin-top: 0;
    padding: 0;
}
.each-aanbod-dtl-banner img {
    border-radius: 10px;
    overflow: hidden;
}
.aanbod-dtl-banner-slider .swiper-slide-next,
.aanbod-dtl-banner-slider .swiper-slide-prev {
    position: relative;
}
.aanbod-dtl-banner-slider .swiper-slide-next::after,
.aanbod-dtl-banner-slider .swiper-slide-prev::after {
    content: '';
    border-radius: 10px;
    overflow: hidden;
    /* background: linear-gradient(0deg, rgba(21, 21, 21, 0.50) 0%, rgba(21, 21, 21, 0.50) 100%); */
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.50) 0%, rgba(18, 18, 18, 0.50) 100%);
}
/****aanbod-dtl-info-block****/
.aanbod-dtl-info-block .container {
    position: relative;
    z-index: 1;
}
.aanbod-dtl-info-block tr {
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
}
.aanbod-dtl-info-block td {
    color: #121212;
    font-family: 'Riope-Regular';
    font-size: 2.8rem;
    position: relative;
    padding-left: 42px;
    line-height: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* padding-bottom: 15px; */
}
.aanbod-dtl-info-block td::after {
    content: '';
    position: absolute;
    background-color: #121212;
    height: 25px;
    top: 40%;
    transform: translateY(-50%);
    left: 0;
    width: 2px;
}
.aanbod-dtl-info-block td:first-child {
    padding-left: 0;
}
.aanbod-dtl-info-block td:first-child::after {
    display: none;
}
.aanbod-dtl-info-block td strong {
    font-size: 1.6rem;
    font-family: 'LamaSans-Regular';
    line-height: 25.28px;
    letter-spacing: 0.32px;
    font-weight: normal;
    padding-top: 3px;
}
.aanbod-dtl-info-block-wrap {
    background-color: #F7F7F7;
    overflow: hidden;
    padding: 36px 50px 34px;
    border-radius: 0 0 20px 20px;
    position: relative;
}
.aanbod-dtl-info-block-wrap::before {
    content: '';
    position: absolute;
    width: 185px;
    height: 168px;
    left: 0;
    top: -32px;
    background-image: url(../images/aanbod-dtl-info-block-merk.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 160px;
}
.aanbod-dtl-info{
    max-width: 715px;
    margin-left: auto;
}
.aanbod-dtl-info-block-wrap .col-lg-5 {
    width: 24%;
}
.aanbod-dtl-info-block-wrap .col-lg-7 {
    width: 76%;
}
.aanbod-dtl-info-social ul {
    display: flex;
    gap: 10px;
    justify-content: end;
    margin-bottom: 0;
    align-items: center;
}
.aanbod-dtl-info-social li {
    padding-left: 0;
    margin-bottom: 0;
}
.aanbod-dtl-info-social li::after {
    display: none;
}
.aanbod-dtl-info-social li a {
    border: 1px solid rgba(18, 18, 18, 0.40);
    border-radius: 100%;
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aanbod-dtl-info-social li a img {
    width: 20px;
}
.share-social-media-button svg {
    width: 20px !important;
}
.aanbod-dtl-info-social li a:hover {
    background-color: #B10F23;
    border-color: #B10F23;
}
.aanbod-dtl-info-social li a:hover img {
    filter: brightness(0) invert(1);
}
.aanbod-dtl-info-social li a:hover span {
    filter: brightness(0) invert(1);
}
.aanbod-dtl-info-social .common-btn {
    background-color: #fff;
}
/* .aanbod-dtl-info-block-wrap .col-lg-4 {
    width: 26%;
}
.aanbod-dtl-info-block-wrap .col-lg-5 {
    width: 60%;
}
.aanbod-dtl-info-block-wrap .col-lg-3 {
    width: 14%;
} */
/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}
.dtl-tab-sec .sec-pattern {
    height: calc(100% + 50%);
    top: 36%;
}
.tab-btn li::after {
    display: none;
}
.dtl-tab-btn ul {
    display: flex;
    justify-content: end;
    gap: 20px;
    margin-bottom: 0;
}
.dtl-tab-btn li::after {
    display: none;
}
.dtl-tab-btn li {
    padding-left: 0;
}
.dtl-tab-btn img {
    width: 14px;
    position: relative;
    z-index: 1;
    margin-right: 5px;
	margin-left: 0px;
}
/* .dtl-tab-btn .common-btn::after {
    display: none;
} */
/* .dtl-tab-btn .common-btn::before {
    background-color: #62D358;
    width: calc(100% - 6px);
} */
/* .dtl-tab-btn .common-btn {
    padding: 17px 23px;
} */
.dtl-tab-mobile-btn {
    display: none;
}
.tab-top {
    border-bottom: 1px solid rgba(23, 19, 19, 0.10);
    margin-bottom: 30px;
    padding-bottom: 34px;
    position: relative;
    z-index: 1;
}
.tab-content {
    position: relative;
    z-index: 1;
}
.dtl-tab-sec .tab-btn .nav-tabs {
	column-gap: 60px;
	margin-bottom: 38px;
    border: 0;
	justify-content: center;
}
.tab-btn .tabs {
    flex-wrap: wrap;
	display: flex;
    justify-content: left;
    column-gap: 55px;
	row-gap: 20px;
    padding: 0;
    overflow: hidden;
	position: relative;
    margin-bottom: 0;
}
.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(18, 18, 18, 0.30);
    text-transform: none;
	font-size: 2.8rem;
	font-family: 'Riope-Regular';
	line-height: normal;
	padding-left: 0;
	padding-bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.tab_content {
    display: none;
}
.tab_drawer_heading {
    display: none;
}
.tab-btn .tabs li.active {
	color: #121212;
}
.tab-btn .tabs li:hover {
    color: #121212;
}
.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 0;
	column-gap: 11px;
}
.kenmerken-tab li {
    width: 24.4%;
	padding: 11px 22px;
	position: relative;
	font-family: 'LamaSans-Regular';
	color: rgba(18, 18, 18, 0.70);
	line-height: 25px;
	font-size: 1.6rem;
    letter-spacing: 0.32px;
    display: flex;
    justify-content: space-between;
    column-gap: 55px;
	border-radius: 5px;
    border: 1px solid #fff;
	background-color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.kenmerken-tab li::after {
    display: none;
}
.kenmerken-tab li:nth-child(1),
.kenmerken-tab li:nth-child(2),
.kenmerken-tab li:nth-child(3),
.kenmerken-tab li:nth-child(4),
.kenmerken-tab li:nth-child(9),
.kenmerken-tab li:nth-child(10),
.kenmerken-tab li:nth-child(11),
.kenmerken-tab li:nth-child(12),
.kenmerken-tab li:nth-child(17),
.kenmerken-tab li:nth-child(18),
.kenmerken-tab li:nth-child(19),
.kenmerken-tab li:nth-child(20) {
    background-color: #F7F7F7;
}
.kenmerken-tab li strong {
	display: block;
	color: #121212;
	text-align: right;
	font-weight: normal;
    font-family: 'Riope-Regular';
    line-height: 24px;
}
.kenmerken-tab{
	overflow: hidden;
}
.bullet-panel h4 {
    border-bottom: 1.5px solid #121212;
    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 {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 20px;
    position: relative;
	margin-bottom: 5px;
	font-family: 'Riope-Regular';
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 8px;
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    width: 8px;
    height: 8px;
    background-repeat: no-repeat;
    background-image: none;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B10F23;
    font-size: 1.6rem;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #B10F23;
    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: #121212;
	font-family: 'Riope-Regular';
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}
.tab-btm-btn{
    text-align: left;
    cursor: pointer;
    margin-top: 45px;
    font-size: 1.6rem;
	line-height: normal;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
    font-family: 'LamaSans-Medium';
}
.tab-btm-btn:hover{
    color: #FFF;
}
/*****kenmarken-popup******/
.kenmarken-popup {
    display: none;
    z-index: 100;
    position: relative;
}
.kenmarken-popup-wrap {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.kenmarken-popup-overlay {
	position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}
.kenmarken-popup-inner {
	border-radius: 20px;
    background-color: #121212;
    position: relative;
    z-index: 101;
    max-width: 93%;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
	border: 1px solid #B10F23;
	box-shadow: 0px 0px 25px 0px rgb(135, 61, 40, 0.5);
	-webkit-box-shadow: 0px 0px 25px 0px rgb(135, 61, 40, 0.5);
	overflow: hidden;
}
.kenmarken-popup-close {
	background-color: transparent;
    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 #B10F23;
}
.kenmarken-popup-close img {
	width: 20px;
}
.kenmarken-popup-content {
	overflow-y: scroll;
	height: calc(100% - 116px);
	padding-right: 20px;
}
.kenmarken-popup-content::-webkit-scrollbar  {
	background-color: #5B5A5E;
	width: 10px;
    border-radius: 10px;
}
.kenmarken-popup-content::-webkit-scrollbar-thumb {
	background-color: #999999;
    border-radius: 10px;
}
.kenmerken-popup-model {
	padding-bottom: 30px;
	padding-right: 40px;
}
.kenmerken-popup-model h3 {
    color: #fff;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.kenmerken-popup-model h6 {
    color: #fff;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kenmarken-popup-content h4 {
	margin-bottom: 10px;
}
.kenmarken-popup-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px;
}
.kenmarken-popup-content li:nth-child(odd) {
    padding-right: 10px;
}
.kenmarken-popup-content li {
    width: 50%;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    line-height: 30px;
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.kenmarken-popup-content li:after {
    opacity: 0;
}
/****Beschrijving-block****/
.Beschrijving-block {
    padding: 0 0 50px;
}
.Beschrijving-block-img img{
    border-radius: 20px;
    overflow: hidden;
}
.Beschrijving-block .container {
    position: relative;
    z-index: inherit;
}
.Beschrijving-block .col-lg-7 {
    width: 56%;
}
.Beschrijving-block .col-lg-5 {
    width: 44%;
}
.Beschrijving-block-info {
    background-color: #F7F7F7;
    border-radius: 20px;
    overflow: hidden;
    padding: 76px 66px;
    height: 100%;
}
.Beschrijving-block-img {
    height: 100%;
}
.Beschrijving-block-img img {
    height: 100%;
    object-fit: cover;
}
.Beschrijving-block-info p {
    max-width: 458px;
    width: 100%;
    margin: 8px 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.Beschrijving-block-info button {
    border: 0;
    padding-left: 0;
    background-color: transparent;
}
.Beschrijving-block-info .txt-btn::after {
    top: 50%;
    transform: translateY(-50%);
}
/*****beschrijving-popup******/
.beschrijving-popup {
    display: none;
    z-index: 100;
    position: relative;
}
.beschrijving-popup-wrap {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}
.beschrijving-popup-overlay {
	position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 16, 19, 0.6);
    top: 0;
    left: 0;
    z-index: 100;
}
.beschrijving-popup-inner {
	border-radius: 20px;
    background-color: #fff;
    position: relative;
    z-index: 101;
    max-width: 55% !important;
    margin: auto auto;
    padding: 55px 60px;
    width: 100%;
    height: 562px;
	border: 1px solid #fff;
	overflow: hidden;
}
.Beschrijving-popup-content h2 {
    margin-bottom: 5px;
}
.beschrijving-popup-close {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.beschrijving-popup-close img {
    width: 25px;
    filter: brightness(0);
}
.beschrijving-popup-content {
	overflow-y: scroll;
	height: calc(100% - 116px);
	padding-right: 20px;
}
.beschrijving-popup-content::-webkit-scrollbar  {
	background-color: #5B5A5E;
	width: 10px;
    border-radius: 10px;
}
.beschrijving-popup-content::-webkit-scrollbar-thumb {
	background-color: #999999;
    border-radius: 10px;
}
.Beschrijving-popup-content {
    overflow-y: auto;
    height: 100%;
}
/****related-service-sec****/
.related-service-sec {
    background-color: #121212;
    padding: 128px 0 128px;
    overflow: hidden;
}
.related-service-sec .container {
    position: relative;
    z-index: 1;
}
.related-service-title {
    text-align: center;
}
.related-service-title h2 {
    color: #fff;
}
.related-service-slider .each-product-text h4 {
    color: #fff;
}
.related-service-slider .each-product-text li {
    color: #fff;
    font-size: 1.4rem;
    font-family: 'LamaSans-Medium';
}
.related-service-slider .each-product-text li::after {
    background-color: #fff;
}
.related-service-slider .each-related-product-img img {
    border-radius: 10px;
}
.related-service-slider .each-related-product-img {
    position: relative;
}
.each-related-product:hover .product-arrow {
    opacity: 1;
}
.related-service-title {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(244, 238, 230, 0.2);
    padding-bottom: 36px;
}
.related-service-slider .common-arrow {
    top: 35%;
}
.related-service-slider .swiper-button-next {
    right: -2%;
}
.related-service-slider .swiper-button-prev {
    left: -2%;
}
.related-service-slider .common-arrow img{
    filter: brightness(0) invert(1);
}
/* ============================================== aanbod-list ============================================== */
/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 172px 0 28px;
    background-color: #fff;
    position: relative;
    overflow: visible;
}
.aanbod-filter-sec.aanbod-filter-active .sec-pattern {
    display: none;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset a {
	color: #121212;
	font-size: 1.4rem;
	font-family: 'Riope-Regular';
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(1) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #B10F23;
}
.filter-reset a:hover img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(60%) saturate(619%) hue-rotate(327deg) brightness(97%) contrast(94%);
}
.select-style {
    width: 100%;
    height: 44px;
    color: #121212;
	font-family: 'Riope-Regular';
    font-size: 2.2rem;
    border-radius: 50px;
    padding: 0 30px 0 18px;
    background: url(../images/filter-arrow.svg) no-repeat 91% center / 15px;
    appearance: none;
    line-height: 44px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
}
.select-style:hover {
    color: #B10F23;
    background: url(../images/filter-arrow-brown.svg) no-repeat 91% center / 15px;
}
.select-style.show {
    border-radius: 8px 8px 0 0;
}
.filter-main .each-filter {
    position: relative;
}
.filter-main > .row > .col-xl-9 > .row > .col-lg-3 {
    padding-left: 14px;
    padding-right: 14px;
}
.filter-main > .row > .col-xl-9 > .row {
    margin-left: -14px;
    margin-right: -14px;
}
.filter-main .each-filter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-left: 2px solid #121212;
    border-radius: 8px;
    height: 100%;
    width: 20px;
}
.filter-main .each-filter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-right: 2px solid #121212;
    border-radius: 8px;
    height: 100%;
    width: 20px;  
}
.filter-main .each-filter:hover::after,
.filter-main .each-filter:hover::before {
    border-color: #B10F23;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
	font-family: 'Riope-Regular';
	background-color: #0F0F0F;
}
.filter-content {
    display: none;
    background-color:#121212;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #fff;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    margin-top: -5px !important;
	cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
}
.filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-content.show-div {
    display: block;
}
.aanbod-filter-sec label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'Riope-Regular';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #fff;
    opacity: 0.65;
}
.aanbod-filter-sec .form-check-input{
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 3px;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #B10F23;
    border-color: #B10F23;
    background-image: url(../images/check-tick.svg);
    background-size: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
.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: 10px;
    background-color: rgba(177, 15, 35, 0.8);
    font-family: 'Riope-Regular';
    font-size: 1.4rem;
    border: 1px solid rgba(14, 14, 14, 0);
    flex-direction: row-reverse;
}
.cross-btn {
    width: 9px;
    margin-left: 0 !important;
    margin-right: 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
/* .auto-overview-tag:hover img {
    filter: invert(1);
} */
.auto-overview-tag:hover {
    background-color: #B10F23;
    border-color: #B10F23;
    color: #fff;
}
.hidden-filter .col-lg-3 {
	margin-bottom: 18px;
	/* width: 20%; */
    width: 22%;
}
.hidden-filter .col-lg-3 h5 {
    display: none;
	font-family: 'Riope-Regular';
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #121212;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 102px;
    background-color: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn {
    font-family: 'Riope-Regular';
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 10px;
    font-size: 2rem;
    background-color: #B10F23;
    border: 1px solid #B10F23;
    text-transform: capitalize;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mobile-show-filter .common-btn::after,
.mobile-show-filter .common-btn::before {
    display: none;
}
.mobile-show-filter .common-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #121212;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #14181E;
	border-radius: 100%;
	color: #F9F8F6;
    border: 1px solid #14181E;
	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;
    display: none;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #fff;
    border-bottom: 1px solid rgba(14, 14, 14, 0.3);
}
.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid #121212;
}
.mobile-filter-close span img {
    width: 9px;
    filter: brightness(0);
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
    background-color: #B10F23;
    border: 1px solid #B10F23;
    color: #fff;
	padding: 10px;
	border-radius: 0 10px 10px 0;
    text-transform: capitalize;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records h4{
	font-size: 1.6rem;
	color: #F9F8F6;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: transparent;
    border-color: #B10F23;
    color: #B10F23;
}
.auto-overview-filter-result .total_search_records.common-btn::after,
.auto-overview-filter-result .total_search_records.common-btn::before {
    display: none;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort h6 {
	margin-right: 10px;
    color: rgba(14, 14, 14, 0.7);
    font-family: 'Riope-Regular';
    text-transform: none;
    letter-spacing: normal;
    display: none;
}
.filter-sort .each-filter {
	margin-bottom: 0;
	width: 200px;
}
.model-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .form-check-input {
    display: none;
}
.sorteren_op-filter .select-style {
    color: #fff;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    background-color: #F7F7F7;
    border-radius: 90px;
    padding: 17px 43px 17px 23px;
    border: 0;
    position: relative;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: none;
    height: auto;
}
.sorteren_op-filter .select-style strong {
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.sorteren_op-filter .select-style.show {
    border-radius: 8px 8px 0 0;
}
.sorteren_op-filter .select-style.show::before {
    border-radius: 8px 8px 0 0;
    width: calc(100% - 6px);
}
.sorteren_op-filter .select-style.show::after {
    right: 23px;
    filter: brightness(0) invert(1);
}
.sorteren_op-filter .select-style::after {
    content: "";
    width: 6px;
    height: 10px;
    position: absolute;
    right: 9px;
    top: 43%;
    transform: translateY(-50%);
    background-image: url(../images/btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transform: rotate(90deg);
}
.sorteren_op-filter .select-style::before {
    content: "";
    width: calc(100% - 25px);
    height: calc(100% - 6px);
    position: absolute;
    left: 3px;
    top: 3px;
    background-color: #B10F23;
    border-radius: 100px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.sorteren_op-filter .select-style:hover {
    color: #fff;
}
.sorteren_op-filter .select-style:hover::before {
    width: calc(100% - 6px);
}
.sorteren_op-filter .select-style:hover::after {
    right: 23px;
    filter: brightness(0) invert(1);
}
.sorteren_op-filter .each-filter::after,
.sorteren_op-filter .each-filter::before {
    display: none;
}
.show_selected_filter_cls {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}
/****aanbod-range-filter****/
.aanbod-range-filter label {
    font-size: 1.6rem;
    color: #121212;
}
.aanbod-range-filter .ui-slider .ui-slider-handle {
    width: 25px;
    height: 25px;
    background-color: #B10F23;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}
.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: rgba(177, 15, 35, 0.5);
    border-color: rgba(177, 15, 35, 0.5);
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}
.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #B10F23;
}
.aanbod-range-filter .ui-widget.ui-widget-content {
    border: 0;
}
.aanbod-range-filter .slider-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aanbod-range-filter .slider-inputs span {
    color: #121212;
}
.aanbod-range-filter .slider-inputs input {
    border-radius: 10px;
    border: 1px solid rgba(14, 14, 14, 0.25);
    padding: 8px;
    background-color: transparent;
    width: 100px;
    color: #121212;
    font-size: 1.6rem;
    line-height: normal;
}
.mob-filter-visible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    margin: 0 auto;
    max-width: max-content;
    width: 100%;
}
.filter-sort {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}
.mob-filter-visible h6 {
    color: #121212;
}
.mob-filter-visible strong {
    font-weight: normal;
    color: #B10F23;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
    padding-bottom: 90px;
}
.aanbod-product-sec .each-product-img {
    border-radius: 10px;
}
.aanbod-product-sec .col-xl-4 {
    padding-left: 6.5px;
    padding-right: 6.5px;
}
.aanbod-product-sec .row {
    margin-left: -6.5px;
    margin-right: -6.5px;
    row-gap: 50px;
}
.aanbod-product-sec .each-product:hover .product-arrow {
    opacity: 1;
}
.aanbod-product-sec .each-product {
    transform: none;
}
.aanbod-product-sec .each-product-text li {
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    line-height: normal;
    letter-spacing: normal;
}
.aanbod-product-sec .each-product-text ul {
    row-gap: 8px;
}
/* ============================================== verkocht ============================================== */
/****verkocht-top****/
.verkocht-top {
    padding-top: 185px;
    padding-bottom: 60px;
    position: relative;
}
.verkocht-top .container {
    position: relative;
    z-index: 1;
}
.verkocht-top h2,
.verkocht-top h4 {
    color: #B10F23;
}
/****verkocht-product-sec****/
.verkocht-product-sec .each-product-img img {
    display: block; 
}
.verkocht-product-sec .container {
    position: relative;
    z-index: 1;
}
/****privacy****/
.privacy_section {
    padding: 170px 0 70px;
}
.privacy_section p {
    margin-bottom: 10px;
}
/*******loader*****/
#loader_section{
  display:none;
  width:100%;
  position: fixed;
  top: 0;
  background: #000000b8;
  z-index: 9999999;
  height: 100vh;
  padding: 30vh 0px;
}
#loader_section p{
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
#loader_section img{
  width: 100px;
  margin-bottom: 25px;
}

/*********Morgen Footer************/
.morgeninternet-footer {
    background: #000000;
    width: 100%;
    height: 50px;
    display: block;
    text-align: center;
    transition: 0.3s all;
}

.morgeninternet-footer:hover {
    background: #202020;
    transition: 0.3s all;
}

.morgeninternet-footer > img {
    height: 35px;
    padding-top: 15px;
}


/****aanbod dtl****/
.kenteken_np{
    background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
    background-repeat: no-repeat;
    background-position: left;
    padding: 4px 10px 6px 20px;
    color: #000;
    background-size: contain;
}
.star_icon{
    margin-bottom: 30px;
}
.star_icon h4{
    padding-bottom: 10px;
    /* text-transform: uppercase; */
    padding-top: 15px;
    margin-bottom: 15px;
   /* color: #1c1c1c;*/
    border-bottom: 1px solid #181716;
    padding-bottom: 10px;
}
.star_icon p img{
    width: 15px;
    margin-top: -3px;
    margin-right: 5px;
}
.star_icon p{
    padding-bottom: 6px;
    word-break: break-word;
    font-family: 'Riope-Regular';
}
.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(#B10F23 calc(1*100%/6),#000 0 calc(3*100%/6),#B10F23 0),
              linear-gradient(#B10F23 calc(2*100%/6),#000 0 calc(4*100%/6),#B10F23 0),
              linear-gradient(#B10F23 calc(3*100%/6),#000 0 calc(5*100%/6),#B10F23 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: #000;
  }


.carpass-img {
    width: 115px;
}










.widget-btn-area {
  bottom: 2rem;
  left:3rem;
  z-index: 99;
  font-family: "Nunito Sans", sans-serif;
}
.widget-btn {
  border-radius: 10px;
  background: #FF7100;
  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;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.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-weight: 500;
  font-size: 2.4rem;
}
.widget-content h5 {
  font-weight: 400;
  font-size: 1.7rem;
  margin: 1.5rem 0 5.4rem;
}
.widget-content h5 span {
  text-decoration: underline;
  color: #FF7100;
}
.widget-content button, .widget-mobile button {
  border-radius: 5px;
  color: #fff;
  border: 2px solid #FF7100;
  background: #FF7100;
  padding: 1.2rem 2rem;
  font-size: 1.7rem;
  font-weight: 600;
  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: #FF7100 !important;
}
.monthly_amount{
  cursor:pointer;
}


@media(max-width: 767.98px){
    .morgeninternet-footer.viewcar-footer {
        margin-bottom: 68px !important;
        height: 50px;
    }
    .widget-mobile {
        background: #1c1c1c;
        padding: 1.5rem 1.2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 99;
        font-family: "Nunito Sans", sans-serif;
    }
    .widget-mobile .d-flex {
        gap: 5px;
    }
    .widget-mobile button {
        padding: .65rem;
        font-size: 1.45rem;
    }

    .widget-mobile h6 span {
        font-size: 1.45rem;
        cursor: pointer;
        font-weight: 600;
        padding-right: 2.5rem;
        color: #fff;
        margin-right: .75rem;
    }
    .widget-mobile h6 span:after {
        background: url(../images/arw-color.svg) no-repeat center/ contain;
        right: 0;
    }
    .widget-mobile h6 span:not(.active):after {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    .widget-mobile h6 span.active {
        color: #FF7100;
    }
    .widget-mobile h6 span.active:after {
        transform: translateY(-50%) rotate(-90deg);
    }
    .widget-mobile-content {
        bottom: 6.5rem;
        background: #121212;
        padding: 3rem 1.5rem 1.5rem;
        z-index: 99;
        display: none;
    }

    .widget-mobile-content.show-div {
        display: block;
    }
    .widget-content-wrap {
        background: #1c1c1c;
        border: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem;
    }
    .widget-mobile-content td {
        color: #fff;
        vertical-align: top;
        font-size: 1.45rem;
        font-weight: 400;
        padding: 4px 0;
    }
    .widget-mobile-content td a {
        color: #fff;
        text-decoration: none;
    }
    .widget-mobile-content td a:hover {
        color: #FF7100;
    }
    .whatsapp-block {
        background: #25D366;
        border-radius: 5px;
        width:3.7rem;
        height: 3.7rem;
    }
    .whatsapp-block img {
        width: 1.8rem;
    }
    .widget-mobile-content td span {
        width: 2.2rem;
        height: 2.2rem;
        border: 1px solid rgba(255,255,255,0.1);
        margin-right: 1.8rem;
    }
}
.aanbod-dtl-info-block{
    position: relative;
    z-index: 1;
}

.calsty {
    width: 100%;
    height: 745px;
    padding: 0px;
    background: #F6F6F6;
    border: none;
}
.each-service-content .row{
    align-items: center;
}
/* --------- new css ------ */
.lfCQiA {
    margin-bottom: 32px;
    display: none;
}
.footer-social-logo{
    display: flex;
    column-gap: 18px;
    align-items: center;
    justify-content: end;
}
.service-sec .sec-pattern.sec-pattern-mob{
    display: none;
}
.dtl-slider .common-arrow img{
    filter: brightness(0) invert(1);
}
.diensten-dtl-top-info h4{
    font-size: 2.4rem;
    padding-bottom: 11px;
}
.diensten-list-sec .each-werkplasts-list .each-werkplasts-list-img{
    height: 333px !important;
}




.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
    padding-bottom: 65px;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 114px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 114px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
    white-space: nowrap;
    /* padding-left: 53px; */
    position: relative;
    padding-left: 0;
    margin: 0 auto;
    display: flex;
}
.usp-marquee-wrap li img{
    width: 60%;
}
.usp-marquee-wrap li::after {
	/* content: "";
	height: 29px;
	width: 29px;
	position: absolute;
	left: 0;
	top: 5px;
	background-color: transparent;
	background-size: 29px;
    background-image: url(../images/marquee-icon.svg);
    background-repeat: no-repeat; */
    display: none;
}
.over-ons-team-slider .common-arrow img{
    filter: brightness(0) invert(1);
}
.Beschrijving-block-info p br{
    display: none;
}
.product-slider .common-arrow img{
    filter: brightness(0) invert(1);
}
.share-social-media-button .a2a_dd svg {
    margin-right: 0 !important;
}
.dtl-tab-sec::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    pointer-events: none;
}
.diensten-dtl-mid-img{
    height: 100%;
}
.diensten-dtl-mid-img img{
    height: 100%;
    object-fit: cover;
}


.related-service-sec .each-product-text p {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.related-service-slider .each-product-text li {
    color: #121212;
}
.related-service-slider .each-product-price li:first-child {
    color: #fff;
}
.related-service-slider .each-product-text .col-lg-8 {
    width: 55%;
}
.related-service-slider .each-product-text .col-lg-4 {
    width: 45%;
}
.related-service-slider .each-product-text li {
    padding-left: 12px;
    padding-right: 12px;
}
.aanbod-product-sec .each-product-text p {
    opacity: 1;
}
.aanbod-product-sec .each-product-text li {
    background-color: #F4EEE6;
}
.aanbod-product-sec .each-product-price li:first-child {
    background-color: #B10F23;
}
.aanbod-product-sec .each-product-text .col-lg-8 {
    width: 57%;
}
.aanbod-product-sec .each-product-text .col-lg-4 {
    width: 43%;
}
