<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'NunitoSansRegular';
    font-size: 14px;
    color: #fff;
}
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/**************** Header*****************/
.header-area .logo img{
	width: 230px;
}
.header-area .logo{
	text-align: center;
}
.header-area{
	position: absolute;
	z-index: 2;
	width: 100%;
	background:#191717;
}
.header-wrapper{
	padding: 15px 90px;
}
.header-social li img{
	margin-right: 15px;
    width: 15px;
}
.header-social li {
    /*font-size: 24px;*/
    font-size: 16px;
    font-family: 'NunitoSansRegular';
   /* margin-bottom: 20px;*/
}
.header-social li a{
	color: rgba(255,255,255,0.5);
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.header-social li a:hover{
	color: #fff;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
/*===nav=====*/
.nav-menu li{
	font-family: 'NunitoSansBold';
    /*font-size: 24px;*/
    font-size: 15px;
    display: inline-block;
    margin-right: 40px;
    letter-spacing: 0.5px;
}
.nav-menu li a{
	opacity: 0.5;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.nav-menu li a:hover{
	opacity: 1;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-icon{
	font-family: 'NunitoSansRegular';
    /*font-size: 24px;*/
    font-size: 16px;
	margin-left: 30px;
	color: rgba(255,255,255,0.5);
	/*margin-top: -25px;*/
	position: absolute;
	top: -18px;
	right: 0;
}
.nav-menu{
	margin-right: 50px;
}
.menu-bar{
/*	width: 52px;*/
    /*width: 75%;*/
    width: 100%;
}
.menu-bar:after, 
.menu-bar:before, 
.menu-bar div {
  background-color: #fff;
  border-radius: 0px;
  content: '';
  display: block;
  border-radius: 4px;
  /*height: 6px;
  margin: 7px 0;*/
  height: 2px;
  margin: 6px 0;
  transition: all .2s ease-in-out;
}
/*======*menu items=====*/
.menu-items{
	background-color: #2c2c2c;
	border-top: 1px solid #979797;
	border-bottom: 1px solid #979797;
	display: none;
	text-align: center;
	padding: 50px 0;
}
.menu-items li{
	font-family: 'NunitoSansBold';
    /*font-size: 24px;*/
    font-size: 16px;
    display: inline-block;
    margin: 0 35px;
}
.menu-items li a{
	opacity: 0.5;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.menu-items li a:hover{
	opacity: 1;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.fixed-whatsapp-icon{
	position: fixed;
	z-index: 9;
	right: 30px;
	bottom: 30px;
	padding: 10px 30px;
	background:#4fce5d;
	border-radius: 50px;
	color:#fff;
	font-size: 16px;
}
.fixed-whatsapp-icon img{
	width: 30px;
	margin-left: 5px;
}
/*****************banner*************/
.each-banner{
	position: relative;
}
.each-banner:after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background:#000;
	opacity: 0.4;
}
.banner-area{
	position: relative;
	height: 100vh;
}
.banner-content{
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	z-index: 1;
	width: 100%;
}
.banner-content .white-btn{
	height: 49px;
	line-height: 49px;
	font-size: 18px;
	max-width: 200px;
	margin:0 25px;
}
.banner-content .common-btn{
	box-shadow: 0px 2px 8px 4px rgba(0,0,0,0.13);
   -webkit-box-shadow: 0px 2px 8px 4px rgba(0,0,0,0.13);
   -moz-box-shadow: 0px 2px 8px 4px rgba(0,0,0,0.13);
}
.scroll-button {
    left: 0px;
    bottom: 30px;
    position: absolute;
    width: 100%;
    z-index: 2;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
.scroll-button img{
	width: 36px;
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
/***************product*****************/
.product-sec {
  background: #191717;
  padding: 80px 0px;
}
.sec-heading h2 {
  margin-bottom: 50px;
}
.product-slider{
	position: relative;
}
.search-icon{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 1;
	opacity: 0;
	transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.each-product:hover .search-icon {
  	opacity: 1;
  	transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.search-icon img{
	width: 70px;
}
.divider {
	margin: 25px 0;
	border-top: 1px solid #949494;
	opacity: 0.25;
}
.product-content {
    background: #2c2c2c;
    padding: 25px;
}
.product-content tr td:last-child{   
	/*text-align: right;*/
}
.product-content h6 {
   	margin-top: 10px;
   	line-height: 25px;
   	opacity: 0.5;
   	word-break: break-word;
   	height: 30px;
}
.product-slider .swiper-slide .product-content h6{
	height: 32px;
}
.aanbod-list2 .product-content h6{
	height: auto;
}
.product-content table{
	width: 100%;
}
.product-content td {
  	font-size: 18px;
	color: #fff;
	font-family: 'NunitoSansRegular';
	padding-right: 15px;
}
.product-content td:last-child{
	padding-right: 0;
}
.each-product-img {
  position: relative;
}
.each-product-img:after {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  transition:all 0.5s;
  -webkit-transition:all 0.5s;
}
.each-product:hover .each-product-img:after {
  display: block;
  transition:all 0.5s;
  -webkit-transition:all 0.5s;
}
.product-slider .swiper-button-prev{
	left: -80px;
}
.product-slider .swiper-button-next{
	right: -80px;
}
/******************block slider**************/
.block-slider{
	background: #191718;
	padding-bottom: 100px;
}
.each-block{
	position: relative;
}
.each-block:after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.4);
}
.block-heading{
	bottom: 35px;
	padding-left: 35px;
	position: absolute;
	z-index: 1;
}
.block-heading h3{
	color: #fff;
}
/***************footer upper area*************/
.footer-upper-area{
	background:#2c2c2c;
}
.content-wrap p{
	margin: 40px 0;
}
.content-wrap{
	padding: 6% 8%;
}
.left-image img{
	height: 100%;
	object-fit: cover;
}
/*******************footer*****************/
.footer-wrap{
	padding: 75px 85px;
}
.brand{
	margin-top: 30px;
}
.brand img{
	margin-right: 30px;
}
.each-footer-info h4{
	opacity: 0.5;
	margin-bottom: 30px;
	color:#fff;
}
.each-footer-info p a{
	margin-bottom: 30px;
	display: inline-block;
}
.each-footer-info a{
	color: #8E8E8E;
}
.each-footer-info a:hover{
	color: #fff;
}
.each-footer-info p img{
	width: 20px;
	margin-right: 15px;
}
.each-footer-info p {
    font-size: 15px;
    color: #8E8E8E;
    text-align: left;
}
.footer-social-icon{
	width: 24px;
	margin-right: 20px;
}
.each-footer-info table{
	width: 100%;
}
.each-footer-info td, .each-footer-info li{
	font-family: 'NunitoSansRegular';
	font-size: 16px;
    color: #8E8E8E;
}
.each-footer-info li{
	display: inline-block;
    width: 65%;
    margin-bottom: 15px;
    font-family: 'NunitoSansBold';
}
.each-footer-info li:nth-child(even){
	float: right;
	width: 35%;
}
.each-footer-info{
	padding-left: 15%;
}
.footer-area{
	background-color: #191717;
	color:#8E8E8E;
}
.footer-area .col-lg-3:nth-child(1) .each-footer-info{
	padding-left: 0;
	white-space: nowrap;
}
/*************pop up*************/
.modal-area .modal-dialog {
    max-width: 72%;
    margin: 12% auto 0;
}
.close-img {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-img img {
    width: 18px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.modal-area .modal-content{
    border: 0;
    border-radius: 0;
    background: transparent;
}
.popup-content p{
    margin: 40px 0;
	color:#fff;
}
.popup-content{
    padding: 11% 20% 11% 11%;
	background-color: #2c2c2c;
}
.pop-up-image img{
    display: none;
}
.modal-area .col-lg-5{
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}
.modal-area .col-lg-7{
    -ms-flex: 0 0 62%;
    flex: 0 0 62%;
    max-width: 62%;
}
/*****************for mobile menu*************/
#menu.mm-menu {
    background: #1c1c1c;
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
#menu.mm-menu .mm-navbar a, .mm-menu .mm-navbar&gt;* {
    color: #fff;
}
#menu .mm-listview&gt;li:not(.mm-divider):after{
	background-color: rgba(255,255,255,0.2);
}
.mm-menu .mm-listview&gt;li .mm-next:after, .mm-listview&gt;li .mm-next:before, .mm-menu .mm-btn:before  {
    border-color: rgba(255,255,255,.3);
}
.mm-navbar .mm-btn:first-child {
    padding-left: 30px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
/*******************aanbod dtl*********************/
.aanbod-dtl-slider .col-lg-7{
	-ms-flex: 0 0 54%;
	flex: 0 0 54%;
	max-width: 54%;
}
.aanbod-dtl-slider .col-lg-5{
	-ms-flex: 0 0 46%;
	flex: 0 0 46%;
	max-width: 46%;
}
.gallery-thumbs{
	margin-top: 20px;
}
.thumb-wrap{
	position: relative;
}
.slider-pagination{
	color: #fff;
    margin-top: 20px;
    font-size: 24px;
    font-family: 'NunitoSansRegular';
    text-align: center;
}
.thumb-wrap .swiper-pagination{
	bottom: 0;
    position: relative;
    width: auto;
    display: inline-block;
}
.thumb-wrap .common-arrow{
	top: auto;
	transform: translateY(0);
    bottom: 10px;
}
.thumb-wrap .swiper-button-prev{
	left: 0;
}
.thumb-wrap .swiper-button-next{
	right: 0;
}
.aanbod-dtl-slider{
	padding: 30px 0 60px;
	background: #191717;
}
.detail-content h4{
	opacity: 0.5;
	font-family: 'NunitoSansRegular';
	padding: 30px 0 20px;
	border-bottom: 1px solid rgba(28,28,28,0.5);
}
.detail-content{
	padding-left: 10%;
}
.detail-content .common-btn:hover img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

.detail-content table{
	width: 100%;
	margin-top: 20px;
}
.detail-content td{
	font-family: 'NunitoSansRegular';
	font-size: 18px;
	color: #fff;
	line-height: 45px;
}
.detail-content td:nth-child(1){
	opacity: 0.5;
}
.detail-content .divider{
	border-top: 1px solid #1c1c1c;
	opacity: 0.25;
	margin:30px 0;
}
.price-part{
	max-width: 440px;
    width: 100%;
}
.detail-content .common-btn{
	margin-bottom: 30px;
	max-width: 100%;
    font-size: 16px;
}
.detail-content .common-btn img{
	width: 20px;
	margin-right: 10px;
}
/****************tab*************/
.aanbod-detail-tab-sec{
	background: #2c2c2c;
	padding: 50px 0;
}
.aanbod-detail-tab-sec .tab-content{
	padding-top: 80px;
}
.tab-sec-wrap{
	width: calc(100% + 60px);
	margin-left: -30px;
}
.aanbod-detail-tab-sec .nav-tabs {
	border-bottom: 0px;
}
.aanbod-detail-tab-sec .nav-item {
	border-bottom: none;
    width: 18.9%;
    text-align: center;
    font-size: 28px;
    font-family: 'NunitoSansBold';
    margin-right: 20px;
}
.aanbod-detail-tab-sec .nav-item:last-child{
	margin-right: 0;
}
.aanbod-detail-tab-sec .nav-link {
	border-radius: 50px;
	border: 0;
	color: #1c1c1c;
	background: #fff;
    font-size: 18px;
	/*box-shadow: -2px 0px 10px 0px rgb(0,0,0,0.15);
    -webkit-box-shadow: -2px 0px 10px 0px rgb(0,0,0,0.15);
    -moz-box-shadow: -2px 1px 9px 0px rgba(0,0,0,0.15);*/
}
.aanbod-detail-tab-sec .nav-link.active {
	background: #fff;
	color: #1c1c1c;
}
.aanbod-detail-tab-sec .bullet-panel li:after {
    padding-left: 15px;
    background-size: 7px;
    position: absolute;
    top: 10px;
    left: 0;
    content: '';
    width: 15px;
    height: 15px;
    background-image: url('../images/bullet.svg');
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.aanbod-detail-tab-sec .tab-content ul li {
	font-family: 'NunitoSansRegular';
	font-size: 20px;
	color: #fff;
	padding-bottom: 10px;
	word-break: break-word;
}
.aanbod-detail-tab-sec .bullet-panel ul li {
	padding-left: 20px;
	position:relative;
	font-family: 'NunitoSansRegular';
}
.aanbod-detail-tab-sec .tab-heading h4 {
	color: #fff;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	text-transform: uppercase;
	opacity: 0.5;
	margin-bottom: 30px;
}
.bullet-panel{
	margin-bottom:20px;
}
.kenmerken-tab ul li:nth-child(odd) {
	background-image: url('../images/bullet.svg');
    background-repeat: no-repeat;
    background-position: left top 10px;
    padding-left: 20px;
    background-size: 7px;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.kenmerken-tab ul li {
	width: 49%;
	display: inline-block;
	vertical-align: top;
}
.related-car{
	background:#191717;
}
.related-car .each-product:hover .each-product-img:after{
	display: none;
}
.contact-details-area.aanbod-dtl-form-area{
	padding: 60px 0 20px;
}
/***************aanbod raster**************/
.aanbod-fiiter-sec{
	background:#191717;
	padding: 30px 0 40px;
}
.filter-wrapper{
	padding: 0 30px;
}
.select-area{
	width: calc(100% - 420px);
	padding-right: 30px;
}
.select-area .col-lg-2{
	-ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 20px;
}
.select-style {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background:url(../images/dropdown.svg) transparent no-repeat 92% center / 10px;
    border-radius: 50px;
    height: 49px;
    font-family: 'NunitoSansRegular';
    font-size: 16px;
    border: 2px solid #8e8e8e;
    width: 100%;
    color: #8e8e8e;
    padding: 0px 20px;
}
.select-area .form-control-feedback {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 35px;
}
.select-area .form-control-feedback img {
    width: 18px;
    opacity: 0.5;
    margin-top: -5px;
}
.select-style.search-btn {
    padding: 0 30px 0 50px;
    background: none;
    resize: none;
	color: #8e8e8e;
	line-height: 53px;
}
.search-btn:focus {
	box-shadow: none;
	border: 2px solid #8e8e8e;
	color: #8e8e8e;
}
.search-btn:placeholder {
	color: #8e8e8e;
	opacity: 1;
}
.search-btn:-ms-input-placeholder {
	color: #8e8e8e;
	opacity: 1;
}
.search-btn::placeholder {
	color: #8e8e8e;
	opacity: 1;
}
.aanbod-grid-area {
    width: 420px;
    vertical-align: top;
}
.aanbod-grid-area .common-btn{
	max-width: 100%;
	font-size: 16px;
	height: 49px;
	line-height: 49px;
}
.aanbod-grid-area .col-md-6:last-child .common-btn{
	background: none;
	opacity: 0.5;
	border: 2px solid #8e8e8e;
	color:#8e8e8e;
}
.aanbod-each-filter-grid {
    font-size: 18px;
    color: #8e8e8e;
    font-family: 'NunitoSansRegular';
    border: 2px solid #8e8e8e;
    text-align: center;
    line-height: 51px;
    height: 53px;
    margin-top: 10px;
    opacity: 0.5;
}
.aanbod-each-filter-grid.active {
    opacity: 1;
}
.aanbod-each-filter-grid img {
    width: 25px;
    margin-right: 10px;
    margin-top: -5px;
    display: inline-block;
}
.aanbod-grid-wrap{
	max-width: 240px;
	width: 100%;
	margin-left: auto;
}
/**====product===**/
.product-sec.aanbod-product{
	padding: 0 0 20px;
}
.aanbod-list1 .each-product{
	padding: 0 15px 50px;
}
.aanbod-list1 .aanbod-middle-area.each-product{
	padding-bottom: 0;
}
.aanbod-list1 .col-xl-8{
	padding-bottom: 50px;
}
.aanbod-middle-content{
	padding: 0 10%;
	position: relative;
	z-index: 1;
}
.aanbod-middle-content h3, .aanbod-middle-content p{
	color: #fff;
}
.aanbod-middle-content p{
	margin:30px 0 40px;
}
.aanbod-middle-area{
	position: relative;
}
.aanbod-middle-area:after{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background:#000;
	opacity: 0.4;
}
/*************aanbod lijst************/
.aanbod-list2{
	max-width: 1270px;
	width: 100%;
	margin: auto;
}
.aanbod-list2 .each-product{
	background:#2c2c2c;

}
.aanbod-list2 .product-content{
	padding-right: 10%;
	padding-left: 10%;
}
.aanbod-list2 .product-content h6{
	margin-top: 25px;
}
.aanbod-list2 .each-product{
	margin-bottom: 40px;
}
/******************verkocht**************/
.verkocht-product{
	padding: 140px 0 40px;
}
.verkocht-product .each-product{
	padding-bottom: 40px;
}
.verkocht-product .each-product .each-product-img:after{
	display: none;
}
/**********************diensten listview*************/
.trans-header {
	opacity: 0.9;
}
.diensten-banner-sec {
	position: relative;
	height: 410px;
}
.diensten-banner-sec:after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, 0.28);
}
.diensten-banner-content {
	position: absolute;
	top: 74%;
    transform: translateY(-50%);
	left: 0;
	z-index: 1;
	width: 100%;
}
.diensten-banner-content h2 {
	color: #fff;
	font-family: 'NunitoSansBold';
}
.diensten-list-sec {
	background-color: #191717;
	padding: 85px 0px;
}
.each-diensten-list {
	margin-bottom: 85px;
}
.each-diensten-list .row{
	align-items: center;
}
.diensten-list-text {
	padding: 45px 85px;
	background-color: #2c2c2c;
	height: 100%;
	margin-left: -1px;
}
.diensten-list-text p {
	margin: 40px 0px 30px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-diensten-list:nth-child(even) .diensten-list-text{
	text-align: right;
	margin-left: 0;
}
.each-diensten-list:nth-child(even) .diensten-list-text p {
/*	text-align-last: right;*/
}
.each-diensten-list:nth-last-child(1) {
	margin-bottom: 0px;
}
.diensten-list-img, .diensten-list-img img{
	height: 100%;
}
.diensten-list-img img{
	object-fit: cover;
}
/**************************Diensten dtl*******************/
.inner-pg-header {
	position: relative;
}
.diensten-import-bk-btn-sec {
	padding-top: 20px;
	background-color: #191717;
}
.diensten-import-bk-btn-sec img {
	width: 18px;
	margin-right: 10px;
}
.diensten-import-bk-btn-sec .common-btn {
	max-width: 280px;
	color: #fff;
	background: #191717;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
}
.diensten-import-bk-btn-sec .common-btn:hover {
	background: #000;
	color: #fff;
}
.diensten-import-bk-btn-sec .common-btn:hover img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.diensten-import-top-sec {
	padding: 40px 0px 90px;
	background-color: #191717;
}
.diensten-import-top-right {
	padding: 0px 70px 0px 85px;
}
.diensten-import-top-right p {
	margin-top: 45px;
}
.diensten-import-middle-sec{
	background-color: #191717;
}
.diensten-import-middle-sec h3 {
	margin-bottom: 30px;
	height: 85px;
}
.diensten-import-middle-sec li{
	font-size: 18px;
    color: #fff;
    font-family: 'NunitoSansRegular';
    position: relative;
    padding-left: 12px;
}
.diensten-import-middle-sec li:before{
	position: absolute;
	top: 12px;
	left: 0;
	width: 5px;
	height: 1px;
	background:#fff;
	content: '';
}
.diensten-import-middle-sec table {
  	width: 100%;
}
.diensten-import-middle-sec td {
	vertical-align: top;
	width: 50%;
}
.diensten-import-middle-sec td:nth-child(odd) {
	padding: 0px 136px 0px 30px;
}
.diensten-import-middle-sec td:nth-child(even) {
	padding: 0px 65px 0px 85px;
}
.diensten-import-btm-sec {
	position: relative;
	padding-bottom: 60px;
	background-color: #191717;
}
.each-service-box, .diensten-import-btm-slider-wrapper {
	position: relative;
}
.each-service-box-text {
	position: absolute;
	bottom: 20px;
	left: 30px;
}
.each-service-box-text h4 {
  	color: #fff;
}
.diensten-import-btm-heading{
	margin-bottom: 35px;
	text-align: center;
}
.diensten-import-btm-slider-wrapper .swiper-button-prev {
	left:-80px;
}
.diensten-import-btm-slider-wrapper .swiper-button-next {
	right: -80px;
}
/*****************contact***************/
.map-area {
    height: 58vh;
}
.contact-details-area .col-lg-6:nth-child(odd) .contact-block{
	margin-right: 10px;
}
.contact-details-area .col-lg-6:nth-child(even) .contact-block{
	margin-left: 10px;
}
.contact-details-area {
    padding: 80px 0;
	background-color: #191717;
}
.contact-details-area h3{
	margin-bottom: 40px;
}
.contact-block{
	padding: 70px 100px 70px 80px;
	box-shadow: 5px 8px 13px 2px rgb(0,0,0,0.10);
    -webkit-box-shadow: 5px 8px 13px 2px rgb(0,0,0,0.10);
    -moz-box-shadow: 5px 8px 13px 2px rgba(0,0,0,0.10);
    background: #fff;
}
.contact-block h4{
	opacity: 0.5;
	margin-bottom: 40px;
	color:#1c1c1c;
}
.contact-block p{
	font-size: 15px;
	white-space: nowrap;
}
.contact-block p span{
	float: left;
	margin-bottom: 30px;
}
.contact-block p img{
	width: 18px;
    margin-right: 10px;
}
.contact-block p .pin-image{
	width: 24px;
}
.contact-block p, .contact-block a{
	color: rgba(28,28,28,0.5);
}
.contact-block a:hover{
	color: #1c1c1c;
}
.man-image {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin-left: auto;
}
/*===form===*/
.form-area{
	padding: 30px 70px;
}
.form-styl {
	resize: none;
	background-color: transparent;
	border-radius: 0;
    font-family: 'NunitoSansRegular';
	border:0px;
	border-bottom:2px solid rgba(28,28,28,0.25);
	color: #1c1c1c;
	font-size:16px;
	height: auto;
	padding: 0 0 15px;
}
.form-area .form-group {
	margin-bottom: 30px;
}
.form-styl:focus {
	box-shadow: none;
	border-bottom:2px solid rgba(28,28,28,0.25);
	background-color:transparent;
	color:#1c1c1c;
}
.form-styl:placeholder {
	color: #1c1c1c;
	opacity: 0.5;
}
.form-styl:-ms-input-placeholder {
	color: #1c1c1c;
	opacity: 0.5;
}
.form-styl::placeholder {
	color: #1c1c1c;
	opacity: 0.5;
}
.form-area .common-btn{
	max-width: 200px;
	height: 49px;
	line-height: 49px;
	background: #191718;
	color:#fff;
}
.form-area .common-btn:hover{
	background: transparent;
	color: #191718;
	border-color: #191718;
}
/*====opening time=====**/
.opening-area{
	background:#2c2c2c;
	padding: 80px 0;
	position: relative;
}
.opening-area h3{
	font-family: 'NunitoSansBold';
}
.opening-area table {
    width: 100%;
    font-family: 'NunitoSansRegular';
    font-size: 18px;
    color: #fff;
    margin-top: 40px;
}
.opening-area th {
    font-family: 'NunitoSansBold';
    line-height: 40px;
}
.opening-area td{
	line-height: 30px;
	vertical-align: top;
}
.contact-image {
	position: absolute;
	right: 0;
	height: 100%;
	width: 50%;
	top: 0;
}
.contact-image img{
	display: none;
}
/************vacature-dtl*********/
.vacature-dtl-top-sec {
	padding: 90px 0px 30px;
	background: #191717;
}
.vacature-dtl-top-sec h3 {
	margin-bottom: 30px;
} 
.vacature-dtl-top-sec .col-lg-6:nth-child(odd) .vacature-dtl-content {
	padding-right: 18%;
}
.vacature-dtl-top-sec .col-lg-6:nth-child(even) .vacature-dtl-content{
	padding-left: 18%;
}
.vacature-dtl-content .common-btn {
	margin-top: 35px;
	max-width: 100%;
}
.vacature-dtl-content .common-btn img {
	width: 25px;
	margin-right: 15px;
}
.vacature-dtl-content .common-btn:hover img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.vacature-dtl-content-icon {
	margin-top: 55px;
}
.vacature-dtl-content-icon img {
	width: 50px;
	margin-right: 20px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.vacature-dtl-content-icon ul li {
	color: #fff;
	opacity: 0.5;
	font-size: 24px;
	font-family: 'NunitoSansRegular';
	vertical-align: top;
	display: inline-block;
	margin-bottom: 35px;
}
.vacature-dtl-content-icon ul li:nth-child(odd) {
	width: 30%;
    margin-right: 60px;
}
.vacature-form-area{
	padding-bottom: 30px;
}
/****************vacature-list**********/
.vacatures-desc {
	background-color: #191717;
	padding: 70px 0;
}
.left-box-img img {
	display: none;
}
.vacatures-desc .common-btn img {
	width: 25px;
	margin-right: 15px;
}
.vacatures-desc .each-box {
	margin-bottom: 70px;
	background: #2c2c2c;
}
.vacatures-desc .each-box:last-child{
	margin-bottom: 0;
}
.vacatures-desc .vacature-dtl-content-icon.right-desc-box {
	padding: 50px;
	margin:0;
}
.right-desc-box ul{
	margin: 40px 0 20px;
}
/***************overons page***********/
.overons-top-sec {
	padding: 70px 0px 30px;
	background-color: #191717;
}
.overons-top-right {
	padding-left: 80px;
}
.overons-top-right h3 {
	margin-bottom: 30px;
}
.overons-top-right p{
	margin-bottom: 40px;
}
.member-sec {
	padding-bottom: 45px;
	background-color: #191717;
}
.each-member-text h4 {
	font-family: 'NunitoSansRegular';
	margin: 20px 0px 5px;
}
.each-member-text h6 {
	font-size: 16px;
}
.member-heading {
	margin: 0px 0px 45px 60px;
}
.member-slider {
	position: relative;
	margin: 0px 60px;
}
.member-slider .swiper-button-next {
	right: -60px;
}
.member-slider .swiper-button-prev {
	left: -60px;
}
.counter-sec {
	background-color: #2c2c2c;
	padding: 50px 0px;
}
.each-counter {
	display: flex;
    align-items: center;
    height: 100%;
}
.each-counter h3 {
	color: #fff;
	line-height: 60px;
}
.each-counter h3 span {
	font-family: 'NunitoSansBold';
}
.each-counter img {
	width: 75px;
	margin-right: 40px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.each-counter .star, .each-counter .clock {
	width: 60px;
}
.counter-bottom-sec {
	padding: 75px 0px;
	background-color: #191717;
}
.counter-bottom-sec h3 {
	margin-bottom: 45px;
}
.counter-bottom-left {
	padding: 0px 50px 0px 120px;
}
.counter-bottom-right {
	padding: 0px 120px 0px 50px;
}
.overons-gallery-heading {
	margin-bottom: 40px;
    padding-top: 40px;
}
/*=====overons gallery=====**/
.gal-item {
    overflow: hidden;
}
.gal-item .box {
    height: 100%;
    overflow: hidden;
}
.box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
}
.overons-gallery-sec{
	background-color: #191717;
}
.overons-gallery-sec .col-md-3.gallery-common-block{
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	max-width: 32%;
}
.overons-gallery-sec .col-md-6.gallery-middle-block{
	-ms-flex: 0 0 36%;
	flex: 0 0 36%;
	max-width: 36%;
}
/********counter btm part********/
.counter-bottom-sec table {
	width: 100%;
}
.counter-bottom-sec td {
	width: 50%;
	vertical-align: top;
}
.counter-bottom-sec td:nth-child(odd) {
	padding: 0px 50px 0px 120px;
}
.counter-bottom-sec td:nth-child(even) {
	padding: 0px 120px 0px 50px;
}
/******************Thank u page start*****************/
.thanku-banner .banner-content .white-btn {
	margin: 40px 0 0;
	max-width: 200px;
}
#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:15px;
  text-align: center;
}
#loader_section img{
  width: 100px;
  margin-bottom: 25px;
}
.kenteken_np{
background-image: url(../images/kenteken_plaat/kenteken_plaat.png);
background-repeat: no-repeat;
background-position: 0% 0%;
padding: 7px 0 6px 30px;
}
.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{
	margin-bottom: 30px;
}
.star_icon p{
  /*font-family: 'BentonSansRegular';*/
  font-size: 15px;
  color: #1c1c1c;
  padding-bottom: 6px;
  word-break: break-word;
  margin-bottom: 0;
  font-family: 'NunitoSansRegular';
}
.photo_contnt li img{
  width: 15px;
  margin-left: 5px;
}
.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 &gt; img {
	height: 35px;
	padding-top: 7.5px;
}
.error_background {
  background-color: #121212;
}
.error_top
{
}
.cookie_div{
    position: fixed;
    bottom: 0;
    z-index: 999999;
    width: 100%;
  padding: 0px 0;
}
.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);
}
.cookie_div{
  color:#9c9c9c;
  font-size: 12px;
  /*font-family: 'Calibri';*/
  font-family: 'arial';
}
.cookie_div h4{
  margin-bottom: 15px;
  font-size: 20px;
  font-family: 'Calibri';
}
.light_theme h4{
  color:#2a2a2a;
}
.dark_theme h4{
  color:#c9c9c9;
}
.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';
}
.mm-slideout {
    z-index: unset;
}
.form-1, .form-2, .form-3 {
	display:none;
	margin-top: 30px !important;
	margin: 0 auto 10px;
	background: #fff;
}
.foto_upload, .photo-upload{
	color: rgba(28,28,28,0.5);
}
.acties-left-content p{
	color:#000000;
}
.error_top{
	padding-top: 200px;
}
/*============dropdown============*/
.dropdown-menu {
	padding: 0px;
    border-radius: 0px;
    min-width: 200px;
    margin: 0px;
    padding-top: 20px;
    background-color: transparent;
    border: 0px;
}
.nav-menu li .dropdown-menu a {
	transition: .3s ease;
    color: #fff;
    background: #2c2c2c;
    padding: 12px 15px;
    border-bottom: 1px solid #fff;
    opacity: 1;
}
.nav-menu li .dropdown-menu a:last-child{
	border-bottom: 0;
}
.dropdown:hover&gt;.dropdown-menu {
	display: block;
}
.nav-menu li .dropdown-menu a:focus, .nav-menu li .dropdown-menu a:hover {
    color: #1c1c1c;
    text-decoration: none;
    background-color: #fff;
}


</pre></body></html>