@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'NunitoSansRegular';
    font-size: 14px;
    color: #fff;
    overflow-x: hidden;
}
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/*************side area**********/
.mini-right-nav a{
	display: flex;
}
.mini-right-nav li{
    margin: 0px 0 20px;
    padding: 0;
    width: 60px;
    display: block;
    position: relative;
}
.mini-right-nav li .navtext{
    position: relative;
	display: flex;
	align-content: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #1c1c1c;
	border-radius: 50px;
}
.mini-right-nav span {
    font-family: 'NunitoSansRegular';
    font-size:0px;
    bottom: 0;
    right: 0px;
    line-height: 60px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 0;
	-webkit-transition: 0.50s;
	-moz-transition: 0.50s;
	transition: 0.50s;
	z-index:-1;
}
.mini-right-nav span:after{
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% + 60px);
	border-radius: 50px;
	content: '';
	background-color: #1c1c1c;
	height: 60px;
	-webkit-transition: 0.50s;
	-moz-transition: 0.50s;
	transition: 0.50s;
	z-index: -1; 
	-webkit-box-shadow: -2px 5px 14px 0px rgb(0,0,0,0.15);
    -moz-box-shadow: -2px 5px 14px 0px rgba(0,0,0,0.15);
    box-shadow: -2px 5px 14px 0px rgb(0,0,0,0.15);
}
.mini-right-nav .navtext:hover  span{ 
	width:auto;
	overflow:visible;
	opacity:1;
	padding: 0 80px 0px 0px; 
	border-radius:50px;
	font-size:16px;
}
.mini-right-nav .navtext:hover {
	text-decoration:none;
}
.mini-right-nav .navtext span, .mini-right-nav .navtext span a{
	color:#fff;
}
.mini-right-nav img{
	width: 24px;
    position: relative;
    z-index: 1;
    object-fit: contain;
}
.mini-right-nav{
	position: fixed;
	top: 120px;
	z-index: 9;
	right: 25px;
}
/*****************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>* {
    color: #fff;
}
#menu .mm-listview>li:not(.mm-divider):after{
	background-color: rgba(255,255,255,0.2);
}
/*************header**********/
.desktop-nav{
	padding: 0 30px 0 70px;
}
.desktop-nav.navbar-expand-lg .navbar-nav .nav-link{
	padding:40px;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'NunitoSansBold';
	letter-spacing: 1.2px;
}
.desktop-nav.navbar-expand-lg .navbar-nav .nav-link:hover{
	background:#eeeeee;
}
.workshop-btn .common-btn{
	min-width: 258px;
}
.workshop-btn {
	padding-left: 150px;
}
/**************banner***********/
.banner-area{
	position: relative;
	height: calc(100vh - 101px);
	overflow: hidden;
}
.banner-content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: 100%;
}
.banner-heading, .banner-content-wrap{
	max-width: 580px;
	width: 100%;
	padding: 40px;
}
.banner-heading{
	background:rgba(255,255,255,0.95);
}
.banner-content-wrap{
	background:rgba(255,255,255,0.80);
	margin-top: -1px;
}
.banner-content-wrap .common-btn img{
	width: 20px;
    margin-right: 10px;
}
.banner-content-wrap .common-btn:hover img{
	filter: brightness(1) invert(1);
	-webkit-filter: brightness(1) invert(1);
}
.banner-content-wrap p{
	margin: 0 40px 40px 0;
}
.pagination-wrap{
	position: absolute;
    width: 100%;
    z-index: 2;
    bottom: 20px;
}
.pagination-wrap .container{
	position: relative;
}
.swiper-pagination{
	text-align: left;
	position: static;
}
.pagination-wrap .swiper-pagination-bullet{
	width: auto;
	height: auto;
	background:transparent;
	font-size: 30px;
	color: #fff;
	font-family: 'NunitoSansBold';
	opacity: 0.5;
	margin-right: 20px;
}
.pagination-wrap .swiper-pagination-bullet-active{
	opacity: 1;
	font-size: 48px;
}
.banner-area .common-arrow img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.banner-area .swiper-button-prev{
	left: 40px;
}
.banner-area .swiper-button-next{
	right: 40px;
}
.scroll-button {
  left: 0px;
  bottom: 0px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background:#181818;
  padding: 24px;
  z-index: 2;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.scroll-button img {
  width: 20px;
}
@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{
	padding-top:70px;
	background:#f2f2f2;
	display: inline-block;
}
.sec-heading{
	margin-bottom: 60px;
}
.product-slider{
	position: relative;
}
.product-img{
	position: relative;
}
.product-dtl{
	background:#fff;
	padding: 10px 30px 20px;
}
.product-dtl h6{
	height: 65px;
}
.product-dtl p{
	font-size: 14px;
	color: #717171;
	font-family: 'nunito_sanslight';
	margin-bottom: 25px;
}
.product-btn{
	margin-top: 85px;
}
.product-wrap{
	padding: 0 5%;
}
.product-sec .swiper-button-prev{
	left: -7%;
}
.product-sec .swiper-button-next{
	right: -7%;
}
/*****************middle sec****************/
.middle-wrap{
	max-width: 1260px;
	width: 100%;
	margin: auto;
}
.each-block .txt-btn{
	font-size: 24px;
	font-family: 'NunitoSansBold';
	margin: 20px 0;
}
.each-block .txt-btn img{
	width: 16px;
	filter: brightness(0) invert(0);
	-webkit-filter: brightness(0) invert(0);
}
.each-block .txt-btn:hover img{
	filter: brightness(1) invert(0);
	-webkit-filter: brightness(1) invert(0);
}
.each-block{
	padding: 90px 20px 80px 50px;
	border-left: 2px solid #d0d0d0;
}
.middle-wrap .col-md-4:last-child .each-block{
	border-right: 2px solid #d0d0d0
}
.icon-img {
	height: 60px;
}
.each-block .icon-img img{
	width: 60px;
}
.middle-wrap .col-md-4:last-child .each-block .icon-img img{
	width: 50px;
}
/*************middle sec*************/
.content-wrapper{
	background:#fff;
	padding: 60px 40px 40px;
	max-width: 830px;
	width: 100%;
}
.content-wrapper p{
	margin: 20px 0 50px;
}
.footer-upper-sec{
	padding: 12% 0;
}
/****footer*****/
.footer-sec {
	padding: 80px 0 60px;
	background: #1c1c1c;
}
.footer-wrapper {
	padding: 0 7%;
}
.footer-info-wrap {
	max-width: 700px;
	width: 100%;
	margin-left: auto;
}
.footer-info-wrap h6 {
	margin-bottom: 20px;
	color: #fff;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 15px;
	font-family: 'NunitoSansRegular';
}
.footer-info-wrap p {
	color: #8b8b8b;
	font-size: 15px;
	padding-bottom: 0px;
}
.footer-info-wrap a {
	font-size: 16px;
	font-family: 'NunitoSansRegular';
	color: #8b8b8b;
}
.footer-info-wrap a:hover{
	color: #fff;
}
.footer-info-wrap td {
	padding-right: 30px;
}
.divider {
	border-top: 2px solid #2a2a2a;
    margin: 60px 0;
}
.footer-social img {
	width: 22px;
}
.footer-social li {
	font-size: 14px;
	font-family: 'nunito_sanslight';
	color: #9b9b9b;
	display: inline-block;
	margin-right: 25px;
}
/*************************contact page*******************/
.inner-pg-header .workshop-btn {
	padding-left: 400px;
}
.inner-pg-header .navbar-nav{
	margin-left: 30px !important;
}
/****contact banner****/
.diensten-banner-sec, .contact-banner-sec {
	padding: 6% 0;
	position: relative;
}
.contact-map-sec.diensten-banner-sec .contact-banner-content, .contact-map-sec.diensten-banner-sec .map-time{
	padding: 30px 40px;
}
.contact-banner-content {
	max-width: 570px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 40px;
}
/***contact map****/
.contact-map-sec{
	position: relative;
}
#map_canvas{
	height: 840px;
}
.contact-map-content {
	max-width: 580px;
	width: 100%;
	position: relative;
	z-index: 2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.map-time {
	padding: 35px 40px;
	background-color: rgba(255, 255, 255, 0.5);
}
.map-time h4 {
	margin-bottom: 35px;
}
.map-time h6 {
	font-size: 16px;
	font-family: 'NunitoSansBold';
	color: #1e1e1e;
	line-height: 30px;
}
.map-time h6 span {
	font-family: 'NunitoSansRegular';
}
.map-time table td {
	padding-bottom: 35px;
	vertical-align: top;
}
.map-time table td:nth-child(even) {
	padding-left: 50px;
}
.contact-map-sec .contact-banner-content {
	max-width: 100%;
}
/****contact-info***/
.contact-info-wrapper {
	max-width: 1250px;
	margin: 0 auto;
}
.each-cont-info img {
	width: 40px;
	margin-right: 40px;
}
.each-cont-info h4 span {
	font-family: 'NunitoSansRegular';
	font-size: 16px;
}
.each-cont-info {
	display: flex;
	align-items: center;
	padding: 80px 40px;
	border-right: 1px solid #d6d6d6;
}
.contact-info-sec .col-lg-4:first-child .each-cont-info {
	border-left: 1px solid #d6d6d6;
}

/*****bottom*****/
.contact-btm-sec {
	padding: 110px 0;
}
.contact-btm-sec .content-wrapper {
	padding: 60px 85px 55px;
	background-color: rgba(255,255,255,0.95);
}

/*********************************diensten-list page start****************************************************/
.diensten-banner-sec .map-time {
	background-color: rgba(255, 255, 255, 0.8);
}
.diensten-list-left {
	padding: 130px 50px 130px 0;
	text-align: right;
}
.diensten-list-left ul li {
	font-size: 24px;
	font-family: 'nunito_sanslight';
	color: #1e1e1e;
	margin-bottom: 50px;
	cursor: pointer;
}
.diensten-list-left ul li:hover {
	opacity: 0.6;
} 
.diensten-list-right {
	padding: 0 95px;
	border-left: 1px solid #d6d6d6;
}
.each-diensten-list {
	padding: 100px 0;
	position: relative;
}
.each-diensten-list::after {
	position: absolute;
    bottom: 0;
    left: -95px;
    width: 30%;
    height: 1px;
    background-color: #d6d6d6;
    content: '';
    z-index: -1;
}
.each-diensten-list-text h3 {
	font-size: 24px;
	font-family: 'NunitoSansBold';
	color: #1e1e1e;
	margin-bottom: 30px;
	position: relative;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diensten-list-text h3::after {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*left: -100%;*/
    width: 22px;
    height: 22px;
    content: '';
    background-image: url(../images/dl-arrow.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	display: none;
}
.each-diensten-list:hover .each-diensten-list-text h3::after {
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
    left: 0;
	display: block;
}
.each-diensten-list:hover .each-diensten-list-text h3 {
	padding-left: 40px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-diensten-list-text p {
	font-size: 16px;
	font-family: 'NunitoSansRegular';
	color: #1e1e1e;
	line-height: 26px;
	text-align: justify;
}
.each-diensten-list-img {
	padding-right: 50px;
}
.each-diensten-list-text {
	padding-left: 50px;
}
.each-diensten-list:nth-child(even) .each-diensten-list-img {
	padding-left: 50px;
	padding-right: 0;
}
.each-diensten-list:nth-child(even) .each-diensten-list-text {
	padding-left: 0;
	padding-right: 50px;
	text-align: right;
}
.each-diensten-list:nth-child(even) .each-diensten-list-text p{
	text-align-last: right;
}
.each-diensten-list:nth-child(even):hover .each-diensten-list-text h3 {
	padding-right: 40px;
}
.each-diensten-list:nth-child(even) .each-diensten-list-text h3::after {
	right: -100%;
}
.each-diensten-list:nth-child(even):hover .each-diensten-list-text h3::after {
	right: 0;
	left: auto;
}

/**************************************diensten-dtl page start*****************************************/
.diensten-dtl-top .content-wrapper {
	position: relative;
}
.diensten-dtl-top .content-wrapper .common-btn {
	position: absolute;
	top: 0;
	right: 0;
}
.diensten-dtl-mid-sec {
	position: relative;
}
.diensten-dtl-mid-wrapper {
	max-width: 1435px;
	width: 100%;
	margin: 0 auto;
}
.diensten-dtl-mid-sec table td h3 {
	font-size: 24px;
	color: #1e1e1e;
	font-family: 'NunitoSansBold';
	margin-bottom: 30px;
}
.diensten-dtl-mid-sec table {
	width: 100%;
}
.diensten-dtl-mid-sec table td p {
	color: #1e1e1e;
	font-size: 16px;
	font-family: 'NunitoSansRegular';
	padding-bottom: 30px;
}
.diensten-dtl-mid-sec table td {
	padding: 90px 90px;
	vertical-align: top;
	border-right: 1px solid #d6d6d6;
	border-left: 1px solid #d6d6d6;
	width: 50%;
}
.diensten-dtl-pdf-btn {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.diensten-dtl-pdf-btn .common-btn:hover {
	background-color: #fff;
}
/***contact form****/
.contact-form-sec {
	padding: 105px 0;
	background-color: #f4f4f4;
}
.contact-form-wrap {
	padding: 0px 115px;
}
.contact-form-sec h2 {
	font-size: 36px;
	font-family: 'NunitoSansBold';
	color: #1e1e1e;
	margin-bottom: 70px;
}
.contact-form-sec label {
	margin-bottom: 15px;
	font-size: 16px;
	font-family: 'NunitoSansRegular';
	color: #1e1e1e;
}
.contact-form-sec .form-styl {
	font-size: 16px;
    padding: 34px 20px;
    resize: none;
    background-color: #fff;
    border-radius: 0;
    font-family: 'NunitoSansRegular';
    color: #1e1e1e;
    border: none;
}
.contact-form-sec .common-btn {
	margin-top: 35px;
}
.contact-form-sec textarea {
	padding: 36px 20px !important;
}
.contact-form-sec .form-styl:focus {
	box-shadow: none;
	color: #1e1e1e;
}
/***bottom-sec****/
.diensten-dtl-btm-sec {
	padding: 145px 0 160px;
}
.diensten-dtl-btm-sec .content-block {
	padding: 7% 20% 0 20%;
}
.diensten-dtl-btm-sec .content-block h2 {
	margin-bottom: 70px;
}
.diensten-dtl-btm-sec .content-block ul li {
	font-family: 'NunitoSansRegular';
	font-size: 24px;
	color: #1e1e1e;
	opacity: 0.2;
	margin-bottom: 35px;
}
.diensten-dtl-btm-sec .content-block ul li:last-child {
	margin-bottom: 0;
}
.diensten-dtl-btm-sec .content-block ul li:hover {
	opacity: 1;
}


/**************************************overons page start**********************************************/
/***top sec**/
.overons-top-sec .contact-map-content {
	max-width: 725px;
}

/***member-sec***/
.member-text {
/*	padding-right: 130px;*/
    padding-right: 130px;
	padding-bottom: 50px;
	margin-top: -50px;
}
.member-text h2 {
	margin-bottom: 30px;
}
.member-sec {
	padding: 130px 0 90px;
	background-color: #f4f4f4;
}
.member-dtl {
	background-color: #fff;
	padding: 30px;
}
.member-dtl h6 span {
	font-family: 'NunitoSansRegular';
	color: #1e1e1e;
}
.member-dtl h6 {
	line-height: 30px;
}
.member-slider {
	padding-right: 20px;
}
.member-sec .common-arrow {
	right: -7%;
}
/**overons-counter****/
.overons-counter .icon-img h2 {
	font-family: 'nunito_sanslight';
	color: #1e1e1e;
	font-size: 45px;
}
.overons-counter .icon-img h2 span {
	font-family: 'nunito_sanslight';
	color: #1e1e1e;
	font-size: 45px;
}
/*video-sec**/
.overons-video-sec .content-wrapper {
	position: relative;
}
.overons-video-sec .content-wrapper img {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: invert(1);
	-webkit-filter: invert(1);
    display: none;
}

/********************aanbod-page***************************/
.aanbod-filter-sec {
	padding-bottom: 40px;
}
.aanbod-filter-sec hr{
	margin: 30px 0;
	border:1px solid #f6f6f6;
}
.aanbod-filter-wrap {
	padding: 0 80px;
}
.aanbod-filter-sec .select-style {
    width: 100%;
	border: none;
    border-left: 1px solid #d6d6d6;
    border-radius: 0;
    height: 158px;
    line-height: 158px;
    font-family: 'NunitoSansBold';
    font-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    background: url(../images/down-arrow.svg) #fff no-repeat 90% center/15px;
    color: #1e1e1e;
    padding: 0 40px;
}
.aanbod-filter-sec .col-lg-3:last-child .select-style {
	border-right: 1px solid #d6d6d6;
}

/***aanbod-product****/

.aanbod-filter-wrap {
	padding: 0 80px;
}
.aanbod-product-sec {
	background-color: #f4f4f4;
	padding: 50px 0 100px;
}
.aanbod-product-wrap {
	padding: 0px 90px;
}
.aanbod-product-sec .each-product {
	margin-bottom: 25px;
}

/*************************************verkocht page start***************************************************/
.verkocht-product-sec .each-product h6 {
	margin-bottom: 15px;
}

/******************************************aanbod list page start*********************************************************/
.aanbod-product-list {
	padding: 55px 0 220px;
	background-color: #f4f4f4;
}
.each-product-block {
	margin-bottom: 10px;
}
.product-list-dtl {
	padding: 20px;
	background:#fff;
	height: 100%;
}
.product-list-dtl-heading h6 span{
	display: block;
}
.product-list-dtl-heading .col-lg-7 h6{
	height: 65px;
	overflow: hidden;
}
.product-list-dtl-price {
	margin: 30px 0 20px;
}
.product-list-dtl-price table{
	width: 100%;
}
.product-list-dtl-price table td {
	vertical-align: top;
}
.product-list-dtl-price table td:nth-child(2) {
	padding-left: 30px;
}
.product-list-dtl-price table td:first-child {
	padding-left: 0;
}
.product-list-dtl-price table td:last-child {
	float: right;
}
.product-list-dtl-price table td h6 {
	margin-bottom: 10px;
}
.product-list-dtl-gal {
	margin-bottom: 28px;
}
.aanbod-list-middle {
	margin-bottom: 10px;
}
.aanbod-list-middle-left,
.aanbod-list-middle-right {
	background-color: #fff;
	padding: 150px 0;
}
.aanbod-list-middle .each-block {
	border: 0;
	padding: 0;
	max-width: 325px;
	width: 100%;
	margin: 0 auto;
}
.aanbod-product-list .aanbod-product-wrap {
	padding: 0 75px;
}

/*****************************************aanbod-dtl page start************************************************/
.aanbod-dtl-bk-btn {
	position: relative;
}
.aanbod-dtl-bk-btn .common-btn {
	position: absolute;
	bottom: -65px;
	right: 33%;
	z-index: 50;
	width: 100%;
}
.aanbod-dtl-bk-btn .common-btn:hover {
	background-color: #fff;
}
.aanbod-details-slider-area .common-arrow {
	height: 55px;
	width: 55px;
	background-color: #fff;
    line-height: 55px;
    padding-left: 18px;
}
.aanbod-details-slider-area .swiper-button-next {
	right: 0;
}
.aanbod-details-slider-area .swiper-button-prev {
	left: 0;
}
/***aanbod-dtl-info sec***/
.aanbod-dtl-info-sec{

}
.aanbod-dtl-info-left {
	background-color: #f4f4f4;
}
.aanbod-dtl-info-heading {
	padding: 40px 10%;
}
.aanbod-dtl-info-heading h4 {
	font-family: 'NunitoSansBold';
	color: #9d9d9d;
    font-size: 20px;
}
.aanbod-dtl-info-divider {
	border-top: 1px solid #e7e7e7;
	margin: 0;
}
.aanbod-dtl-info-dtl {
	padding: 80px 10% 100px;
}
.aanbod-dtl-info-dtl table tr {
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
}
.aanbod-dtl-info-dtl table tr td {
	font-size: 15px;
    font-family: 'NunitoSansRegular';
    color: #1c1c1c;
    padding-top: 15px;
    padding-bottom: 15px;
}
.aanbod-dtl-info-dtl table tr td:nth-child(odd)  {
	color: #b6b6b6;
}
.aanbod-dtl-info-dtl table tr td:nth-child(even) {
	padding-left: 60px;
}
.aanbod-dtl-info-dtl table tr td:nth-child(3) {
	padding-left: 170px;
}
.aanbod-dtl-info-dtl table {
	margin-top: 40px;
}
.aanbod-dtl-info-red-btn-each {
	background-color: #bd352a;
}
.aanbod-dtl-info-red-btn-each:first-child button {
	border-right: 1px solid #fff;
}
.aanbod-dtl-info-red-btn-each button {
	background-color: #952a21;
	height: 100px;
	line-height: 100px;
	width: 100%;
	font-size: 20px;
	color: #fff;
	border: none;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
	cursor: pointer;
}
.aanbod-dtl-info-red-btn-each button:hover {
	background-color: #1c1c1c;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.aanbod-dtl-info-red-btn-each img {
	width: 15px;
    margin-right: 10px;
    margin-top: -3px;
	filter: invert(1);
}
.aanbod-dtl-info-red-btn-each button img{
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.aanbod-dtl-info-right-btw h4 span {
	color: #9d9d9d;
}
.big-white-btn{
	color: #1c1c1c;
	font-size: 25px;
	font-family: 'NunitoSansRegular';
}
.aanbod-dtl-info-right-btw-each {
	padding: 95px 55px;
}
.aanbod-dtl-info-right-btw .col-md-6:last-child .aanbod-dtl-info-right-btw-each {
	padding-left: 20px;
	padding-right: 0;
	word-break: break-word;
}
.aanbod-dtl-info-right-btw .col-md-6:last-child .aanbod-dtl-info-right-btw-each a:hover {
	color: #bd352a;
}
.aanbod-dtl-info-right hr{
	border-top: 1px solid #e7e7e7;
}
.aanbod-dtl-price{
    font-family: 'NunitoSansBold';
    color: #1c1c1c;
    letter-spacing: 1.4px;
   /* position: absolute;
    right: -655px;*/
    text-align: right;
    top: 0px;
    font-size: 20px;
}
/***tab-sec*****/
.aanbod-dtl-tab-sec {
	background-color: #f4f4f4;
	padding: 10px 0 50px 0;
}
.each-tab-content {
	padding: 90px 0;
	border-bottom: 1px solid #d4d4d4;
}
.each-tab-content h2, .kenmerken-tab-area h2{
	margin-bottom: 60px;
}
.kenmerken-tab ul li {
	display: inline-block;
    vertical-align: top;
    font-family: 'NunitoSansRegular';
    font-size: 16px;
    padding-bottom: 10px;
    color: #1c1c1c;
    width: 48%;
	word-break: break-word;
}
.kenmerken-tab ul li:nth-child(odd) {
	background-image: url(../images/bullet-black.svg);
    background-repeat: no-repeat;
    background-position: left top 6px;
    padding-left: 12px;
    background-size: 6px;
}
.Kenmerken-tab-block h2 {
	margin-bottom: 30px;
}
.tab_hedaing h6 {
	font-size: 22px;
	border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
}
.bullet-panel ul li {
    padding-left: 20px;
    position: relative;
    font-family: 'NunitoSansRegular';
    font-size: 16px;
    padding-bottom: 10px;
	color: #1c1c1c;
}
.bullet-panel li:after {
    padding-left: 15px;
    background-size: 7px;
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(../images/bullet-black.svg);
    background-repeat: no-repeat;
}
.tab_hedaing {
	padding-bottom: 20px;
}
.bullet-panel {
	margin-bottom: 20px;
}
.tab-ifame {
	max-width: 808px;
	width: 100%;
	height: 575px;
	background-color: #fff;
	position: relative;
}
.tab-ifame h4 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.each-tab-content:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.each-onderhoud-block {
	display: flex;
	margin-bottom: 20px;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bdbdbd;
    font-size: 16px;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #1c1c1c;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block h5 {
	color: #1c1c1c;
	margin: 10px 0px 30px;
}
.left-bg-block h6 {
	line-height: 30px;
}
/**aanbod-dtl form***/
.aanbod-dtl-contact-form {
	background-color: #fff;
}
.aanbod-dtl-contact-form .form-styl {
	background-color: #f4f4f4;
}
.aanbod-dtl-contact-form .contact-form-wrap {
	padding: 0;
}
.gallery-img, .thums-img, .each-aanbod-dtl-gal{
	overflow: hidden;
}
.gallery-img img, .thums-img img, .each-aanbod-dtl-gal img{
	margin-top: -5%;
	margin-bottom: -5%;
}
.aanbod-details-slider-area{
	display: inline-block;
}
/***************************/
/* 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;
}

/*********tab**************/
.kenteken_np{
    background-image: url(../images/kenteken_plaat/kenteken_plaat.png);
    background-repeat: no-repeat;
    background-position: 0% 0%;
    padding: 4px 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 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;
}

/* Cookie */
.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;
}

a.privacy_text {
    color: #9b9b9b;
}

.car-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.privacy_sec {
    color: #000000;
}

.banner-sec.inner-banner-sec {
    margin-bottom: 20px;
}

.aanbod-grid-wrap{
	max-width: 240px;
	width: 100%;
	margin-left: auto;
}

.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.7;
}
.aanbod-each-filter-grid.active {
    opacity: 2;
}
.aanbod-each-filter-grid img {
    width: 25px;
    margin-right: 10px;
    margin-top: -5px;
    display: inline-block;
}

.reset-btn
{
	float: right;
	color: #1c1c1c;
}

.form-1, .form-2{
    display:none;
    padding: 30px 15px 0;
    width: 100%;
}

.big-white-btn.financieren {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.contact-info-sec .form-styl {
	resize: none;
	background-color: transparent;
	border-radius: 0;
    font-family: 'NunitoSansRegular';
	border:2px solid #f6f6f6;
	color: #1c1c1c;
	font-size:16px;
	height: auto;
	padding:15px;
}
.contact-info-sec .form-styl:focus {
	box-shadow: none;
	border:2px solid #f6f6f6;
	background-color:transparent;
	color:#1c1c1c;
}
.contact-info-sec .form-styl:placeholder {
	color: #1c1c1c;
}
.contact-info-sec .form-styl:-ms-input-placeholder {
	color: #1c1c1c;
	opacity: 1;
}
.contact-info-sec .form-styl::placeholder {
	color: #1c1c1c;
	opacity: 1;
}
.diensten-banner-sec .contact-map-content{
	position: relative;
	top: 0;
	transform: translateY(0);
}
#autotelex_step3, #autotelex_step2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/** Annbod middle section **/
.aanbod-middle-content{
	padding: 0 10%;
	position: relative;
	z-index: 1;
}
.aanbod-list1 .col-xl-8{
	margin-bottom: 25px;
}
.aanbod-middle-content p{
	margin: 25px 0 40px;
	text-align: justify;
}
.aanbod-middle-content h3, .aanbod-middle-content p{
	color: #fff;
}
.aanbod-middle-content .common-btn {
    border-color:#fff;
    background: #fff;
    color: #1c1c1c;
}
.aanbod-middle-content .common-btn:hover{
    background:transparent;
    color: #fff;
}
.modal-area .modal-dialog {
    max-width: 66%;
    margin: 10% auto 0;
}
.modal-area .modal {
    background-color: rgba(255, 255, 255, 0.5);
}
.modal-area .close-img {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 1;
}
.modal-area .modal-content {
    border: 0;
    border-radius: 0px;
    position: relative;
}
.modal-area .popup-content p{
    margin-top: 40px;
    font-size: 15px;
    font-family: 'NunitoSansRegular';
    color: #000000;
}
.modal-area .popup-content {
    padding: 10% 9%;
    position: relative;
    background-color: #fff;
    width: 100%;
}
.modal-area .pop-up-image img{
    height: 100%;
    object-fit: cover;
}
.modal-area .popup-content h2 {
    font-family: 'NunitoSansBold';
    color: #000000;
	font-size: 27px;
}
.voorraadwekker_widget_section{
	padding-bottom: 20px;
}
.whatsapp_btn .navtext{
	background: #25D366 !important;
}
.whatsapp_btn .navtext span::after{
	background: #25D366;
}