@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	color: #fff;
    font-family: 'LamaSans-Regular';
	font-size: 1.6rem;
	line-height: 24px;
	background-color: #F8F8F8;
    /*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;
}
main {
	margin-top: 75px;
}
/****header-area****/
.header-area {
	background-color: #111;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	overflow: hidden;
	border-bottom: 1px solid transparent;
}
.header-active {
	border-color: rgba(255, 255, 255, 0.10);
}
.header-logo img {
	width: 132px;
}
.header-menu ul {
	display: flex;
	margin: 0;
	justify-content: end;
}
.header-menu li {
	color: rgba(255, 255, 255, 0.5);
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	line-height: normal;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 0;
}
.header-menu li::after {
	display: none;
}
.header-menu li a {
	color: rgba(255, 255, 255, 0.5);
	padding: 29px 68px;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	display: block;
}
.header-menu li a:hover {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
}
.header-menu li:last-child {
	border-right: 0;
}
.header-contact strong {
	padding-left: 25px;
	font-weight: normal;
	position: relative;
}
.header-contact strong::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/header-contact.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 15px;
	opacity: 0.5;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-contact:hover strong::after {
	opacity: 1;
}
.header-right {
	display: flex;
	justify-content: end;
	padding-right: 8px;
}
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	background: #E97333;
	box-shadow: 0px 10px 30px 0px rgba(26, 36, 31, 0.10);
	width: 75px;
}
.menu-bar {
    position: relative;
    max-width: 25px;
    width: 100%;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 25px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.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(-8px) rotate(-135deg);
}
.menu-btn.active {
    position: relative;
    z-index: 2;
}
/*****mega-menu*****/
.mega-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    background-color: #111;
    height: 100vh;
    padding: 140px 50px 50px;
    clip-path: inset(0 0 0 100%);
	z-index: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.mega-menu-active {
    clip-path: inset(0 0 0 0);
}
.menu-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.60);
    opacity: 0;
    pointer-events: none;
	backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-overlay-active {
    opacity: 1;
    pointer-events: all;
}
.mega-menu-nav ul {
    padding: 0;
    margin: 0;
}
.mega-menu-nav li {
    padding: 0;
    margin: 0;
	color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    font-family: 'LamaSans-Medium';
    line-height: 24px; 
    text-transform: uppercase;
    margin-bottom: 40px;
}
.mega-menu-nav li::after {
	display: none;
}
.mega-menu-nav li:last-child {
    margin-bottom: 0;
}
.mega-menu-nav li a {
    position: relative;
    display: block;
	color: rgba(255, 255, 255, 0.5);
}
.mega-menu-nav li a:hover {
	color: rgba(255, 255, 255, 1);
}
.mega-menu-nav li.active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.mega-menu-nav {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}
.mega-menu-nav::-webkit-scrollbar {
    width: 10px;
	background-color: #535353;
}
.mega-menu-nav::-webkit-scrollbar-thumb {
    background-color: #666666;
}
/*****banner-sec******/
.banner-sec {
    position: relative;
	background-color: #111;
}
.home-banner-sec h1 {
	text-transform: uppercase;
}
.banner-wrap {
	max-width: calc(100% - 75px);
}
.banner-video,.each-banner  {
	height: 819px;
}
.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;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	left: 0;
	z-index: 1;
}
.banner-content .common-btn {
	margin-top: 10px;
}
.banner-content p {
	max-width: 820px;
	margin-bottom: 40px;
}
.banner-content h1 {
	margin-bottom: 5px;
	padding-right: 0;
}
.side-bar {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 100%;
	z-index: 1;
}
.banner-social {
	width: 100%;
}
.banner-social ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 0;
}
.banner-social li {
	padding: 0;
	margin: 0;
}
.banner-social li::after {
	display: none;
}
.banner-social li a {
	border: 1px solid #fff;
    height: 31px;
    max-width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    margin: 0 auto;
}
.banner-social li a:hover {
	opacity: 1;
}
.banner-wp {
	margin-top: 109px;
}
.banner-wp a {
	height: 193px;
	width: 100%;
	background-color: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
}
/******filter-area*******/
.aanbod-filter-sec {
	padding: 75px 0 50px;
	position: relative;
	background-color: #1C1C1C;
}
.aanbod-filter-sec .container {
	position: relative;
	z-index: 2;
}
.aanbod-filter-sec::after {
	content: "";
	width: 60%;
	height: 426px;
	background-color: #E97333;
	position: absolute;
	left: 0;
	top: 0;
}
.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
}
.filter-reset {
	margin-right: 26px;
}
.filter-reset a {
	font-size: 1.4rem;
}
.filter-reset img {
	width: 9px;
	margin-left: 5px;
	margin-bottom: 2px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.filter-reset a:hover {
	color: #E97333;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.select-style {
	width: 100%;
    height: 48px;
    color: #F1F1F1;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
	background-color: transparent;
    border: 1px solid rgba(241, 241, 241, 0.40);
    border-radius: 0;
    padding: 0 30px 0 18px;
    background: url(../images/filter-arrow-white.svg)  no-repeat 91% center/10px;
    appearance: none;
    line-height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; 
    cursor: default;
}
.select-style.show {
    border-radius: 0;
}
.filter-main {
    margin-bottom: 20px;
}
.filter-main option{
    font-family: 'LamaSans-Medium';
	background-color: #111;
}
.filter-content {
    display: none;
    background-color:#111;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 0;
    border-radius: 0;
    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: 'LamaSans-Medium';
    font-size: 1.4rem;
	cursor: pointer;
}
.aanbod-filter-sec label:last-child {
	margin-bottom: 0;
}
.aanbod-filter-sec label span {
    float: right;
    color: #F9F8F6;
    opacity: 0.65;
}
.aanbod-filter-sec .form-check-input {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #F9F8F6;
    background-color: transparent;
    border-radius: 0;
}
.aanbod-filter-sec .form-check-input:checked {
    background-color: #E97333;
    border-color: #E97333;
}
.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:#111;
    font-family: 'LamaSans-Medium';
    font-size: 1.4rem;
    border: 1px solid #111;
}
.cross-btn {
    width: 9px;
}
.auto-overview-tag:hover {
	background-color: #fff;
	color: #111;
}
.auto-overview-tag:hover img {
	filter: brightness(0);
}
.filter-main .col-lg-3 {
	margin-bottom: 18px;
	width: 25%;
}
.total_search_records {
	margin-top: 30px;
}
.mobile-show-filter {
    position: fixed;
    left: 0;
    top: 58px;
    background-color: #111;
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-show-filter .common-btn {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-color: #E97333;
    border-color: #E97333;
}
.mobile-show-filter .common-btn:hover {
    background-color: transparent;
    border-color: #fff;
}
.filter-count {
	min-width: 20px;
	height: 20px;
	background-color: #14181E;
	border-radius: 100%;
	color: #fff;
    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;
}
.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: #111;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-filter-close span {
    max-width: 32px;
	width: 100%;
    height: 32px;
    background-color: #E97333;
    border-radius: 50%;
	margin-left: auto;
	border: 1px solid #E97333;
}
.mobile-filter-close span img {
	width: 9px;
	/* filter: invert(1);
	-webkit-filter: invert(1); */
}
.auto-overview-filter-result .total_search_records {
	margin-top: 0;
	background-color: #E97333;
	border-color: #E97333;
  	color: #fff;
	padding: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.auto-overview-filter-result .total_search_records:hover {
	background-color: transparent;
	border-color: #E97333;
	color: #E97333;
}
.cursor-pointer {
	cursor: pointer;
}
.filter-sort {
	display: flex;
	align-items: center;
	justify-content: end;
}
.filter-sort .aanbod-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: #111;
	border-color: rgba(37, 45, 72, 0.40);
	background-image: url(../images/filter-arrow-dark.svg);
} */
/****home-filter-sec*****/
.aanbod-filter-sec.home-filter-sec {
    background-color: #fff;
	position: relative;
	z-index: 2;
	padding: 0;
}
.aanbod-filter-sec.home-filter-sec::after {
	display: none;
}
.aanbod-filter-sec.home-filter-sec .filter-search {
	/* height: 100%; */
	height: 79px;
	line-height: 79px;
	width: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E97333;
	padding: 0;
	border: 0;
	margin-left: -1px;
    position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-filter-sec.home-filter-sec .filter-search:hover {
	background-color: #111;
}
.aanbod-filter-sec.home-filter-sec .filter-search:hover img {
	filter: brightness(10);
}
.aanbod-filter-sec.home-filter-sec .filter-main {
	max-width: 860px;
	width: 100%;
	height: 78px;
	margin-bottom: 0;
	margin-top: -40px;
	background-color: #fff;
	box-shadow: 0px 10px 30px 0px rgba(26, 36, 31, 0.10);
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-3 {
	width: 78px;
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-9 {
	width: calc(100% - 78px);
	padding: 30px 0;
}
.aanbod-filter-sec.home-filter-sec .filter-main .select-style {
	height: auto;
	line-height: normal;
	border-bottom-width: 0;
	border-top-width: 0;
	border-left-width: 0;
	color: #111;
    border-color: rgba(26, 36, 31, 0.40);
    background-image: url(../images/filter-arrow-dark.svg);
}
.aanbod-filter-sec.home-filter-sec .filter-main .col-lg-3 {
	margin-bottom: 0;
	width: 25%;
}
.aanbod-filter-sec.home-filter-sec .filter-content {
	margin-top: -2px !important;
	background-color: #fff;
	border: 0;
	box-shadow: 0px 25px 30px 0px rgba(26, 36, 31, 0.10);
}
.aanbod-filter-sec.home-filter-sec label {
	color: #111;
}
.aanbod-filter-sec.home-filter-sec .form-check-input {
	border-color: #111;
}
.aanbod-filter-sec.home-filter-sec .form-check-input:checked {
	border-color: #E97333;
}
.aanbod-filter-sec.home-filter-sec label span {
	color: #666666;
}
.aanbod-filter-sec.home-filter-sec .aanbod-filter-wrap {
	position: absolute;
	width: 100%;
	left: 0;
}
/****product-sec****/
.product-sec {
	background-color: #fff;
	padding: 126px 0 0;
	position: relative;
	overflow: hidden;
}
.product-sec::after {
	content: "";
	height: 0;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	position: absolute;
}
.product-sec .container {
	position: relative;
	z-index: 1;
}
.product-heading {
	margin-bottom: 70px;
}
.product-slider {
	width:100vw;
	margin-left:-50vw;
	left:50%;
	position:relative;
}
.product-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.product-bg img {
	height: 100%;
	object-fit: cover;
}
.each-product-text {
	background-color: #111;
	padding: 20px 35px;
	max-width: calc(100% - 40px);
	width: 100%;
	margin: -30px auto 0;
	position: relative;
	z-index: 1;
	opacity: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-product-text::after {
	position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 1px);
    background-size: 130px 130px, 66px 66px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}
.product-model h2 {
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-model h4 {
	color: rgba(255, 255, 255, 0.70);
	line-height: normal;
	font-family: 'LamaSans-Regular';
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
}
.product-model {
	margin-bottom: 60px;
	padding-right: 55px;
}
.product-info table {
	width: 100%;
}
.product-info tbody {
	width: 100%;
}
.product-info tr {
	width: 100%;
	display: flex;
	row-gap: 30px;
	column-gap: 10px;
	flex-wrap: wrap;
}
.product-info td {
	color: #F1F1F1;
	font-family: 'LamaSans-Regular';
	font-size: 1.8rem;
	line-height: normal;
	width: 48%;
	display: block;
}
.product-info td img {
	height: 15px;
	width: 15px;
	margin-top: -5px;
}
.product-info td strong {
	margin-right: 10px;
}
.product-price h3 {
	line-height: normal;
	letter-spacing: normal;
	font-family: 'LamaSans-Regular';
	color: #E97333;
	margin-bottom: 7px;
}
.product-price h4 {
	line-height: normal;
	color: rgba(241, 241, 241, 0.70);
	font-family: 'LamaSans-Regular';
}
.product-arrow {
	height: 32px;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #E97333;
	border-radius: 100%;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	position: absolute;
	right: 35px;
	top: 30px;
}
.each-product:hover .product-arrow {
	background-color: #E97333;
}
/* .each-product:hover .product-arrow img {
	filter: brightness(0);
} */
.product-slider .each-product-img {
	position: relative;
}
.product-slider .each-product-img::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.20);
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-slider .swiper-slide-active .each-product-text {
	opacity: 1;
}
.product-slider .swiper-slide-active .product-arrow {
	background-color: #E97333;
	border-color: #E97333;
}
.product-slider .swiper-slide-active .each-product-img::after {
	opacity: 0;
}
.product-slider .common-arrow {
	top: auto;
	bottom: 22%;
}
.product-slider .swiper-button-prev {
	left: 8.5%;
}
.product-slider .swiper-button-next {
	right: 8.5%;
}
/*****service-sec******/
.service-sec {
	position: relative;
	margin-top: -60px;
	padding: 250px 0 74px;
	overflow: hidden;
	background-color: #fff;
}
.service-sec::after {
	content: "";
    height: 59%;
    width: 76.5%;
    position: absolute;
    left: 0;
    top: 170px;
    background-image: url(../images/service-patern.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #F7F8F9;
}
.service-sec::before {
	content: "";
	height: 72%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #E97333;
}
.service-heading {
	margin-bottom: 120px;
}
.service-heading h2 {
	color: #111;
}
.service-heading p {
	color: #111;
	max-width: 440px;
	width: 100%;
	font-family: 'LamaSans-Medium';
}
.service-sec .container {
	position: relative;
	z-index: 1;
}
.service-sec .common-btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}
.service-sec .white-border-btn {
	margin-left: 20px;
}
.service-control {
	position: relative;
	max-width: 105px;
	width: 100%;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service-control .common-arrow {
	height: 44px;
	width: 44px;
	border-color: #fff;
	background-color: transparent;
	position: initial;
	margin: 0;
}
.service-control .common-arrow img {
	filter: brightness(0) invert(1);
}
.service-control .common-arrow:hover {
	background-color: #fff;
}
.service-control .common-arrow:hover img {
	filter: brightness(0) saturate(100%) invert(77%) sepia(65%) saturate(5092%) hue-rotate(337deg) brightness(93%) contrast(95%);
}

.each-service {
	position: relative;
	height: 558px;
	overflow: hidden;
}
.each-service::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(18, 18, 18, 0.50);
}
.each-service-img {
    height: 585px;
}
.each-service-img img {
	height: 100%;
	object-fit: cover;
}
.each-service-text {
	position: absolute;
	bottom: -35px;
	left: 0;
	padding: 36px 46px;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	max-height: 220px;
}
.each-service-text h5 {
	margin-bottom: 11px;
}
.each-service-text h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 320px;
	width: 100%;
}
.each-service .common-arrow {
	height: 44px;
	width: 44px;
	border-color: #E97333;
	background-color: #E97333;
}
.each-service .common-arrow img {
	filter: brightness(0) invert(1);
}
.each-service-text-btm {
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-service:hover .each-service-text {
	bottom: 0;
	max-height: 800px;
}
.each-service:hover .each-service-text-btm {
	opacity: 1;
}
.service-slider {
	margin-bottom: 70px;
}
/******usp-marquee-sec*******/
.usp-marquee-sec {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 70px 0;
	border-bottom: 1px solid rgba(247, 240, 236, 0.20);
	background-color: #111;
}
.usp-marquee-wrap {
	display: flex;
	width: max-content;
	gap: 150px;
}
.usp-marquee-wrap ul {
	display: flex;
	gap: 150px; 
	padding: 0;
	margin: 0;
	list-style: none;
}
.usp-marquee-wrap li {
	white-space: nowrap;
	line-height: 17px;
	color: #fff;
	font-size: 1.6rem;
    font-family: 'LamaSans-Medium';
	padding-left: 25px;
	position: relative;
}
.usp-marquee-wrap li::after {
	top: 1px;
}
/******about-sec******/
.about-sec {
	position: relative;
	background-color: #111;
}
.about-text {
	max-width: 634px;
	width: 100%;
	padding: 60px 60px 60px 0;
}
.acc-block {
	margin: 44px 0 60px;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
	border-radius: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	padding: 20px 0;
	margin-bottom: 0;
}
.acc-block li::after {
	display: none;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block li h6 {
	position: relative;
	cursor: default;
	padding-right: 28px;
	color: #fff;
	font-family: 'Alexandria-Medium';
	letter-spacing: 0.16px;
	opacity: 0.3;
}
.acc-block li h6::after {
	position: absolute;
	height: 16px;
	width: 16px;
	background-image: url(../images/plus.svg);
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
	top: 5px;
	right: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.acc-block li.show_accordian h6 {
	opacity: 1;
}
.acc-block li.show_accordian h6::after {
	background-image: url(../images/minus.svg);
}
.acc-block p {
	margin-top: 11px;
	margin-bottom: 0;
	max-width: 490px;
	width: 100%;
	letter-spacing: 0.16px;
}
.about-text h2 {
	margin-bottom: 23px;
	color: #fff;
}
.about-img {
	position: absolute;
	top: 0;
	right: 0;
	width: 50.7%;
	height: 100%;
}
.about-img img {
	height: 100%;
	object-fit: cover;
}
.counter {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.each-counter {
	position: relative;
	background-color: #E97333;
	padding: 29px 15px;
	width: 33.33%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.each-counter:nth-child(2) {
	background-color: #F08C55;
}
.each-counter:nth-child(3) {
	background-color: #FAA373;
}
.each-counter h3 {
    font-family: 'Alexandria-Bold';
	color: #fff;
	font-size: 4rem;
	line-height: 44px;
	margin-bottom: 7px;
}
.each-counter h3 strong {
	font-weight: normal;
}
.each-counter h6 {
	line-height: 17px;
    letter-spacing: normal;
	color: #fff;
}
/*****review-sec****/
.review-sec {
	background-color: #F7F8F9;
	padding: 100px 0;
}
/****gallery-sec*****/
.gallery-sec {
	position: relative;
	background-color: #111;
	padding-top: 20px;
}
.home-gallery-sec::after {
	content: "";
    height: 46%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
	background-color: #F7F8F9;
}
.each-gal {
	overflow: hidden;
	position: relative;
}
.each-gal > img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gal a {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(233, 115, 51, 0.50);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: end;
	gap: 10px;
	color: #fff;
	font-family: 'lama_sanssemibold';
	font-size: 1.6rem;
	line-height: 24px;
	opacity: 0;
	padding: 14px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gal a img {
	width: 24px;
}
.each-gal:hover a {
	opacity: 1;
}
/******footer-area ******/
.footer-area {
	background-color: #111;
	padding: 90px 0 56px;
	overflow: hidden;
	position: relative;
}
.footer-area::after {
	content: "";
    height: 90px;
    width: 1px;
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-area .container {
	position: relative;
}
.footer-area .container::after,
.footer-area .container::before {
	content: "";
    height: 100vh;
    width: 1px;
    position: absolute;
    left: 19%;
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-area .container::before {
	left: auto;
	right: 19%;
}
.footer-logo img {
	width: 132px;
}
.footer-info {
	display: flex;
	justify-content: space-between;
}
.each-footer-info h6 {
    font-family: 'Alexandria-SemiBold';
	letter-spacing: normal;
	margin-bottom: 13px;
}
.each-footer-info p {
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 6px;
	letter-spacing: normal;
}
.each-footer-info p a {
	color: rgba(255, 255, 255, 0.75);
}
.each-footer-info p a:hover {
	color: #fff;
}
.each-footer-info td {
	color: rgba(255, 255, 255, 0.75);
}
.each-footer-info td:nth-child(odd) {
	padding-right: 10px;
}
.footer-other {
	max-width: 212px;
	width: 100%;
	margin-left: auto;
}
.footer-rating {
	margin-bottom: 14px;
	display: none;
}
.footer-rating iframe {
	width: 212px;
	height: 64px;
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: end;
}
.footer-social h6 {
	color: rgba(255, 255, 255, 0.50);
    font-family: 'LamaSans-Medium';
	font-size: 1.4rem;
	margin-right: 15px;
	letter-spacing: normal;
	line-height: normal;
}
.footer-social ul {
	display: flex;
	gap: 12px;
	margin-bottom: 0;
}
.footer-social li {
	padding: 0;
	margin: 0;
}
.footer-social li::after {
	display: none;
}
.footer-social li a {
	width: 31px;
	height: 31px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
}
.footer-social li a:hover {
	background-color: #E97333;
	border-color: #E97333;
}
/* .footer-social li a:hover img {
	filter: brightness(0);
} */
.footer-top {
	position: relative;
	padding: 52px 0 25px;
	margin-bottom: 30px;
}
.footer-top::after,
.footer-top::before {
	content: "";
    height: 1px;
	width:100vw;
	margin-left:-50vw;
	left:50%;
    position: absolute;
    top: 0;
	background-color: rgba(255, 255, 255, 0.10);
}
.footer-top::before {
	top: auto;
	bottom: 0;
}
.footer-copyright p {
	color: rgba(255, 255, 255, 0.50);
	margin-bottom: 0;
}
.footer-policy ul {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}
.footer-policy li {
	padding-right: 5px;
	padding-left: 0;
	margin-right: 5px;
	position: relative;
}
.footer-policy li:last-child {
	padding-right: 0;
	margin-right: 0;
}
.footer-policy li:last-child::after {
	display: none;
}
.footer-policy li::after {
	content: "";
    height: 64%;
	width: 1px;
	right:0;
	left: auto;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.50);
	background-image: none;
}
.footer-policy li a {
	color: rgba(255, 255, 255, 0.50);
}
.footer-policy li a:hover {
	color: #fff;
}
/*========================================aanbod pg start================================================*/
/****aanbod-product-sec****/
.aanbod-product-sec {
	padding-bottom: 88px;
	background-color: #1C1C1C;
}
.aanbod-product-sec .container {
	position: relative;
    z-index: 1;
}
.aanbod-product-sec > .container > .row > .col-xxl-4 {
	padding: 0 4px;
}
.aanbod-product-sec > .container > .row {
	row-gap: 8px;
	margin: 0 -4px;
}
.aanbod-product-sec .each-product-text {
	opacity: 1;
	max-width: 100%;
	margin-top: 0;
	padding: 14px 20px;
}
.aanbod-product-sec .each-product-text::after {
    background-size: 86px 86px, 66px 66px;
}
.aanbod-product-sec .product-model {
	margin-bottom: 27px;
	position: relative;
}
.aanbod-product-sec .product-model h3 {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	height: 1lh;
}
.aanbod-product-sec .product-model h6 {
	color: rgba(255, 255, 255, 0.7);
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	height: 1lh;
}
.aanbod-product-sec .product-price h6 {
	color: rgba(255, 255, 255, 0.70);
}
.aanbod-product-sec .product-info tr {
	row-gap: 16px;
}
.aanbod-product-sec .product-info td img {
	margin-top: -4px;
}
.aanbod-product-sec .product-info td {
    font-size: 1.3rem;
    line-height: 20px;
	display: inline-flex;
}
.aanbod-product-sec .product-info td strong {
    margin-right: 5px;
}
.aanbod-filter-active {
	z-index: 99;
}
/*========================================service-list pg start================================================*/
/******service-list-heading*****/
.service-list-heading {
	position: relative;
	padding-top: 78px;
	background-color: #1C1C1C;
}
.service-list-heading::after {
	content: "";
	height: 881px;
	width: 52%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/diensten-list-heading-patern.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #E97333;
	/* z-index: -1; */
}
.service-list-heading h2 {
	color: #F1F1F1;
}
.service-list-heading p {
	max-width: 454px;
	width: 100%;
	margin-left: auto;
}
.service-list-heading .container {
	position: relative;
	z-index: 1;
}
/******service-list-sec*****/
.service-list-sec {
	padding: 90px 0 100px;
	background-color: #1C1C1C;
}
.service-list-sec .container {
	position: relative;
}
.service-list-text {
	background-color: #111;
	padding: 50px;
	height: calc(100% - 24px);
	margin-top: 12px;
	margin-left: -41px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-img {
    margin-right: -46px;
	height: 410px;
}
.service-list-img img {
	height: 100%;
	object-fit: cover;
}
.service-list-text h3 {
	margin-bottom: 18px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-text p {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.service-list-text-btn {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
