@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
  color: rgba(242, 242, 242, 0.70);
  font-family: 'Widescreen-Medium';
  font-size: 1.6rem;
  background-color: #0D0D0D;
  /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
  display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
/***header-area*****/
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 36px 0 0;
  z-index: 99;
  transition: all 0.3s;
}
.header-area:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.header-wrap {
  border-bottom: 1px solid rgba(242, 242, 242, 0.71);
  padding-bottom: 22px;
}
.header-active::after {
  background-color: rgba(21, 21, 21, 0.3);
  backdrop-filter: blur(20px);
}
.header-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-nav li {
  color: rgba(242, 242, 242, 0.50);
  font-family: 'Widescreen-ExMedium';
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.header-area .col-lg-4:last-child .header-nav ul {
  justify-content: end;
}
.header-logo img {
  width: 300px;
}
/***hamburger*****/
.menu-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  min-width: 100px;
  position: relative;
  z-index: 1;
}
.hamburger {
  width: 12px;
  height: 12px;
}
svg {
  display: block;
  width: 12px;
  height: 12px;
}
.line1,
.line2,
.line3 {
  transition: all 0.5s;
  position: relative;
}
.hamburger.active .line1 {
  transform: translate(50%, 50%) rotate(45deg);
}
.hamburger.active .line2 {
  opacity: 0; 
}
.hamburger.active .line3 {
  transform: translate(50%, 50%) rotate(-45deg);
}
.menu-text {
  color: #F2F2F2;
}
/****mega-menu****/
.hidden-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.mega-menu {
  position: absolute;
  left: -100%;
  top: 0;
  height: 100vh;
  width: 39%;
  padding: 150px 44px 30px;
  background-color: rgba(13, 13, 13, 0.24);
  backdrop-filter: blur(12.5px);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mega-menu-active {
  left: 0;
}
.mega-menu-blank {
  position: absolute;
  right: -100%;
  top: 0;
  height: 100vh;
  width: 61%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mega-overlay-active {
  right: 0;
}
.mega-menu-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
  padding-right: 20px;
}
.mega-menu-wrap::-webkit-scrollbar {
  width: 10px;
  background-color: #424242;
}
::-webkit-scrollbar-thumb {
  background-color: #535353;
}
.mega-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: table;
  margin-left: auto;
}
.mega-menu li {
  color: rgba(242, 242, 242, 0.70);
  font-family: 'Widescreen-SemiBold';
  font-size: 3.2rem;
  line-height: 48px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.mega-menu li:last-child {
  margin-bottom: 0;
}
.mega-menu li a {
  color: rgba(242, 242, 242, 0.70);
}
.mega-menu li a:hover,
.mega-menu li a.active-pg {
  color: #F2F2F2;
}
.mega-menu li {
  color: rgba(242, 242, 242, 0.70);
  font-family: 'Widescreen-SemiBold';
  font-size: 3.2rem;
  line-height: 48px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
  animation-duration: 0.7s;
  animation-fill-mode: both;
}
.mega-menu li.active {
  animation-name: fadeInUp;
}
.mega-menu li.reverse {
  animation-name: fadeOutDown;
}
.mega-menu li:not(.active):not(.reverse) {
  animation-name: none;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
/********banner-sec*********/
.banner-sec {
	position: relative;
}
.banner-content {
	position: absolute;
	bottom: 60px;
	left: 0;
	z-index: 2;
	width: 100%;
}
.banner-content h1 {
  margin-bottom: 60px;
}
.banner-video,.each-banner  {
	height: 924px;
}
.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;
}
/****product-sec******/
.product-sec {
  background-color: #DCDCDC;
  padding: 130px 0;
  overflow-x: hidden;
}
.product-sec h2 {
  color: #0D0D0D;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0D0D0D;
  margin-bottom: 80px;
  text-align: center;
}
.product-slider {
  width:100vw;
	margin-left:-50vw;
	left:50%;
	position:relative;
}
.product-slider .swiper-button-next {
  right: 36px;
}
.product-slider .swiper-button-prev {
  left: 36px;
}
.product-slider .common-arrow {
  top: 40%;
}
.product-text {
  background-color: #EEE;
  padding: 10px 20px 25px;
  transition: all 0.5s;
  clip-path: inset(0 0 70% 0);
}
.each-product:hover .product-text {
  clip-path: inset(0 0 0 0);
}
.product-top {
  margin-bottom: 20px;
}
.product-top h4 {
  color: #0D0D0D;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  opacity: 0.6;
}
.product-top p {
  color: rgba(13, 13, 13, 0.50);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-top h6 {
  color: #0D0D0D;
  font-family: 'Widescreen-SemiBold';
  opacity: 0.6;
  margin-top: 5px;
}
.product-top h6 strong {
  font-weight: normal;
  color: rgba(13, 13, 13, 0.50);
}
.product-btm td h6 {
  color: rgba(13, 13, 13, 0.4);
}
.product-btm td h6 strong {
  display: block;
  color: #0D0D0D;
  font-weight: normal;
  font-family: 'Widescreen-SemiBold';
  opacity: 0.6;
}
.product-btm td {
  border-right: 1px solid rgba(13, 13, 13, 0.71);
  padding: 0 20px;
  vertical-align: top;
}
.product-btm td:last-child {
  border-right: 0;
  padding-right: 0;
}
.product-btm td:first-child {
  padding-left: 0;
}
.product-btn {
  margin-top: 80px;
  text-align: center;
  position: relative;
}
.product-btn::after {
  content: "";
  height: 1px;
  background-color: #0D0D0D;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.product-btn .common-btn {
  position: relative;
  z-index: 1;
  background-color: #DCDCDC;
}
/****service-sec****/
.service-sec {
  padding-top: 98px;
  overflow-x: hidden;
}
.service-heading {
  margin-bottom: 80px;
}
.service-heading-right {
  max-width: 477px;
  width: 100%;
  margin-left: auto;
}
.service-heading p {
  margin-bottom: 40px;
  color: #DCDCDC;
}
.service-heading h2 {
  color: #DCDCDC;
  line-height: 48px;
}
.service-slider {
  /* width:100vw;
	margin-left:-50vw;
	left:50%;
	position:relative; */
}
.service-slider .swiper-slide {
  height: auto;
}
.each-service {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.each-service-text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 60px 80px;
}
.each-service-text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 12px 0 60px;
  height: 4lh;
}
.each-service-img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition-duration: 1.5s;
  overflow: hidden;
  height: 100%;
}
.each-service-img img {
  height: 100%;
  object-fit: cover;
}
.each-service:hover .each-service-img {
  transform: scale(1.1);
}
.service-slider .swiper-button-next {
  right: 36px;
  top: 45%;
}
.service-slider .swiper-button-prev {
  left: 36px;
  top: 45%;
}
/****about-sec****/
.about-sec {
  position: relative;
  padding: 130px 0;
  background-color: #DCDCDC;
  overflow: clip;
  /* height: 100vh; */
}
.about-sec::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(91deg, rgba(220, 220, 220, 0.00) 1.12%, rgba(220, 220, 220, 0.78) 61.53%, #DCDCDC 98.88%);
}
.about-map {
  position: absolute;
  bottom: -32%;
  left: 0;
  height: 100%;
  width: 90%;
}
.about-sec .container {
  position: relative;
  z-index: 1;
}
.about-heading {
  position: sticky;
  top: 200px;
  left: 0;
}
.about-heading h2 {
  color: #0D0D0D;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0D0D0D;
  line-height: 48px;
}
.about-info p {
  color: #0D0D0D;
}
.about-info {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  /* position: absolute; */
  right: 0;
}
.about-info h3 {
  font-family: 'Widescreen-UExSemiBold';
  color: #0D0D0D;
  text-transform: none;
  margin-bottom: 35px;
  margin-top: 45px;
}
.about-info ol {
  list-style-type: none;
	counter-reset: li;
  padding: 0;
  margin: 0;
}
.about-info li:before {
  counter-increment: li;
  content: counter(li, decimal-leading-zero);
	margin-right: 23px;
  color: #0D0D0D;
  font-family: Widescreen;
  font-size: 2.4rem;
  line-height: normal;
  letter-spacing: 0.48px;
  font-family: 'Widescreen-SemiBold';
  position: absolute;
  left: 0;
  top: 0;
}
.about-info li {
  padding-left: 55px;
  position: relative;
  margin-bottom: 44px;
}
.about-info li:last-child {
  margin-bottom: 0;
}
.about-info li h4 {
  line-height: normal;
  letter-spacing: 0.48px;
  color: #0D0D0D;
  margin-bottom: 10px;
}
.about-info li p {
  margin-bottom: 0;
}
.map-point {
  position: absolute;
  top: 21.5%;
  left: 8%;
}
.map-point .bg,
.map-point .dot {
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 100%;
}
.map-point .bg {
  animation: pulse 1.2s ease infinite;
  background: #0D0D0D;
}
.map-point .dot {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  border: none;
  background: #0D0D0D;
  background-size: 18px;
  cursor: pointer;
  outline: none;
}
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/****footer-area****/
.footer-area {
  padding: 77px 0 43px;
  position: relative;
  /* background-color: #0D0D0D;
  z-index: 1; */
}
.footer-map {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.1;
  z-index: -1;
}
.footer-wp {
	margin: 146px auto 0;
	max-width: 250px;
	width: 100%;
  text-align: left;
  position: relative;
}
.footer-wp::after {
  content: "";
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: rgba(220, 220, 220, 0.50);
  position: absolute;
  top: calc(-100px - 26px);
}
.footer-wp a {
  border-radius: 41px;
  background: rgba(37, 211, 102, 0.30);
	display: flex;
	padding: 5px;
  align-items: center;
}
.footer-wp-img {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #25D366;
	height: 54px;
	width: 54px;
	border-radius: 100%;
	margin-right: 10px;
}
.footer-wp-img img {
	width: 24px;
}
.footer-wp-text h5 {
	color: #fff;
	font-size: 1.6rem;
	line-height: 20px;
  font-family: 'Widescreen-SemiBold';
  letter-spacing: normal;
  text-transform: uppercase;
  /*margin-bottom: 5px;*/
}	
.footer-wp-text p {
	color: #fff;
	margin-bottom: 0;
  font-family: 'Widescreen-Medium';
  letter-spacing: normal;
	font-size: 1.6rem;
	line-height: 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.footer-wp:hover .footer-wp-text p {
	color: rgba(255, 255, 255, 0.50);
}
.each-footer-info p {
  color: #D9D9D9;
  font-family: 'Widescreen-Regular';
  margin-bottom: 0;
}
.each-footer-info p a {
  color: #fff;
}
.each-footer-info p a:hover {
  color: #fff;
  opacity: 0.5;
}
.each-footer-info h4 {
  color: #fff;
  font-family: 'Widescreen-Medium';
  margin-bottom: 20px;
}
.each-footer-info h4 a {
  color: #fff;
}
.each-footer-info h4 a:hover {
  color: #fff;
  opacity: 0.5;
}
.each-footer-info table {
  margin-left: auto;
}
.each-footer-info td {
  color: #fff;
  line-height: 24px; 
  letter-spacing: 0.8px;
}
.each-footer-info td:nth-child(odd) {
  padding-right: 19px;
}
.footer-btm {
  margin-top: 120px;
}
.footer-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 36px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-social li {
  color: #F2F2F2;
  font-family: 'Widescreen-ExMedium';
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.footer-social li a {
  color: rgba(242, 242, 242, 0.5);
}
.footer-social li a:hover {
  color: #F2F2F2;
}
.footer-credit {
  border-top: 1px solid rgba(220, 220, 220, 0.5);
  margin-top: 14px;
  padding-top: 50px;
}
.footer-policy ul {
  display: flex;
  align-items: center;
  column-gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-policy li {
  color: #fff;
  font-family: 'Widescreen-Regular';
}
.footer-policy li a {
  color: #fff;
}
.footer-policy li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-logo {
  text-align: center;
  margin-left: -36px;
}
.footer-logo img {
  width: 300px;
}
.footer-link ul {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-link li {
  color: #fff;
  font-family: 'Widescreen-Regular';
  font-size: 1.6rem;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 0 12px;
  position: relative;
}
.footer-link li::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-link li a {
  color: #fff;
}
.footer-link li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-link li:last-child {
  padding-right: 0;
}
.footer-link li:last-child::after {
  display: none;
}
.footer-link li:first-child {
  padding-left: 0;
}
.rdw-img img{
  width: 140px;
}
.rdw-img-mobile {
  width: 140px;
  display: none;
}
/* ============== aanbod list ==========  */

/****aanbod-filter-sec****/
.aanbod-filter-sec {
  margin-top: 142px;
  padding: 50px 0;
  /* background-color: #191D23; */
}
.filter_heading{
  text-align: center;
}
.filter_heading h2{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #DCDCDC;
  margin-bottom: 44px;
}
.aanbod-filter-wrap {
  position: relative;
  z-index: 2;
}
.filter-reset a {
  color: #DCDCDC;
  font-size: 1.4rem;
  font-family: 'Widescreen-Medium';
}
.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: #4B6798; */
  opacity: .8;
}
.filter-reset a:hover img {
    filter: brightness(1);
}
.select-style {
  width: 100%;
  height: 48px;
  color: #F2F2F2;
  font-family: 'Widescreen-Medium';
  font-size: 1.6rem;
  background-color: #14181E;
  border: 1.5px solid #F9F8F6;
  border-radius: 0;
  padding: 0 30px 0 18px;
  background: url(../images/filter-arrow.svg)  no-repeat 91% center/20px;
  appearance: none;
  line-height: 48px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; 
  cursor: default;
}
.select-style.show {
  /* border-radius: 5px 5px 0 0; */
}
.filter-main {
  margin-bottom: 20px;
}
.filter-main option{
  font-family: 'Widescreen-Medium';
  background-color: #0D0D0D;
}
.filter-content {
  display: none;
  background-color:#0D0D0D;
  padding: 10px 10px 15px;
  z-index: 2;
  border: 1px solid #F9F8F6;
  border-top: 0;
  border-radius: 0 0 0 0;
  margin-top: -5px !important;
  cursor: default;
  max-height: 230px;
  overflow-y: auto;
  z-index: 999;
}
.filter-content::-webkit-scrollbar {
  background-color: #dbdbdb;
  width: 3px;
}
.filter-content::-webkit-scrollbar-thumb {
  background-color: #F9F8F6;
}
.filter-content.show-div {
  display: block;
}
.aanbod-filter-sec label {
  color: #F9F8F6;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  z-index: 2;
  font-family: 'Widescreen-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: 16px;
  height: 16px;
  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:#0D0D0D;
  border-color: #F9F8F6;
}
.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: #F9F8F6;
  border-radius: 0;
  background-color:transparent;
  font-family: 'Widescreen-Medium';
  font-size: 1.4rem;
  border: 1px solid #F9F8F6;
}
.cross-btn {
  width: 9px;
}
.auto-overview-tag:hover {
  background-color: #F9F8F6;
  color: #0D0D0D;
}
.auto-overview-tag:hover img{
  filter: invert(1);
}
.filter-main .col-6 {
  margin-bottom: 30px;
  width: 20%;
  text-align: center;
  text-transform: uppercase;
}
.total_search_records {
  margin-top: 30px;
}
.mobile-show-filter {
  position: fixed;
  left: 0;
  top: 96px;
  background-color: #0D0D0D;
  width: 100%;
  z-index: 5;
  margin-top: 0;
  padding: 15px 0;
  border-bottom: 1px solid #EEE;
}
.mobile-show-filter .filter-btn {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  background-color: #0D0D0D;
  border:1px solid #EEE;
  display: inline-block;
  padding: 13px 22px;

}
.mobile-show-filter .common-btn:hover {
  background-color: transparent;
  border-color: #F9F8F6;
}
.filter-count {
  min-width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 100%;
  color: #14181E;
  border: 1px solid #fff;
  margin-left: 30px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mobile-filter-close {
  padding: 15px;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1;
  background-color: #0D0D0D;
  border-bottom: 1px solid #F2F2F2;
}
.mobile-filter-close span {
  max-width: 32px;
  width: 100%;
  height: 32px;
  background-color: #F9F8F6;
  border-radius: 50%;
  margin-left: auto;
  border: 1px solid #4B6798;
}
.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: #0D0D0D;
  border: 1px solid #fff;
  color: #f3f3f3;
  padding: 10px;
  border-radius: 0;
  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: #7191C9;
  background-color: #7191C9; */
}
.cursor-pointer {
  cursor: pointer;
}
.sorteren_op-filter{
  margin: auto;
  text-align: center;
}
.filter-sort .aanbod-filter {
  margin-bottom: 0;
  width: 19%;
  text-transform: uppercase;
}
.model-filter .form-check-input {
  display: none;
}
.sorteren_op-filter .form-check-input {
  display: none;
}
/* ===========================  */
.inner-header{
  background-color: #0D0D0D;
}
.aanbod-list{
  padding-bottom: 130px;
}
.aanbod-list .product-text{
  clip-path: inset(0 0 0 0);
}
.aanbod-list .product-btm table{
  width: 100%;
}
.aanbod-list .product-btm td{
  font-size: 1.4rem;
  letter-spacing: 0.28px;
  padding: 0 10px;
  letter-spacing: normal;
  border-right-width: 1.5px;
}
.aanbod-list .product-btm td h6{
  letter-spacing: normal;
  font-size: 1.4rem;
  line-height: normal;
}
.aanbod-list .product-btm td:first-child{
  padding-left: 0;
}
.aanbod-list .product-btm td:last-child{
  padding-right: 0;
}
.aanbod-list .product-text{
  padding: 10px;
}
.aanbod-list .product-btm .common-btn{
  margin-top:20px;
}
.aanbod-list .each-product p{
  font-size: 1.4rem;
}
.aanbod-list .product-top h6{
  opacity: 1;
}
.aanbod-list .container > .row{
  row-gap: 50px;
}
/* ============== aanbod-dtl ========== */
.aanbod-top-section{
  margin-top: 200px;
  padding-bottom: 30px;
}
.aanbod-top .form_btn .dark-btn strong::after {
  transform: rotate(-180deg);
}
.aanbod-top .form_btn .common-btn:hover strong {
  padding-left: 27px;
  padding-right: 0;
}
.aanbod-top .form_btn .common-btn strong::after {
  top: 10%;
  right: auto;
  left: 0;
}
.sticky {
  position: sticky;
  top: 140px;
  background-color: #D9D9D9;
  padding: 45px 24px 24px;
  max-width: 570px;
  margin-left: auto;
}
.pagination_control{
  position: absolute;
  bottom: 14px;
  display: flex;
  justify-content: center;
  width: fit-content;
  column-gap: 15px;
  width: 100%;
}
.pagination_control  .swiper-button-next.swiper-button-disabled,
.pagination_control  .swiper-button-prev.swiper-button-disabled{
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.pagination_control  .swiper-pagination-fraction{
  width: auto ;
  color: #ECECEC;
  font-size: 1.6rem;
  line-height: 24px;
  letter-spacing: 0.8px;
  font-family: 'Widescreen-Medium';
}
.pagination_control .swiper-pagination,
.pagination_control  .common-arrow{
  position: initial;
  transform: translate(0);
  text-align: initial;
}
.pagination_control .common-arrow{
  background-color: #0D0D0D;
  border-color: #0D0D0D;
}
.pagination_control .common-arrow img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.pagination_control .common-arrow:hover{
  background-color: #ECECEC;
  border-color: #ECECEC;
}
.pagination_control .common-arrow:hover img{
  filter: brightness(0) invert(0);
  -webkit-filter: brightness(0) invert(0);
}
.form_btn{
  margin-right: 50px;
  /* padding-right: ; */
}
.dtl-form-top{
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 36px;
}
.dtl_wrap{
  padding-left: 36px;
}
.share_btn {
  height: 36px;
  width: 36px;
  flex-shrink: 0;
}
.share_btn .share-social-media-button .a2a_dd {
  border: 1px solid #0D0D0D !important;
  padding: 0 !important;
  border-radius: 100% !important;
  height: 36px;
  width: 36px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.share_btn .share-social-media-button .a2a_dd svg {
  width: 15px !important;
  margin-right: 0 !important;
  filter: invert(1) !important;
}
.dtl-form-heading h2{
  color: #0D0D0D;
  line-height: normal;
  letter-spacing: 0.8px;
  font-family: 'Widescreen-SemiBold';
}
.dtl-form-heading p{
  color: rgba(13, 13, 13, 0.50);
  margin-bottom: 27px ;
}
.dtl-form-price-table table{
  width: 100%;
}
.dtl-form-price-table tr{
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.dtl-form-price-table td{
  width: 33.33%;
  border-right: 1px solid rgba(13, 13, 13, 0.71);
  color: rgba(13, 13, 13, 0.50);
  font-family: 'Widescreen-Medium';
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 0 15px;
}
.dtl-form-price-table td:nth-child(1),
.dtl-form-price-table td:nth-child(4n){
  padding-left: 0;
}
.dtl-form-price-table td:nth-child(3n){
  border-color: transparent;
  padding-right: 0;
}
.dtl-form-price-table td span{
  display: block;
  color: #0D0D0D;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.car-price h4{
  color: #0D0D0D;
  letter-spacing: 1.2px;
  margin-top: 20px;
}
.car-price h4 span{
  color: rgba(13, 13, 13, 0.50);
  margin-left: 14px;
}
.dtl-contact-sec{
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 10px;
  border: 1.5px solid rgba(13, 13, 13, 0.15);
  margin-top: 60px;
}
.dtl-contact-sec h6{
  color: #0D0D0D;
}
.man-img{
  width: 116px;
  flex-shrink: 0;
}
.dtl-contact-info a{
  display: block;
  width: fit-content;
  color: rgba(13, 13, 13, 0.50);
  line-height: 24px; 
  letter-spacing: 0.8px;
  margin: 9px 0;
}
.dtl-contact-info a:hover{
  color: #0D0D0D;
}
.slider-btn-sec ul{
  list-style: none;
  display: flex;
  column-gap: 10px;
  margin: 60px 0 80px;
}
.slider-btn-sec .common-btn {
  border: 1px solid #fff;
  padding-left: 40px;
  padding-right: 40px;
}
.slider-btn-sec .common-btn svg {
  display: none;
}
.slider-btn-sec hr{
  opacity: 1;
  height: 1.5px;
  margin: 0;
}
/* ============ tab =========== */
.custom_dtl_tab ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 80px;
  margin-bottom: 60px;
}
.tab_btn,
.custom_dtl_tab li{
  color: #F2F2F2;
  font-family: 'Widescreen-ExMedium';
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  border: 1px solid #F2F2F2;
  padding: 10px 36px;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.d_active,
.tab_active,
.tab_btn:hover,
.custom_dtl_tab li:hover{
  background-color: #ECECEC;
  color: #0D0D0D;
}
.tab_content {
  display: none;
}
.tab_content h5{
  font-size: 2.4rem;
  line-height: 56px; 
  font-family: 'Widescreen-Medium';
  color: #FFF;
  margin-bottom: 17px;
}
.custom_dtl_tab p{
  margin-bottom: 0;
}
.tab_container{
  padding-bottom: 130px;
}
.tab_container ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.kenmerken-tab ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.kenmerken-tab li{
  width: 50%;
  line-height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  color: #FFF;
  font-family: 'Widescreen-Medium';
  padding:8px 0;
}
.kenmerken-tab li:nth-child(even){
  color: rgba(255, 255, 255, 0.70);
}
.bullet-panel ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 10px;
  color: #FBFBFB;
  font-family: 'Widescreen-Regular';
}
.bullet-panel li:after {
  background-size: 7px;
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 7px;
  height: 7px;
  background-image: url(../images/bullet.svg);
  background-repeat: no-repeat;
}
.left-bg-block {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D9D9D9;
  line-height: 24px;
}
.block-dtls {
  width: calc(100% - 140px);
  border: 1px solid #D9D9D9;
  border-left: 0;
  padding: 20px 15px 5px;
  min-height: 200px;
}
.left-bg-block p{
  color: #0D0D0D;
}
.each-onderhoud-block {
  display: flex;
  margin-bottom: 20px;
}
.block-dtls h5{
  margin-bottom: 0;
}

/* ##################################### */
.inner-page-details-wrap{
  margin-right: -40%;
}
.inner-page-details .swiper-button-prev{
  left: 20px;
}
.inner-page-details .swiper-button-next{
  right: 20px;
}
.inner-page-details .common-arrow {
  top: 57%;
}
/* ============= aanbod-popuo ============== */
.tab-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 102;
  display: flex;
}
.tab-popup-content-wrap{
  overflow-x: hidden;
  overflow-y: scroll;
}
.popup-opacity{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 3, 4, 0.73);
  top: 0;
  left: 0;
  z-index: 100;
}
.tab-popup-area {
  background: #0D0D0D;
  position: relative;
  z-index: 101;
  margin: auto auto;
  padding: 0 35px;
  width: 100%;
  height: 75vh;
  border: 1px solid rgba(242, 242, 242, 0.71);
}
.popup-cross{
  background:transparent;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px;
  border-radius: 100%;
  cursor: pointer;
}
.tab-popup-content {
  overflow-x: clip;
  overflow-y: scroll;
  padding-bottom: 40px;
}
.tab-popup-content ul{
  list-style: none;
  padding-left: 0;
  padding-bottom: 0;
}
.tab-popup-content ul:last-child{
  margin-bottom: 0;
}
.popup-cross img{
  width: 15px;
}
.tab-popup-area h5 {
  line-height: normal;
  padding-top: 40px;
  margin-bottom: 5px;
  color: #F2F2F2;
  font-size: 2.4rem;
  font-family: 'Widescreen-Medium';
  margin-bottom: 17px;
}
.show-popup{
  display: none;
}
.tab-popup-content h5{
  padding-top: 0;
}
.tab-popup-content::-webkit-scrollbar {
  width: 5px;
  padding-left: 20px;
}
.tab-popup-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.20);
}
.tab-popup-content::-webkit-scrollbar-thumb {
  background: #F2F2F2;
}
.big-car-slider{
  margin-bottom: 10px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ diensten-list PAGE STRAT $$$$$$$$$$$$$$$$$$$$$$$$ */
/* *************service-sec inner page***************** */
.service-sec.inner-page .each-service{
  margin-bottom: 22PX;
  position: relative;
  height: auto;
}
.service-sec.inner-page .each-service::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.52) 61.48%, rgba(51, 51, 51, 0.72) 100%);
}
.service-sec.inner-page .row{
  margin-left: -10px;
  margin-right: -10px;
}
.service-sec.inner-page .col-lg-6{
  padding-left: 10px;
  padding-right: 10px;
}
.service-sec.inner-page{
  padding-top: 146px;
  padding-bottom: 110px;
}
.service-sec.inner-page .each-service-text{
  padding: 45px 50px;
  z-index: 2;
}
/* ******************* service-details-sec ********************* */
.back-button{
  padding-top: 235px;
}
.back-button .common-btn:hover strong {
  padding-left: 27px;
  padding-right: 0;
}
.back-button .common-btn strong::after {
  top: 10%;
  right: auto;
  left: 0;
  transform: rotate(-180deg);
}
.service-details-sec{
  margin-top: -70px;
  padding-bottom: 63px;
}
.service-details-content h2{
  padding-bottom: 12px;
}
.service-details-content{
  max-width: 840px;
  margin-left: auto;
}
/* **************** service-details-img ******************** */
.service-details-img-wrap{
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
}
.service-details-img-left{
  max-width: 854px;
}
.service-details-img-righ{
  max-width: 563px;
}
/* ********************* wij-als-jag-motors-sec ************************ */
.wij-als-jag-motors-content ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.wij-als-jag-motors-content h4{
  font-family: 'Widescreen-Bold';
  padding-bottom: 12px;
  color: #F2F2F2;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition:  0.5s;
}

