@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'lama_sansregular';
    font-size: 1.6rem;
    color: #fff;
	background-color: #fff;
}
html {
    font-size: 62.5%;
}
#mobile-contact-bar {
    display: none;
}
.add_morgan_footer_margin{
	height: 100px !important;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
/**********************************menu-part*********************************/
/****menu****/
/* .hide-desktop-menu .menu-items ul li {
    transform: translateX(-100%);
        opacity: 0;
    animation: fadeIn 1s forwards;
        animation-delay: 5s;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.memu_right > div{
    transform: translateX(-100%);
    opacity: 0;
    animation: memu_right 1s forwards;
    animation-delay: 5s;
}
@keyframes memu_right {
    to {
       opacity: 1;
       transform: translateX(0);
    }
} */
/*.menu-div::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    height: 100%;
    width: 100%;
    clip-path: polygon(55% 0%, 100% 0, 100% 100%, 36% 100%);
    z-index: 0;
}
.show-menu-div.menu-div::after {
    transform: translateX(0);
        animation: fadeInt 1s reverse;
        opacity: 1;
}*/
@keyframes fadeInt {
    to {
                opacity: 0;
                transform: translateX(100%);
    }
}
.menu-btn{
	height: 30px;
	width: 40px;
	cursor: pointer;
	position: relative;
}
.menu-btn span{
	width: 10px;
	margin-right: 2rem;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
	background: #fff;
	content: '';
	position: absolute;
	height: 3px;         
	margin-top: 13px; 
	-webkit-transition: .3s ease-in-out .3s;
	-moz-transition: .3s ease-in-out .3s;
	-o-transition: .3s ease-in-out .3s;
	transition: .3s ease-in-out .3s;
	right: 0;
}
.menu-btn span::before {
	width: 5px;
	margin-top:-6px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	margin-left: auto;
	right: 0;
}
.menu-btn span::after {
	width: 14px;
	margin-top:7px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.menu-btn.active span {
	background: transparent;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	transform:rotate(-90deg);
}
.menu-btn.active span::before {
	margin-top:0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
	background-color: #151313;
}
.menu-btn.active span::after {
	margin-top:0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: .6s;
	-moz-transition-delay: .6s;
	-o-transition-delay: .6s;
	transition-delay: .5s;
	background-color: #151313;
}
.tt .menu-btn span::before,
.tt .menu-btn span,
.menu-icon:hover .menu-btn span::before,
.menu-icon:hover .menu-btn span{
	width: 14px;
}
.desktop_menu{
	position: relative;
	z-index: 5;
}
.menu-div{
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 1;
}
.show-menu-div{
	transform: translateX(0);
}
.menu-bg img{
	height: 100vh;
	object-fit: cover;
}
.menu-content{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 32rem;
	overflow-y: auto;
	overflow-x: hidden;
}
.hide-desktop-menu  .menu_right li,
.hide-desktop-menu .logo{
	visibility: hidden;
}
.menu-logo{
	margin-left: 20%;
}
.menu-logo img{
	width: 33rem;
}
.menu-items{
	padding-left: 20%;
}
.menu-items h3{
	color: #151313;
	margin-bottom: 5rem;
	margin-top: 5rem;
}
.menu-items ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 1%;
	row-gap: 3vh;
}
.menu-items li{
	width: 49%;
}
.menu-items li a {
	font-family: 'lama_sansextrabold';
	color: #151313;
	font-size: 1.8rem;
	font-style: italic;
	text-transform: uppercase;
	width: max-content;
	position: relative;
}
/* .menu-items li a:hover{
	text-decoration: underline;
} */
/* .menu-items li a::after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
    content: "";
    border-bottom: 2px solid #151313;
    transition: transform 250ms ease-in-out;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    margin-top: .4rem;
}
.menu-items li a:hover::after {
    transform: scaleX(.2);
    transform-origin: 0px 50%;
} */
.menu-content-top {
	height: 100%;
}
.memu_right{
	height: 100%;
	display: flex; 
	flex-direction: column;
	justify-content: space-between; 
	padding:4.7rem 0 10rem;
}
.menu-contect ul{
	display: flex;
	justify-content: space-between;
	margin-top: 4rem;
}
.menu-contect h6{
	font-family: 'lama_sansextrabold';
    color: #151313;
	font-size: 1.6rem;
	margin-bottom: 3.2rem;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	font-style: italic;
}
.menu-contect p,
.menu-contect a{
	color: #7F7575;
	font-style: italic;
}
.menu-contect a:hover{
	text-decoration: underline;
}


/****header****/
.header-area{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
	padding: 3.7rem 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 99;
}
.logo img{
	width: 34.4rem;
}
.menu_right ul{
	display: flex;
	column-gap: 4.2rem;
}
.menu_right ul a {
	font-family: 'lama_sansextrabold';
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	font-style: italic;
}
.menu_right ul a:hover {
	color: #fff;
}
.menu_right li a::after {
    display: block;
    content: "";
    border-bottom: 2px solid #1D70B8;
    transition: transform 250ms ease-in-out;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    margin-top: .4rem;
}
.menu_right a:hover::after {
    transform: scaleX(1);
    transform-origin: 0px 50%;
}
/* .sticky-hidden{
	position: fixed !important;
	left: 0;
	top:0 ;
	background: #151313;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 999;
} */
.sticky-hidden {
	position: fixed !important;
	left: 0;
	top: 0;
	background: #151313;
	  background-color: rgb(21, 19, 19);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 1005;
  }
.menu-icon {
	position: relative;
	width: 9rem;
}
.menu-icon p{
	font-family: 'lama_sansextrabold';
	font-size: 1.8rem;
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.5s;
	text-transform: uppercase;
	font-style: italic;
}
.menu-btn.active.menu-btn span{
	right: auto;
	left: 0;
}
.menu_right{
	display: flex;
    justify-content: end;
	align-items: center;
    max-width: 74rem;
    margin-left: auto;
    margin-right: 0;
    column-gap: 15%;
}
.close{
	opacity: 0;
}
.tt .close{
	opacity: 1;
	color: #151313;
}
.tt .open{
	opacity: 0;
}
.menu-items a {
	display: inline-block;
	position: relative;
	color: #151313;
  }
  .menu-items a:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #151313;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  .menu-items a:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }
/**********************************index*********************************/
/****banner****/
.banner-sec {
	position: relative;
}
.banner-line {
	position: absolute;
    height: 100%;
    width: calc(32% - 95px);
    left: 95px;
    top: 0;
    pointer-events: none;
    z-index: 4;
}
.banner-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
    width: 100%;
	z-index: 9;
}
.banner-content h1 {
	margin-bottom: 7rem;
}
.banner-video {
    height: 100vh !important;
}
.banner-video .video-js{
	height: 100% !important;
	width: 100% !important;
}
.banner-video .video-js .vjs-tech{
	object-fit: cover;
}
/****product-sec****/
.product-sec {
	padding: 16rem 0;
	position: relative;
}
.product-bg-img {
	position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    max-width: 64%;
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
}
.product-bg-img::before,
.product-bg-img::after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    height: 100%;
    width: 100%;
}
.product-bg-img::before {
	background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
	bottom: 0;
}
.product-bg-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-slider-wrap {
	padding-right: 25rem;
}
.product-slider-wrap .swiper-wrapper {
	transition: all 1.5s !important;
}
.slider-img {
    position: relative;
}
.slider-img ul {
    display: flex;
    justify-content: left;
    padding-left: 2rem;
    position: absolute;
    bottom: -2rem;
    left: 0;
}
.slider-img li:first-child {
	color: #fff;
    background-color: #1D70B8;
	margin-right: 1rem;
}
.slider-img li {
    background-color: #6B6C6B;
    color: #fff;  
	padding: 7px 25px;
    font-size: 1.4rem;
	font-family: 'lama_sansbold';
	clip-path: polygon(13% 1%, 100% 0%, 87% 100%, 0% 100%);
	-webkit-clip-path: polygon(13% 1%, 100% 0%, 87% 100%, 0% 100%);
}
.slider-price-sec {
    background-color: #151313;
    padding: 3.5rem 2rem 1.5rem;
}
.slider-price-sec p {
    color: #6B6C6B;
    font-size: 1.4rem;
    font-family: 'lama_sansmedium';
}
.slider-price-sec h6 {
    color: #fff;
    font-family: 'lama_sansbold';
    font-size: 1.6rem;
    margin-top: 0.5rem;
    line-height: 20px;
	height: 38px;
    overflow: hidden;
	margin-bottom: 2.5rem;
}
.slider-price-sec table {
	width: 100%;
}
.slider-price-sec tr {
	display: flex;
	justify-content: space-between;
}
.slider-price-sec td {
    font-size: 1.2rem;
    color: #6B6C6B;
    vertical-align: top;
    font-family: 'lama_sansmedium';
	/*padding-right: 1rem;*/
}
.slider-price-sec td img {
	margin-right: .4rem;
    margin-bottom: 4px;
    max-height: 12px;
}
.product-side-arrow {
    height: 4.6rem;
    width: 4.6rem;
    background-color: #262626;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.product-side-arrow img {
    width: 1.1rem;
	width: 14px;
	filter: brightness(1) invert(1);
}
.product-top-content {
	display: flex;
    align-items: center;
    justify-content: end;
}
.product-top-info {
	padding-right: 3rem;
}
.product-top-info p {
	color: #060A09;
	max-width: 47rem;
	width: 100%;
}
.product-slider .swiper-button-prev {
	left: auto;
    right: 1rem;
    top: 15rem;
}
.product-slider .slider-btn{
	position: absolute;
    top: 0;
    right: 0;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    row-gap: 5rem;
	z-index: 0;
}
.slider-btn .common-arrow{
	position: initial;
}
.product-top {
	margin-bottom: 7rem;
	position: relative;
    z-index: 1;
}
.each-slider:hover .product-side-arrow {
	background-color: #fff;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-slider:hover .product-side-arrow img {
	filter: brightness(1);
}
/****home-mid-sec****/
.home-mid-sec {
	padding: 12rem 0 9.5rem;
	overflow: hidden;
	position: relative;
}
.home-mid-sec::after {
	clip-path: polygon(64% 0, 100% 0, 100% 100%);
	-webkit-clip-path: polygon(64% 0, 100% 0, 100% 100%);
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	background-color: #151313;
	height: 100%;
	width: 100%;
}
.home-mid-sec h2 {
	color: #151313;
	margin-bottom: 11.5rem;
}
.each-home-mid {
	position: relative;
	margin-bottom: 4rem;
	padding: 4rem 0;
}
.each-home-mid::after {
	content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    left: -95%;
    top: 0;
    background-color: #1D70B8;
    clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
    opacity: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-home-mid:hover::after {
	opacity: 1;
}
.each-home-mid-right h3,
.each-home-mid-right p {
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-home-mid:hover .each-home-mid-right h3,
.each-home-mid:hover .each-home-mid-right p {
	color: #fff;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-home-mid-left,
.each-home-mid-right {
	position: relative;
	z-index: 1;
}
.each-home-mid-right h3,
.each-home-mid-right p {
	color: #151313;
}
.each-home-mid-right p {
	max-width: 54rem;
    width: 100%;
}
.each-home-mid-left h2 {
	font-size: 6.4rem;
	color: rgba(0, 0, 0, 0.07);
	font-style: normal;
	margin-bottom: 0 !important;
}
.each-home-mid {
	display: flex;
	align-items: center;
}
.each-home-mid-right {
	margin-left: 4rem;
}
.each-home-mid-right h3 {
	margin-bottom: 2.5rem;
}
.home-mid-bg-img {
	position: absolute;
    top: 40%;
    left: 66%;
    transform: translate(-50%, -50%);
    width: 573px;
	height: 622px;
	z-index: -1;
}
.home-mid-btn .parallelogram {
	margin-right: 3rem;
	margin-left: auto;
}
/****about-sec****/
.about-sec {
	background-color: #151313;
	padding: 11rem 0 12rem;
}
.about-top-img {
	padding-left: 9rem;
}
.about-top-info p {
    max-width: 83rem;
    width: 100%;
	margin: 6rem 0 5.5rem;
}
.about-top-img {
	height: 286px;
}
.about-top-img img {
	height: 100%;
	object-fit: cover;
}
.about-btm {
	margin-top: 9rem;
}
.each-counter {
    display: flex;
    align-items: center;
}
.each-counter-right h6 {
	color: #676262;
	font-size: 1.6rem;
}
.about-btm-info {
	padding-left: 8rem;
}
.each-counter {
	margin-bottom: 4.8rem;
	border-bottom: 1px solid #4B4848;
	padding-bottom: 4.8rem;
}
.each-counter:last-child {
	border-bottom: 0;
}
.each-counter-left {
    width: 30%;
}
.each-counter-right h5 {
	margin-bottom: 0.4rem;
}
/****footer-area****/
.footer-area {
	overflow: hidden;
}
.footer-top {
	padding: 8rem 0 6rem;
	background-color: #000000;
}
.footer-logo {
	margin-bottom: 6.5rem;
}
.footer-logo img {
	width: 36.3rem;
}
.bovag-logo img {
	width: 12.2rem;
} 
.each-footer h5 {
    margin-bottom: 2rem;
}
.footer-btm {
	background-color: #151313;
	padding: 3rem 0;
}
.footer-credit a {
	color: #7F7575;
}
.footer-credit a:hover {
	color: #fff;
}
.footer-social ul {
	display: flex;
	align-items: center;
	justify-content: end;
}
.footer-social li {
	margin-right: 2rem;
}
.footer-social li:last-child {
	margin-right: 0;
}
.each-footer li a,
.each-footer a,.each-footer p {
	color: #7F7575;
	font-style: italic;
}
.each-footer li {
	margin-bottom: 3rem;
}
.each-footer li:last-child {
	margin-bottom: 0;
}
/* .each-footer-right {
	max-width: 60rem;
	margin-right: 0;
	margin-left: auto;
} */
.each-footer.each-footer-left a:hover {
	color: #fff;
}
.each-footer-left a {
	display: inline-block;
	position: relative;
}
.each-footer-left a:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
  .each-footer-left a:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.each-footer a:hover {
	color: #1D70B8;
}
.each-footer-right .row {
    justify-content: end;
    column-gap: 4rem;
	flex-wrap: nowrap;
}
.each-footer-right .col-lg-2, .each-footer-right .col-lg-5 {
    flex-basis: content;
}
.each-footer {
	border-right: 1px solid #4B4848;
	padding: 4rem 5rem;
	height: 100%;
}
.footer-top .row .col-lg-5:last-child .each-footer {
	border-right: 0;
	padding-right: 0;
}
.footer-top .row .col-lg-2:first-child .each-footer {
	padding-left: 0;
}
.footer-social li a img {
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}
/**********************************services*********************************/
/****inner-banner****/
.inner-banner .each-banner {
	height: 50rem;
}
.inner-banner .each-banner img {
	height: 100%;
	object-fit: cover;
}
.inner-banner .banner-content h1 {
	margin-bottom: 0;
}
/****list-sec****/
.list-sec {
	padding: 10rem 0 0;
	position: relative;
	overflow: hidden;
}
.list-info h2,
.list-info p {
	color: #151313;
}
.list-img {
	padding-left: 12rem;
}
.list-info p {
	max-width: 55rem;
    width: 100%;
    margin: 3rem 0 6rem;
	display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-sec .row {
	padding-bottom: 10rem;
}
.list-sec .row .list-info {
    padding-left: 12rem;
}
.list-bg-img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75%;
    width: 100%;
    clip-path: polygon(0 0, 100% 46%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 46%, 100% 100%, 0 100%);
}
.list-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list-bg-img::before, .list-bg-img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(204deg, #083760 11.59%, rgba(17, 114, 198, 0.75) 73.48%);
    height: 100%;
    width: 100%;
}
.list-bg-img::before {
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    bottom: 0;
}
.list-block a {
	position: relative;
	z-index: 1;
}
.list-info .white-btn:hover {
    background-color: transparent;
    border-color: #151313;
    color: #151313;
}
.list-btm-block .list-info h2,
.list-btm-block .list-info p {
	color: #fff;
}
.list-btm-block {
	position: relative;
}
.list-btm-block::after {
	content: '';
    position: absolute;
    right: -10%;
    bottom: 50%;
    background: #151313;
    height: 74rem;
    width: 78rem;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}
.list-btm-block .parallelogram::before {
    border: 1px solid #fff;
    transition: transform 0.3s;
}
.list-btm-block .parallelogram .btn-content {
    color: #fff;
}
/**********************************over-ons*********************************/
/****over-ons-top****/
.over-ons-top {
	padding: 14.5rem 0 12rem;
	position: relative;
}
.over-ons-top::after {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0%;
    background: #151313;
    height: 38rem;
    width: 35.2rem;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.over-ons-top-info h2 {
	color: #151313;
}
.over-ons-top-info p {
	max-width: 73rem;
	margin-right: 0;
	margin-left: auto;
	padding-left: 10rem;
}
.over-ons-top-info {
	margin-bottom: 6rem;
}
.over-ons-top-img {
	height: 525px;
    background-position-y: 70%;
}
.over-ons-top-img img {
	height: 100%;
	object-fit: cover;
}
.over-ons-top-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 100%;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
}
.over-ons-top-bg-img::before, .over-ons-top-bg-img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    height: 100%;
    width: 100%;
}
.over-ons-top-bg-img::before {
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    bottom: 0;
}
.over-ons-top-info,
.over-ons-top-img {
	position: relative;
	z-index: 1;
}
/****over-ons-counter****/
.over-ons-counter {
	padding: 9rem 0;
}
.over-ons-counter .about-btm {
	margin-top: 0;
}
.over-ons-counter .each-counter-left h2 {
	color: #151313;
}
.over-ons-counter .each-counter-right h5 {
	color: #151313;
}
/****overons-man-slider****/
.overons-man-slider{
	background-color: #151313;
	padding: 11rem 0;
}
.over-ons-man-slider-wrap {
	padding-left: 20rem;
    position: relative;
}
.overons-man-slider h2 {
	margin-bottom: 9.8rem;
}
.each-man-slider-img {
	position: relative;
}
.slider-man-name {
    background-color: #fff;
    padding: 3rem 4rem;
}
.slider-man-name h5 {
	color: #151313;
	margin-bottom: 0.5rem;
}
.slider-man-name h6 {
	font-size: 1.6rem;
	color: #676262;
}
.each-man-slider {
	height: 100%;
	object-fit: cover;
}
.each-man-slider-img {
	/* height: 100%; */
	height: 379px;
}
.each-man-slider-img img {
	height: 100%;
	object-fit: cover;
}
.overons-man-slider .swiper-slide {
	height: auto;
}
.each-man-slider-img::after{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	content: "";
	background: linear-gradient(180deg, rgba(241, 239, 232, 0.00) 42.86%, rgba(241, 239, 232, 0.40) 88.51%);
	transition: all 0.5s;
}
.each-man-slider:hover .each-man-slider-img::after{
	height: 100%;
}
.each-man-slider:hover .each-man-slider-content{
	opacity: 1;
	visibility:visible ;
}
.overons-man-slider .common-arrow {
    top: 27rem;
    border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.2);
}
.overons-man-slider .common-arrow:hover {
	border-color: #1D70B8;
	background-color: #1D70B8;
}
.overons-man-slider .common-arrow img {
    filter: brightness(1) invert(1);
}
.dtl-slider-btn .common-arrow{
	position: initial;
}
.dtl-slider-btn{
	display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    row-gap: 5rem;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
}
/****over-ons-slider****/
.over-ons-slider {
	background-color: #151313;
	overflow: hidden;
}
.over-ons-slider h2 {
    margin: 6rem 0;
}
.each-over-ons-slider {
	height: 27.3rem;
}
.each-over-ons-slider img {
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	cursor: pointer;
}
.over-ons-slider-wrap {
	margin-left: -27rem;
    margin-right: -7rem;
}
.each-over-ons-slider {
	overflow: hidden;
}
.each-over-ons-slider:hover img {
	transform: scale(1.1);
}
/**********************************Financiering / lease*********************************/
/****dtl-header-area****/
.dtl-header-area {
	position: relative;
	background-color: #151313;
}
/****financiering-back-btn-area****/
.financiering-back-btn {
	position: absolute;
	top: 8rem;
	margin-left: 1rem;
}
/****financiering-bg****/
.financiering-top-area{
	padding-top: 8rem;
}
.financiering-bg-img{
	height: 100%;
	position: absolute;
	z-index: -1;
	clip-path: polygon(84% 0, 100% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(84% 0, 100% 0, 100% 100%, 0% 100%);
	pointer-events: none;
}
.financiering-bg-img::before, .financiering-bg-img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    height: 100%;
    width: 100%;
	pointer-events: none;
}
.financiering-bg-img::before {
    background: linear-gradient(180deg, #083760 14.8%, rgba(17, 114, 198, 0.75) 93.84%);
    bottom: 0;
}
.financiering-bg-img img{
	height: 100%;
	object-fit: cover;
}
.financiering-top-content {
	padding-top: 11.3rem;
	padding-right: 2rem;
}
.financiering-top-content h2{
	color: #151313;
	margin-bottom: 2.4rem;
}
.financiering-top-content p{
	color: #060A09;
}
.financiering-top-img{
	padding-left: 10rem;
}
.financiering-accordian-sec{
	padding: 16.4rem 0 10.6rem;
	position: relative;
}
.financiering-accordian-sec::after{
	content: '';
    position: absolute;
    left: 0;
    bottom:  -1px;
    background-color: #151313;
    height: 352px;
    width: 352px;
	pointer-events: none;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.financiering-accordian-img{
	height: 485px;
	position: relative;
	z-index: 1;
}
.financiering-accordian-img img{
	height: 100%;
	object-fit: cover;
}
.financiering-accordian-area{
	padding: 4.9rem 0 0 12.5rem;
}
.financiering-accordian-area .accordion-item,
.financiering-accordian-area .accordion-button{
	background-color: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
}
.financiering-accordian-area button:focus{
    outline: 0;
	border: none;
	box-shadow: none;
}
.financiering-accordian-area .accordion-item{
	padding: 3.6rem 0;
	border-bottom: 1px solid #B7B7B7;
}
.financiering-accordian-area .accordion-body{
	padding: 2rem 0 0;
}
.financiering-accordian-area .accordion-body p {
	max-width: 70rem;
	width: 100%;
}
.financiering-accordian-area .accordion-button::after {
	background-image: url(../images/right-arrow.svg);
    width: 2rem;
    height: 2rem;
    background-size: 0.8rem;
    transform: rotate(0deg);
    background-repeat: no-repeat;
    background-position: center;
}
.financiering-accordian-area .accordion-button:not(.collapsed)::after {
	transform: rotate(90deg);
}
.financiering-accordian-area h5{
	font-style: normal;
    padding-right: 3rem;
}
/****form-sec****/
.form-sec{
	padding: 15.7rem 0 6.5rem;
	position: relative;
}
.form-sec::after{
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: #151313;
	opacity: .9;
}
.form-sec .common-wrap{
	position: relative;
	z-index: 1;
}
.form-heading{
	margin-bottom: 5.1rem;
}
.form-heading p{
	max-width: 51.2rem;
	width: 100%;
	margin: 1rem auto 0;
}
.form-area{
	max-width: 122.8rem;
	width: 100%;
	margin: 0px auto;
}
.form-area label{
	font-size: 1.6rem;
	line-height: 22px;
	color: #fff;
	font-family: 'lama_sansmedium_expanded';
	font-style: italic;
	margin-bottom: 1.5rem;
	margin-left: 2rem;
}
.form-textarea label{
	margin-left: -2rem;
}
.form-styl{
	color: #AFB1AF;
	font-size: 1.4rem;
	line-height: 2rem;
	font-family: 'lama_sansmedium_expanded';
	font-style: italic;
	padding: 2rem 4.2rem;
	border-radius: 0;
	border: none;
	background-color: transparent;
	transform: skewX(18deg);
	width: calc(100% + 4rem);
  	margin-left: -2rem;
}
.form-area .form-group{
	margin-bottom: 3rem;
}
.form-styl:focus{
	border: 1px solid #FFFFFF;
	background-color: rgba(255, 255, 255, 0.10);
	color: #fff;
	transform: skewX(18deg);
	border: none;
	box-shadow: none;
	width: 110%;
	/* left: -10px; */
	position: relative;
}
.form-styl:placeholder {
	background-color: rgba(255, 255, 255, 0.10);
	width: 110%;
	/* left: -10px; */
	position: relative;
	color: #AFB1AF;
	opacity: 1;
}
.form-styl:-ms-input-placeholder{
	color: #fff;
	transform: skewX(18deg);
	width: 110%;
	/* left: -10px; */
	position: relative;
	color: #AFB1AF;
	opacity: 1;
}
.form-styl::placeholder {
	width: 110%;
	/* left: -10px; */
	position: relative;
	color: #AFB1AF;
	opacity: 1;
}
.form-styl:focus::placeholder {
	color: #fff;
	opacity: 1;
}
.form-area .common-btn{
	background-color: #FFFFFF;
	color: #000000;
	display: table;
	margin: 0 auto;
	border: none;
}
.form-area textarea{
	height: 173px;
    resize: none;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    margin-left: -3rem;
    width: calc(100% + 6rem);
	padding-left: 8rem;
	padding-right: 7rem;
}
.form-area .form-group > div{
	transform: skewX(-25deg);
	border: 1px solid #FFFFFF;
	/* background-color: rgba(255, 255, 255, 0.10); */
	overflow: hidden;
}
.form-area .row{
	margin: 0px --1.2rem;
}
.form-area .col-lg-12,
.form-area .col-lg-4{
	padding: 0px 1.2rem;
}
.text-area{
	margin-left: -6.8rem;
    width: 100%;
}
/****financiering-slider-sec****/
.financiering-slider-sec{
	background-color: #151313;
	padding: 11.3rem 0 11.7rem;
}
.financiering-slider-sec .dtl-slider-btn {
    left: 5px;
}
.financiering-slider-area{
	margin-top: 7rem;
}
.financiering-slider-nav{
	height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 3.6rem;
    justify-content: center;
}
.financiering-slider-nav .common-arrow{
	position: initial;
	background-color: #fff;
}
.financiering-slider-nav .common-arrow:hover {
    background-color: #1D70B8;
    border-color: #1D70B8;
}
.financiering-slider-nav .common-arrow:hover img {
    filter: brightness(1) invert(1);
}
.financiering-slider-img{
	height: 271px;
	position: relative;
	overflow: hidden;
}
.financiering-slider-img img{
	height: 100%;
	object-fit: cover;
}
.financiering-slider-img::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(21, 19, 19, 0.34);
	top: 0;
	left: 0;
}
.financiering-text{
	position: absolute;
	width: 100%;
	left: 2.4rem;
	bottom: 3.3rem;
	z-index: 1;
}
.financiering-slider-area .common-arrow {
    top: 27rem;
    border: 2px solid #fff;
	background-color: #fff;
}
.financiering-slider-area .common-arrow:hover {
	border-color: #1D70B8;
	background-color: #1D70B8;
}
/* .financiering-slider-area .common-arrow img {
    filter: brightness(1) invert(1);
} */
.financiering-slider-img {
	overflow: hidden;
}
.financiering-slider-img img {
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.financiering-slider-img:hover img {
	transform: scale(1.1);
}
/**********************************contact*********************************/
.map-area{
	height: 500px;
}
.map-area img{
	height: 100%;
	object-fit: cover;
}
.contact-info{
	background-color: #151313;
	margin-top: -6.8rem;
}
.each-contact-info{
	padding: 4.2rem 2rem 1.7rem;
	background-color: #0D4E86;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	transform: skewX(-25deg);
}
.contact-info-inner{
	transform: skewX(25deg);
}
.contact-info-inner a:hover {
	color: #fff;
	text-decoration: underline;
}
.each-contact-info h5{
	margin-bottom: 1.2rem;
}
.each-contact-info p{
	font-family: 'lama_sansmedium_expanded';
	font-size: 1.6rem;
	line-height: 2.4rem;
}
/**********************************Customizing*********************************/
/****Customizing-top-area****/
.Customizing-top-area .parallelogram {
	margin-top: 3rem;
}
/**********************************sold*********************************/
/****sold-top****/
.sold-top {
	padding: 13rem 0 18rem;
}
.sold-top h2 {
	font-size: 4.8rem;
	color: #0A1520;
}
.sold-top p {
	color: #0A1520;
	margin-right: 0;
	margin-left: auto;
	max-width: 67rem;
}
/****sold-product****/
.sold-product {
	padding-bottom: 9rem;
	overflow: hidden;
}
.sold-product .each-slider {
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}
.sold-product .col-xl-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.sold-product .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}
.sold-product::after {
	content: '';
    position: absolute;
    right: -10%;
    bottom: 61%;
    background: #151313;
    height: 68.4rem;
    width: 47rem;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
}
.sold-product .list-bg-img {
	height: 90%;
    clip-path: polygon(0 0, 100% 32%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 32%, 100% 100%, 0 100%);
}
/**********************************offer-detail*********************************/
/****back-btn****/
.back-btn{
	z-index: 100;
    position: relative;
    top: 0;
}
.back-btn .btn-content{
	color: #fff;
}
.back-btn .parallelogram::before{
	border-color: #fff;
}
.back-btn .parallelogram:hover::before {
	border-color: #151313;
}
/****aanbod-dtl-top****/
.aanbod-dtl-top{
	position: relative;
	padding:4rem 0 7.2rem ;
}
.aanbod-dtl-top .common-wrap {
	position: relative;
	z-index: 99;
}
.aanbod-dtl-slider-btn .common-arrow{
	position: initial;
}
.aanbod-dtl-menu {
	z-index: 1099 !important;
}
.aanbod-dtl-slider-btn{
	position: absolute;
    right: 10%;
    top: 50%;
    z-index: 3;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    row-gap: 4rem;
    transform: translateY(-50%);
}
.aanbod-dtl-top .common-arrow img{
	filter: brightness(0) invert(1);
}
.aanbod-dtl-top .common-arrow:hover{
	background-color: #1D70B8;
    border-color: #1D70B8;
}
.aanbod-dtl-top .common-arrow,
.aanbod-dtl-top .common-arrow.swiper-button-disabled{
	border-color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	opacity: 1;
}
.aanbod-dtl-top .swiper-slide-next .aanbod-dtl-top-img{
	position: relative;
}
.aanbod-dtl-top .swiper-slide-next .aanbod-dtl-top-img::after{
	position: absolute;
	right: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: rgba(21, 19, 19, 0.6);
}
.aanbod-dtl-top-heading{
	padding-bottom: 5rem;
}
.aanbod-dtl-top-heading h2{
	color: #060A09;
	font-family: 'lama_sansmedium';
	padding-left: 0;
    padding-right: 10rem;
}
.aanbod-dtl-top-heading h2 strong{
	font-weight: normal;
	font-family: 'lama_sansextrabold';
}
.aanbod-dtl-top .product-bg-img{
	z-index: 99;
    top: -2rem;
    height: calc(100% + 2rem);
}
.aanbod-dtl-price-lft table{
	width: 100%;
	max-width:85%;
}
.aanbod-dtl-top-price{
	padding-top: 7.5rem;
}
.aanbod-dtl-price-right {
	width: fit-content;
	margin-left: auto;
	margin-right: 0;
	height: 100%;
}
.aanbod-dtl-price-right h3{
	color: #000;
	font-style: italic;
}
.aanbod-dtl-price-right h5{
	color: #6B6C6B;
	font-style: italic;
}
.aanbod-dtl-price-lft td p{
	font-style: italic;
	font-family: 'lama_sansmedium_expanded';
	margin-bottom: 1rem;
}
.aanbod-dtl-price-lft h6{
	font-family: 'lama_sansextrabold';
	font-size: 1.8rem;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}
.aanbod-dtl-price-lft ul{
	display: flex;
	column-gap: 2rem;
	margin-top: 5.3rem;
}
.aanbod-dtl-price-lft .parallelogram::before {
    border: 1px solid #fff;
}
.aanbod-dtl-price-lft .parallelogram .btn-content {
    position: relative;
    z-index: 1;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    clip-path: none;
    background-color: transparent;
    color: #fff;
    border: 0;
}
.aanbod-dtl-price-right-btm a{
	color: #060A09;
	font-family: 'lama_sansmedium_expanded';
	font-style: italic;
}
.aanbod-dtl-price-right-btm a img{
	width: 2.7rem;
	margin-left: 1.2rem;
}
.aanbod-dtl-price-content{
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
}
/****dtl-tab-sec****/
.dtl-tab-sec{
	padding: 9rem 0 11rem;
    background-color: #f4f4f4;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link span {
	position: relative;
	padding-right: 0;
}
.dtl-tab-sec .home-mid-bg-img{
	z-index: 0;
	position: absolute;
	top: 35%;
	left: 62%;
    transform: translate(0) rotate(-7deg);
    width: 45rem;
    height: 100%;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link {
	border: 0;
    background-color: transparent;
	text-transform: none;
    color: #040507;
    letter-spacing: normal;
	width: 100%;
	margin-bottom: 7rem;
	text-align: left;
	position: relative;
	border-radius: 0;
	padding-left: 0;
}
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 6.8rem;
	margin-bottom: 4rem;
	border-bottom:1px solid #6B6C6B;
	justify-content: space-between;
	column-gap: 1rem;
	position: relative;
	z-index: 3;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link:hover,
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link.active{
	color: #151515;
	border-bottom: 1px solid #151515;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item .nav-link {
	color: #6B6C6B;
	font-family: 'lama_sansextrabold';
	font-size: 1.6rem;
	font-style: italic;
    margin: 0;
    word-break: break-word;
	text-transform: uppercase;
	padding-right: 0;
	border: 1px solid transparent;
}
.dtl-tab-sec .tab-btn .nav-tabs .nav-item:last-child{
	margin-right: 0;
}
/****dtl-tab-content****/
.tab-content{
	position: relative;
	z-index: 3;
}
#aanbod-home .row{
	row-gap: 3.3rem;
}
.each-Kenmerken {
	border: 0;
}
.each-Kenmerken h6 {
	color: #151515;
    font-family: 'lama_sansregular';
    font-size: 1.6rem;
    letter-spacing: 1.6px;
}
.bullet-panel h4 {
    border-bottom: 1px solid #040507;
    padding-bottom: 1rem;
    color: #151515;
	font-size: 2.5rem;
	font-family: 'lama_sansextrabold';
}
.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 2rem;
}
.bullet-panel {
    margin-bottom: 2rem;
}
.dtl-tab-sec .bullet-panel ul li {
    padding-left: 1.3rem;
    position: relative;
	font-family: 'lama_sansmedium';
    color: #151515;
	font-size: 1.6rem;
	line-height: 26px;
}
.dtl-tab-sec .bullet-panel li:after {
    background-size: 0.7rem;
    position: absolute;
    top: 0.7rem;
    left: 0;
    content: '';
    width: 0.7rem;
    height: 0.7rem;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
}
.dtl-tab-sec .tab-content p:not(.each-Kenmerken p) {
    color: #151515;
	font-family: 'lama_sansmedium';
}
.each-Kenmerken p {
	color: #151515;
	margin-top: 1rem;
	font-family: 'lama_sansextrabold';
	font-style: italic;
}
.left-bg-block {
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.block-dtls {
    width: calc(100% - 14rem);
    border: 1px solid #151515;
    border-left: 0;
    padding: 2rem 1.5rem 0.5rem;
    min-height: 20rem;
}
.left-bg-block h6 {
    line-height: 3rem;
	color: #fff;
	font-size: 1.6rem;
}
.each-onderhoud-block h4 {
	color: #151515;
    font-size: 2.2rem;
	text-transform: none;
	font-family: 'lama_sansextrabold';
}
.each-onderhoud-block h5 {
    color: #151515;
    margin: 1rem 0 3rem;
    font-size: 1.8rem;
	text-transform: none;
	font-family: 'lama_sansmedium';
}
.each-onderhoud-block {
    display: flex;
    margin-bottom: 2rem;
}
/****aanbod-dtl-product-slider****/
.aanbod-dtl-product-slider{
	background-color: #151515;
	padding-top: 8.5rem;
}
.aanbod-dtl-product-slider .product-slider-wrap {
	padding-left: 25rem;
}
.aanbod-dtl-product-slider .slider-btn{
	right: auto;
	left: 0;
}
.aanbod-dtl-product-slider .slider-btn .common-arrow{
	background-color: #fff;
}
.aanbod-dtl-product-slider .slider-btn .common-arrow:hover{
	background-color: #1D70B8;
}
.aanbod-dtl-product-slider .each-slider:hover .product-side-arrow{
	background-color: #fff;
}
.aanbod-dtl-product-slider .product-side-arrow  img ,
.aanbod-dtl-product-slider .product-side-arrow {
	transition: all 0.5s;
}
.aanbod-dtl-product-slider .each-slider:hover .product-side-arrow img{
	filter: invert(1) brightness(0);
}
/**********************************bedankt*********************************/
/****bedankt-banner-sec****/
.bedankt-banner-sec .common-btn {
    background-color: #FFFFFF;
    color: #000000;
    display: table;
    margin: 0 auto;
    border: none;
}
.bedankt-banner-sec .each-banner {
	height: 868px;
}
.bedankt-banner-sec .each-banner img {
	height: 100%;
	object-fit: cover;
}
/**********************************aanbod-list*********************************/
/****aanbod-filter-sec****/
.aanbod-filter-sec {
	padding-top: 8.7rem;
	padding-bottom: 7rem;
	background-color: #1D70B8;
}
.filter-heading h2{
	color: #060A09;
}
.filter-heading p{
	max-width: 70rem;
	margin-left: auto;
	margin-right: 0;
	color: #060A09;
}
.small-car {
	height: 100%;
}	
.small-car img{
	height: 100%;
	object-fit: cover;
}
/****aanbod-list-sec****/
.aanbod-list-sec {
	position: relative;
	z-index: 1;
}
.aanbod-list-sec .slider-price-sec{
	height: 100%;
	padding: 3rem;
}
.aanbod-list-sec .slider-price-sec h3{
	height: 75px;
  	overflow: hidden;
}
.aanbod-list-sec .slider-price-sec ul{
	display: flex;
	column-gap: 3.4rem;
	margin-top: 1.8rem;
}
.aanbod-list-sec .slider-price-sec li p{
	color: #fff;
	font-size: 1.6rem;
	line-height: normal;
	font-family: 'lama_sansregular';
}
.aanbod-list-sec .slider-price-sec h6{
	font-size: 1.8rem;
	font-family: 'lama_sansextrabold';
	height: auto;
	line-height: normal;
	font-style: italic;
}
.aanbod-list-sec .parallelogram:hover::before {
	transform: skewX(-25deg);
	color: #fff;
    background: #1D70B8;
	border-color: #1D70B8;
	transition: all 0.5s;
}
.aanbod-list-sec .parallelogram:hover .btn-content {
    color: #fff;
    background: transparent;
	/* transition: all 0.5s; */
}
.aanbod-list-sec .col-xl-2{
	width: 22%;
}
.aanbod-list-sec .col-xl-10 {
	width: 78%;
}
.aanbod-list-sec .col-lg-7 img{
	height: 100%;
	object-fit: cover;
}
.slider-price-sec .parallelogram::before{
	border-color: #fff;
}
.slider-price-sec .parallelogram .btn-content{
	color: #fff;
	margin-top: 2rem;
}
.filter-heading{
	margin-bottom: 10rem;
}
.each-filter.dropdown{
	z-index: 999;
	position: initial !important;
}
/****filter-sec*****/
.filter-sec{
    background-color: #FFF;
    padding: 7.5rem 0 2rem 0;
    position: relative;
  	z-index: 2;
}
.filter-wrap{
    margin: 0 -5px;
}
.filter-sec .col-xl-2{
    width: 25%;
    padding: 0 5px 10px;
}
.filter-sec .col-md-6{
    padding: 0 5px;
}
.filter-sec .select-style {
    width: 100%;
    height: 100%;
    line-height: 50px;
    color: #151313;
    font-size: 16px;
    border: 0;
    background: url(../images/down-arrow.svg) #FFF no-repeat 99% center/15px;
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
	font-family: 'lama_sansextrabold';
}
.wis-part img{
    width: 12px;
    margin-right: 10px;
    margin-bottom: 2px;
}
.wis-part{
    font-family: 'poppinsmedium';
    color: #ffff; 
    opacity: 0.7;
    letter-spacing:1.5px;
}
.filter-grid img{
    width: 30px;
}
.filter-grid{
    text-align: right;
    line-height: 0;
    cursor: pointer;
    opacity: 0.5;
}
.grid-part{
    width: 100%;
    max-width: 85px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wis-part h6{
    font-family: 'poppinsmedium';
}
.filter-grid.active{
    opacity: 1;
}
.filter-sec .parallelogram:hover .btn-content{
	background-color: transparent;
}
.filter-sec .btn-content{
	padding:1px 1.5rem;
}
.sorteren_op-filter .parallelogram{
	/* / width:60% !important; / */
}
.filter-right {
	display: flex;
	align-items: center;
}
.sorteren_op-filter span{
	width: 54%;
	font-family: 'lama_sansmedium_expanded';
	color: #060A09;
}
.filter-lft{
	padding-right: 5%;
}
.filter-sec .parallelogram:hover::before{
	transform: skewX(-25deg);
}
/****aanbod-filter****/
.filter-content{
    display: none;
    background: #FFF;
    padding: 10px;
    z-index: 2;
    border: 1px solid #979797;
    border-top: 0;
    border-radius: 0;
    margin-top: -3px !important;
}
.filter-content.show-div {
    display: block;
}
.filter-sec label{
    color: #151313;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    z-index: 2;
    font-size: 14px;
}
.filter-sec label span{
    float: right;
    color: #fff;
    opacity: .65;
}
.filter-sec .form-check-input{
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #979797;
    /* / background-color: rgba(26, 26, 26, 0.85); / */
    border-radius: 0;
}
.filter-sec .form-check-input:checked {
    background-color: #151313;
    border-color: #151313;
}
.filter-sec .select-style{
    cursor: default;
}
.select-style.show{
    border-bottom-color: transparent;
}
.filter-sec .parallelogram {
	width: 100%;
}
.cross-btn{
    width:11px;
	margin-right: 1rem;
}
.auto-overview-tag {
    margin-right: .5rem;
    margin-bottom: 1rem;
    padding: .5rem 1.4rem;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #3c3d3f;
    border-radius: 50px;
    /* background: rgba(23, 108, 181, 0.2); */
	background: #fff;
	border: 1px solid #151313;
}
.auto-overview-tag:hover {
    background: #fff;
	border: 1px solid #151313;
}
.auto-overview-tag, .clear-filter{
    font-size: 1.45rem;
}
.load_img{
    width:150px;
}
.filter-sec h1{
    color: #fff;
}
.each-filter{
	width: 100%;
}
.each-filter .select-style{
    padding: 0 ;
    overflow: hidden;
    text-overflow: ellipsis;
	font-family: 'lama_sansextrabold';
}
.aanbod-loader {
	width: 45px;
	height: 40px;
	background: linear-gradient(#555 calc(1*100%/6),#fff 0 calc(3*100%/6),#555 0),
			  linear-gradient(#555 calc(2*100%/6),#fff 0 calc(4*100%/6),#555 0),
			  linear-gradient(#555 calc(3*100%/6),#fff 0 calc(5*100%/6),#555 0);
	background-size: 10px 400%;
	background-repeat: no-repeat;
	animation: matrix 1s infinite linear;
  }
@keyframes matrix {
	0% {
	  background-position: 0% 100%, 50% 100%, 100% 100%
	}
  
	100% {
	  background-position: 0% 0%, 50% 0%, 100% 0%
	}
}
.load_aanbod{
	justify-content: center;
    display: flex;
    column-gap: 3rem;
    align-items: center;
    color: #fff;
}
.close_img{
	width: 2rem;
}
/****aanbod-form-sec****/
.aanbod-form-sec::after{
	display: none;
}
.aanbod-form-sec .list-bg-img {
    height: 180vh;
}
/**********************************popup*********************************/
.modal-area .modal-dialog {
    max-width: 113rem;
    margin: 10% auto 0;
}
.modal-area .modal {
	background-color: rgba(5, 4, 4, 0.8);
}
.modal-area .modal-content {
    border: 0;
    border-radius: 0;
    background-color: #1D70B8;
    position: relative;
    overflow: hidden;
	clip-path: polygon(16% 0, 100% 0%, 86% 100%, 0% 100%);
}
.modal-area .popup-content h1 {
	letter-spacing: 0.96px;
}
.modal-area .popup-content p {
    margin: 3rem auto 8rem;
	max-width: 80rem;
	width: 100%;
	color: #fff;
}
.modal-area .popup-content {
	text-align: center;
    padding: 10.5rem 6rem 7rem;
    background-color: #1D70B8;
}
.popup-content .common-btn {
    background-color: #FFFFFF;
    color: #000000;
    display: table;
    margin: 0 auto;
    border: none;
}


/*******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:18px;
	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: 30px;
	  padding-top: 15px;
  }
  
  .cookie_div{
	  position: fixed;
	  bottom: 0;
	  z-index: 999999;
	  width: 100%;
	  padding: 0px 0;
  }
  .cookie_div{
	  color:#9c9c9c;
	  font-size: 12px;
	  /*font-family: 'Calibri';*/
	  font-family: 'arial';
  }
  .cookie_div h4{
	  margin-bottom: 15px;
	  font-size: 13pt;
	  font-family: 'Calibri';
  }
  .cookie_div a{
	  color:#38b6be;
	  font-size: 10pt;
	  font-weight:bold;
	  margin-left:8px;
	  font-family: 'Calibri';
  }
  .cookie_div button{
	  color:#3c935c;
	  background:#dbffe8;
	  font-weight: bold;
	  border: 0;
	  padding: 10px 25px;
	  margin:5px 0;
	  cursor: pointer;
	  font-size: 12px;
	  /*font-family: 'Calibri';*/
	  font-family: 'arial';
  }
  .light_theme{
	  background:rgba(255, 255, 255, 0.83);
	  -webkit-box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.6); 
	  box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.6);
  }
  .dark_theme{
	  background: rgba(0, 0, 0, 0.78);
	  -webkit-box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.65); 
	  box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.65);
  }
  .light_theme h4{
	  color:#2a2a2a;
  }
  .dark_theme h4{
	  color:#c9c9c9;
  }
  /****aanbod dtl****/
  .kenteken_np{
	  background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
	  background-repeat: no-repeat;
	  background-position: left;
	  padding: 4px 0 6px 44px;
	  color: #000;
	  background-size: 152px;
  }
  
  .star_icon h4{
	  padding-bottom: 10px;
	  text-transform: uppercase;
	  padding-top: 15px;
	  margin-bottom: 15px;
	  color: #1c1c1c;
	  border-bottom: 1px solid #1c1c1c;
	  text-transform: uppercase;
  }
  .star_icon p img{
	  width: 15px;
	  margin-top: -3px;
	  margin-right: 5px;
  }
  .star_icon p{
	  font-family: 'NunitoSansRegular';
	  font-size: 16px;
	  color: black;;
	  padding-bottom: 6px;
	  word-break: break-word;
  }
  .photo_contnt li img{
	  width: 15px;
	  margin-left: 5px;
  }
  .star_icon h3 {
	  margin: 40px 0 30px;
  }
  .aanbod-detail-tab-sec .tab-content .star_icon p {
	  margin: 0;
  }
  .bullet-panel h3 {
	  margin-bottom: 30px;
  }
  .cursor{
	  cursor:pointer;
  }
   .form-1, .form-2 {
	  display:none;
	  margin-top: 30px !important;
	  margin: 0 auto 10px;
  } 
  .privacy-sec{
	  background-color: #121212;
	  padding: 11% 0;
  }
  .cpnt {
	  cursor: pointer;
  }
  .filter-clean img {
	  width: 12px;
	  margin-right: 10px;
	  margin-bottom: 2px;
  }
  
  .acties-left-content p {
	  color: black;
  }
  .error_top {
	margin-top: 9rem;
    margin-bottom: 9rem;
  }
  .top-gap{
     padding-top:6rem;
	 padding-bottom:6rem;
  }
  .filter-lft .input.select{
	width: 100% !important;
  }
.reset_all_filter{
	color: #000;
}
.aanbod-car-wrap{
	z-index: 0;
}
.dtl-form-aanbod .form-area{
	padding: 2rem 0;
} 
.dtl-form-aanbod{
	background-color: #1D70B8;
}
.dtl-form-aanbod .text-area{
	margin-left: -3.5rem;
}
.dtl-form-aanbod .text-area{
	margin-left: -3.5rem;
}
.dtl-form-sec .text-area{
	margin-left: -3.5rem;
}
.home-banner .swiper-wrapper{
	height: 100vh;
}
.each-banner{
	height: 100%;
}
.each-banner img{
	height: 100%;
	object-fit: cover;
}
.calsty {
    border: 0;
    width: 100%;
    height: 690px;
    background: transparent;
}
/*.show-menu-div .memu_right {
	transform: translateX(0);
    animation: fadeInt 1.2s reverse;
    opacity: 1;
}*/
.memu_right {
	position: relative;
}
.memu_right::after {
    content: '';
    position: absolute;
    right: -30%;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    height: 100%;
    width: calc(100vw + 10%);
    clip-path: polygon(55% 0%, 100% 0, 100% 100%, 36% 100%);
    z-index: -1;
}
.fst-img .small-car {
    overflow: hidden;
}
.fst-img .small-car img {
    margin-top: -1.4rem;
    height: calc(100% + 12%);
}
.widget-btn-area{
	bottom: 2rem;
  	left: 3rem;
  	z-index: 99;
  	font-family: "Nunito Sans", sans-serif;
}
.widget-btn{
	border-radius: 10px;
  	background: #1D70B8;
	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: #1D70B8;
}
.widget-content button, .widget-mobile button{
	border-radius: 5px;
	color: #fff;
	border: 2px solid #1D70B8;
  	background: #1D70B8;
	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: #1D70B8 !important;
}
.monthly_amount{
	cursor:pointer;
} 
.bottom-0{
	bottom: 0;
}
.start-0{
	left: 0;
}