.wij-als-jag-motors-content p{
  padding-bottom: 22px;
  color: #F2F2F2;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition:  0.5s;
}
.wij-als-jag-motors-content li:hover p{
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition:  0.5s;
}
.wij-als-jag-motors-content li:hover h4{
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition:  0.5s;
}
.wij-als-jag-motors-sec{
  padding-top: 132px;
  padding-bottom: 80px;
}
.wij-als-jag-motors-content{
  max-width: 724px;
}
.contact-interesse .form-wrap .common-btn:hover strong::after {
  filter: none;
}
/* ****************** vragen-of-interesse-sec ******************** */
.vragen-of-interesse-sec .each-footer-info table{
  margin-left: 0;
}
.vragen-of-interesse-sec .vragen-of-interesse-heading{
  margin-bottom: 40px;
}
.vragen-of-interesse-heading h2{
  color: #0D0D0D;
  line-height: 48px;
}
.vragen-of-interesse-sec{
  background: linear-gradient(98deg, rgba(220, 220, 220, 0.00) 5.94%, rgba(220, 220, 220, 0.78) 54.2%, #DCDCDC 98.5%);
}
.vragen-of-interesse-sec::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(91deg, rgba(220, 220, 220, 0.00) 1.12%, rgba(220, 220, 220, 0.78) 61.53%, #DCDCDC 98.88%);
}
.vragen-of-interesse-sec .each-footer-info p a{
  color: #0D0D0D;
}
.vragen-of-interesse-sec .each-footer-info h4 a{
  color: #0D0D0D;
  text-decoration: underline;
  font-size: 1.6rem;
  line-height: 26px;
  letter-spacing: 0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.vragen-of-interesse-sec .each-footer-info h4{
  margin-bottom: 0;
}
.vragen-of-interesse-sec .each-footer-info p{
  margin-top: 44px;
  margin-bottom: 44px;
}
.vragen-of-interesse-sec  .each-footer-info td{
  color: #0D0D0D;
  font-family: 'Widescreen-Regular';
}
.vragen-of-interesse-sec{
  position: relative;
  background-color: #DCDCDC;
  overflow: hidden;
  padding-bottom: 190px;
  padding-top: 120px;
}
.vragen-of-interesse-sec .about-map {
  bottom: -53%;
}
.vragen-of-interesse-sec .container {
  position: relative;
  z-index: 1;
}
.vragen-of-interesse-heading.mobile{
  display: none;
}
/*********************** FORM-STRAT ****************************/
.form-sec {
  background-color: #232323;
  padding: 70px 0;
}
.form-wrap .form-style {
  resize: none;
  border-radius: 0;
  border: 1.5px solid rgba(13, 13, 13, 0.50);
  color: #0D0D0D;
  font-size: 1.6rem;
  line-height: 24px;
  padding: 18px 20px;
  background: #D9D9D9;
}
.form-wrap label {
  /* color: rgba(13, 13, 13, 0.50);
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Widescreen-Medium';
  padding-left: 10px;
  pointer-events: none; */
}
/* .form-wrap input:focus + label{
  color: #0D0D0D;
}
.form-wrap textarea:focus + label{
  color: #0D0D0D;
} */
.form-wrap .form-style:focus {
  box-shadow: none;
  background: #D9D9D9;
  border: 1.5px solid #0D0D0D;
}
.form-wrap .form-style::placeholder{
  font-family: 'Widescreen-Medium';
}
.form-wrap .form-style:focus::placeholder{
  color: #0D0D0D;
  
}
.form-wrap .form-style.foto_upload {
  color: rgba(13, 13, 13, 0.50)
}
.form-wrap .form-group {
  position: relative;
  margin-bottom: 32px;
}
.form-wrap {
  max-width: 666px;
  margin-left: auto;
  width: 100%;
  margin-top: -134px;
}
.form-wrap textarea.form-style {
  min-height: 163px;
}
.form-wrap .common-btn{
  color: #333;
  background: #DCDCDC;
}
.form-wrap  .btn-border path{
  stroke: #333;
}
.form-wrap .common-btn{
  /* max-width: 200px; */
  max-width: max-content;
}
.form-wrap .common-btn:hover strong::after{
  filter:brightness(0) invert(0);
  -webkit-filter:brightness(0) invert(0);
}
.form-wrap .row{
  margin: 0;
}
.form-wrap .col-lg-12 {
  padding: 0;
}
.form-wrap .col-lg-12 .row {
  margin: 0 -8px;
}
/* ****************** service-sec inner-page-details ********* */
.service-sec.inner-page-details .each-service-text {
  padding: 34px 40px;
}
.service-sec.inner-page-details{
  background: #DCDCDC;
  padding-top: 134px;
  padding-bottom: 20px;
}
.inner-page-slider h2{
  text-align: center;
  color: #0D0D0D;
  padding-bottom: 72px;
}
.service-sec.inner-page-details .each-service::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.52) 61.48%, rgba(51, 51, 51, 0.72) 100%);
}
.service-sec.inner-page-details .each-service-text {
  padding: 45px 50px;
  z-index: 2;
}
/* ********** service-details-sec import-page **************** */
.service-details-sec.import-page{
  padding-bottom: 88px;
}
/* ************** wij-als-jag-motors-sec export-page **************** */
.wij-als-jag-motors-sec.export-page{
  /* padding-bottom: 10px; */
  padding-bottom: 0;
}
/* ****************** welkom-bij-jag-motors *************** */
.welkom-bij-jag-motors{
  padding-top: 132px;
  padding-bottom: 102px;
}
.welkom-bij-jag-motors-content{
  max-width: 722px;
  margin-left: auto;
}
/* ************** vragen-of-interesse-sec over-one ********************* */
.about-sec.inner-over-one .about-info h4{
  color: #0D0D0D;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-family: 'Widescreen-Bold';
}
.about-sec.inner-over-one .about-info h4:hover{
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: 0.5s;
}
.about-sec.inner-over-one .about-info p{
  color: #0D0D0D;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: 0.5s;
}
.about-sec.inner-over-one .about-info p:hover{
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: 0.5s;
}
/* ******************** team-member-sec over-one-teams ****************** */
.team-member-slider{
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
.each-team-member-content{
  position: absolute;
  top: 0;
  top: 78%;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 44px 120px 44px;
  height: 100%;
  transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  text-align: center;
}
.each-team-member-content .hover-content {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.each-team-member-slider:hover .each-team-member-content .hover-content {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 190px;
}
.each-team-member-slider:hover .each-team-member-content  {
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.50) 0%, #333 100%);
  top: 0;
  padding-top: 100px;
}
.each-team-member-content p{
  margin-bottom: 16px;
}
.each-team-member-img{
  position: relative;
}
.each-team-member-img::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 70.9%, #333 100%);
}
.ons-team-area h2{
  color: #0D0D0D;
  padding-bottom: 44px;
  padding-top: 74px;
}
.about-sec.inner-over-one .about-info li::before{
  content: none;
}
.about-sec.inner-over-one .about-info{
  max-width: 799px;
  margin-left: auto;
}
.team-member-sec{
  position: relative;
  z-index: 9;
  margin-top: 0;
  margin-bottom: 20px;
  overflow: hidden;
}
body.overone-background{
  background-color: #DCDCDC;
  /* overflow: hidden; */
}
body.overone-background .welkom-bij-jag-motors{
  background-color: #0D0D0D;
}
body.overone-background footer{
  background-color: #0D0D0D;
}
.inner-over-one {
  overflow: visible;
}
.overone-background .about-sec::after{
  display: none;
}
/* .product-btm td h6 strong {
  opacity: 1;
} */
/* /* ********************* counter-sec ******************** * */
.counter-wrap{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.each-counter h2{
  padding-bottom: 16px;
} 
.counter-sec{
  height: 667px;
  /* height: 100vh; */
  position: relative;
  /* padding-bottom: 66px;  */
} 
.counter-background{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.counter-background img{
  object-fit: cover;
}
.counter-wrap{
  z-index: 2;
  position: sticky;
}
.each-counter{
  margin-top: 50px;
  margin-bottom: 100px;
}

/* ============ thankyou  =========  */
.thankyou_banner .banner-content{
  max-width: 1113px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  word-break: break-word;
}

/* ======= popup ========== */
.modal-area .modal-dialog {
  max-width: 66%;
  margin: 10% auto 0;
}
.modal-area .modal {
  background: rgba(3, 3, 4, 0.48);
  backdrop-filter: blur(11px);
}
.modal-area .modal-content {
  border: 0;
  background: rgba(13, 13, 13, 0.24);
  backdrop-filter: blur(12.5px);
  position: relative;
  border-radius: 0;
}
.modal-area .modal-content .d-table-cell {
  vertical-align: middle;
}
.pop-up-image {
  height: 100%;
}
.modal-area .popup-content {
  padding: 32px 64px 0 32px ;
  
}
.modal-area .popup-content p{
  margin-bottom: 23px;
  width: 100%;
  /* max-width: 436px; */
  color: #F2F2F2;
}
.modal-area .popup-content ul {
  /* list-style-type: none;
  margin-bottom: 30px;
  padding-left: 0; */
  margin: 14px 0;
}
.modal-area .popup-content li {
  line-height: 26px;
  color: #F2F2F2;
  line-height: 24px; 
  letter-spacing: 0.8px;
  position: relative;
}
.popup-content h5{
  color: #030304;
  margin-bottom:28px ;
}
.modal-content .col-lg-5 {
  width: 40.3%;
}
.modal-content .col-lg-7 {
  width: 59.7%;
}
.pop-up-image img {
  height: 100%;
  object-fit: cover;
}
.close-img {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 44px;
  width: 44px;
  z-index: 1;
  border-radius: 100px;
  border: 1.5px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-img:hover {
  color: #fff;
}
.close-img img {
  width: 18px;
  height: 18  px;
}
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ CONTACT-PAGE-START $$$$$$$$$$$$$$$$$$$$$44 */
/* *********** contact-banner ************ */
.contact-banner{
  height: 600px;
  width: 100%;
}
.header-bg{
  background: rgba(13, 13, 13, 0.24);
  backdrop-filter: blur(10px);
  padding-bottom: 42px;
}
.contact-banner .map-point .dot{
  background-color: #D9D9D9;
  width: 23px;
  height: 24px;
}
.contact-banner .map-point .bg{
  background-color: #D9D9D9;
  width: 24px;
  height: 24px;
}
.contact-banner .map-point {
  position: absolute;
  top: 37%;
  left: 56%;
  transform: translateX(-50%);
}
/* ************** vragen-of-interesse-sec contact-interesse *************** */
.vragen-of-interesse-sec.contact-interesse{
  background-color: #0D0D0D;
  background: #0D0D0D;
  padding-bottom: 130px;
  padding-top: 130px;
}
.vragen-of-interesse-sec.contact-interesse::after{
  display: none;
}
.contact-interesse .vragen-of-interesse-heading h2{
  color: #D9D9D9;
}
.contact-interesse .each-footer-info h4 a{
  color: #D9D9D9;
}
.contact-interesse .each-footer-info p a{
  color: #D9D9D9;
}
.contact-interesse .each-footer-info td{
  color: #D9D9D9;
}
.contact-interesse .form-wrap .form-style{
  background: #0D0D0D;
  border: 1.5px solid rgba(242, 242, 242, 0.50);
  color: #F2F2F2;
}
.contact-interesse .form-wrap .form-style:focus{
  color: #F2F2F2;
  border: 1.5px solid #F2F2F2;
}
.contact-interesse .form-wrap .common-btn{
  background: #0D0D0D;
  color: #F2F2F2;
}
.contact-interesse .form-wrap .btn-border path{
  stroke: #F2F2F2;
}
.contact-interesse .form-wrap .form-style:focus::placeholder{
  color: #fff; 
}
/* %%%%%%%%%%%%%%%%%%%% Vacature list-page-start %%%%%%%%%%%%%%%%%% */
.banner-sec.inner-banner h1{
  margin-bottom: 0;
}
.service-sec.inner-page.vacature-list{
  padding-top: 130px;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%  verkoop-page-start %%%%%%%%%%%%%%%%%%%*/
/* ********* Verkoop-dtls*********** */
.Verkoop-dtls .wij-als-jag-motors-content ul li{
  list-style: disc;
  padding-left: 3px;
}
.Verkoop-dtls .wij-als-jag-motors-content h4{
  padding-top: 40px;
}
.Verkoop-dtls .wij-als-jag-motors-content h4:first-child{
  padding-top: 0;
}
.service-details-content h4{
  padding-bottom: 10px;
}
.wij-als-jag-motors-sec.Verkoop-dtls{
  padding-bottom: 126px;
}
.Verkoop-dtls .wij-als-jag-motors-content ul{
  padding-left: 3rem;
}
/* %%%%%%%%%%%%%%%%%%%%%%%%%% verkocht-page-start %%%%%%%%%%%%%%%%%%% */
.verkocht-sec{
  margin-top: 190px;
  margin-bottom: 110px;
}
.verkocht-sec h2{
  padding-bottom: 15px;
}
.aanbod-list.verkocht-list .product-btm td:nth-child(3){
  border-right: none;
}
.aanbod-list .product-btm td h6 strong{
  color: #0D0D0D;
  opacity: 1;
}
.verkocht-list .product-btm td{
  padding: 0 20px;
}
.aanbod-list.verkocht-list .product-btm table{
  max-width: 330px;
}
.aanbod-list.verkocht-list .product-text {
  padding: 16px;
}
.aanbod-list.verkocht-list .row{
  margin-left: -10px;
  margin-right: -10px;
}
.aanbod-list.verkocht-list .col-lg-6{
  padding-left: 10px;
  padding-right: 10px;
}
/* ############ feedback ############ */
.form-wrap .form-style:focus{
  color: #030304;
}
/* ********************new-add-29*********** */
.vacature-list-slider .inner-page-details-wrap{
margin-left: 0;
}
.vacature-list-slider .swiper-slide {
  flex-shrink: 0;
  width: 708px !important
}


/* Extra CSS  */
.aanbod-loader {
  width: 45px;
  height: 40px;
  background: linear-gradient(#555 calc(1*100%/6),#fff 0 calc(3*100%/6),#555 0),
            linear-gradient(#555 calc(2*100%/6),#fff 0 calc(4*100%/6),#555 0),
            linear-gradient(#555 calc(3*100%/6),#fff 0 calc(5*100%/6),#555 0);
  background-size: 10px 400%;
  background-repeat: no-repeat;
  animation: matrix 1s infinite linear;
}
@keyframes matrix {
  0% {
    background-position: 0% 100%, 50% 100%, 100% 100%
  }

  100% {
    background-position: 0% 0%, 50% 0%, 100% 0%
  }
}
.load_aanbod{
  justify-content: center;
  display: flex;
  column-gap: 30px;
  align-items: center;
  color: #fff;
}
.radio_filter .form-check-input {
  display: none;
}
.kenmerken-tab-block-part {
  display: none;
}
  .calsty {
      width: 100%;
      height: 700px;
  }

  .fixed-whatsapp-icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    bottom: 0px;
    z-index: 999;
  }
  
  .fixed-whatsapp-icon img {
    width: 50px;
  }
  
  .popup .popuptext {
    display: none;
    width: 200px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 3px;
    right: 5vw;
    font-size: small;
  }
  
  .notifcation {
    position: relative;
  }
  
  .alert-number {
    display: none;
    position: absolute;
    bottom: 43px;
    right: 4px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background-color: red;
    color: white;
    text-align: center;
    font-size: small;
    animation: shake 0.5s;
    animation-iteration-count: 1;
  }

  .privacy_section
  {
      margin:100px 0px 50px 0px ;
  }

/* *************************************************************************DEFAULT LOADER CSS START ************************************************* */

/*******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: #fff;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
}
.star_icon p img{
    width: 15px;
    margin-top: -3px;
    margin-right: 5px;
}
.star_icon p{
    font-size: 16px;
    color: #fff;;
    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;
}
/****diensten-list****/
.each-service-img {
  height: 598px;
}
.service-details-img-righ img {
  height: 100%;
  object-fit: cover;
}
/* *************************************************************************DEFAULT LOADER CSS END ************************************************* */

.error-info h1 {
  font-family: 'museo700';
}





.counter-sec .common-bg {
  background-image: none !important;
}
.counter-sec .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}