@import "fonts.css";
@import "common-class.css";
body {
	padding: 0px;
	margin: 0px;
	font-family: 'WorkSansRegular';
    font-size: 16px;
    color: #fff;
}
#page{
	overflow: hidden;
	position: relative;
}
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/*****************for mobile menu*************/
#menu.mm-menu {
    background: #132637;
    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);
}
/*************side area**********/
.mini-right-nav li{
    margin: 0 0 2px;
    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: #005cb1;
	border-radius: 6px 0 0 6px;
}
.mini-right-nav li.whtasapp-nav a{
  background-color: #005cb1;
}
.mini-right-nav span {
    font-family: 'WorkSansRegular';
    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: 6px 0 0 6px;
	content: '';
	background-color: #005cb1;
	height: 60px;
	-webkit-transition: 0.50s;
	-moz-transition: 0.50s;
	transition: 0.50s;
	z-index: -1; 
}
.mini-right-nav li.whtasapp-nav span:after{
  background-color: #005cb1;
}
.mini-right-nav .navtext:hover span{ 
	width:auto;
	overflow:visible;
	opacity:1;
	padding: 0 85px 0px 0px; 
	border-radius: 6px 0 0 6px;
	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: 20px;
	position: relative;
	z-index: 1;
}
.mini-right-nav{
	position: fixed;
	top: 39%;
	z-index: 999;
	right: 0px;
}
/*****************************popup start*****************************/
.modal-area .modal-dialog {
    max-width: 65%;
    margin: 10% auto 0;
}
.modal-area .modal {
	background-color: rgba(18, 18, 18, 0.6);
}
.modal-area .close-img {
    position: absolute;
    top: 50px;
    left: 50px;
    cursor: pointer;
    z-index: 9;
}
.modal-area .modal-content {
    border: 0;
	border-radius: 10px;
	position: relative;
}
.popup-content p{
    margin: 25px 0 0;
	font-size: 16px;
	font-family: 'WorkSansRegular';
	color: #0f232d;
	letter-spacing: 0.2px;
}
.popup-content { 
    padding: 10% 18%;
}
.modal-area .pop-up-image img{
   height: 100%;
   object-fit: cover;
   border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;
}
/*************header**********/
.header-area{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
	padding: 40px 0;
}
.desktop-nav, .desktop-nav.navbar-expand-lg .navbar-nav .nav-link{
	padding: 0;
	color: #fff;
    font-family: 'ProximaNovaSemibold' !important;
}
.desktop-nav .nav-item {
	padding-left: 50px;
	font-size: 20px;
	font-family: 'WorkSansBold';
	letter-spacing: 0.5px;
}
.menu-bar {
    width: 22px;
    margin-left: 30px;
    margin-top: 3px;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #fff;
    content: '';
    height: 2px;
    margin: 4px 0;
}
.menu-icon .menu-bar div {
    width: 15px;
}
.menu-icon.active .menu-bar:before {
    transform: translateY(8px) rotate(135deg);
}
.menu-icon.active .menu-bar div {
    transform: scale(0);
}
.menu-icon.active .menu-bar:after {
    transform: translateY(-4px) rotate(-135deg);
}
/****menu-items******/
.menu-items{
	position: absolute;
    top: 120px;
    width: 100%;
    max-width: 260px;
    background: #2a3a49;
    right: -100%;
    z-index: 99;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-items.active {
	right: 0;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-items ul {
    padding: 40px 0;
}
.menu-items li a {
    font-family: 'ProximaNovaRegular' !important;
    font-size: 16px;
    color: #fff;
    display: block;
    width: 100%;
    padding: 14px 30px;
    letter-spacing: 0.5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-items li.active a, .menu-items li a:hover {
    background: #fff;
    color: #192024;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    opacity: 1;
}
.menu-items li a:hover:after{
	opacity: 1;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-icon.active img{
	transform: rotate(45deg);
}
/************banner***************/
.banner-sec {
	position: relative;
}
.banner-content {
	position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    bottom: 0;
}
.content-wrap{
	background:rgba(19, 38, 55, 0.8);
    padding: 40px 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    max-width: 800px;
    width: 100%;
}
/**************product***********/
.product-sec{
	padding: 80px 0 100px;
	background: #f7f7f7;
}
.sec-heading{
	margin-bottom: 60px;
}
.each-product {
	background: #fff;
	border-radius: 10px;
}
.product-heading{
	padding: 23px 10px;
}
.price {
	background: #005cb1;
	height: 130px;
	width: 130px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -65px;
	text-align: center;
}

.price-row{
    background: #005cb1;
    padding-top: 4px;
    padding-bottom: 10px;
    display: flex;
    padding-right: 30px;
    padding-left: 30px;
    display: flex;
    align-items: flex-end;
}

.price-row-a{
    background: #005cb1;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
/*    padding-right: 20px;*/
    padding-left: 20px;
    flex-wrap: nowrap;
    align-items: flex-end;
}
.price-row-c{
    background: #005cb1;
    padding-top: 4px;
    padding-bottom: 10px;
    display: flex;
    padding-right: 20px;
    padding-left: 20px;
}

.m-top-7{
    margin-top: 7px;
}

.m-top-9{
    margin-top: 9px; 
}
.m-top-15{
    margin-top: 15px;
}
.h5-aanbod{
    color: #fff;
    margin-top: 2px;
    font-size: 20px;
}
.white{
    color: #fff;
}
.price h5{
	color: #fff;
	line-height: 24px;
}
.price h5 span, .product-detail .text-right h5 {
	font-size: 15px;
	font-family: 'WorkSansLight';
	display: block;
}
.product-detail{
/*	padding: 0px 15px 40px;*/
	padding: 0px 0px 40px; 
}
.product-detail .text-right h5{
/*	color: #ababab;*/
	color: #fff;
}
.product-info h5{
	font-size: 15px;
	margin: 30px 0;
}
.product-info table{
	width: 100%;
}
.product-info td {
	font-size: 15px;
	font-family: 'ProximaNovaRegular';
	color: #ababab;
	text-align: center;
}
.product-info td img {
	width: 20px;
    margin-right: 8px;
    vertical-align: top;
}
.product-info button {
	font-size: 15px;
    font-family: 'ProximaNovaRegular';
    color: #005dab;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
    background: transparent;
    border:0;
    padding: 0;
}
.product-info button img {
	width: 10px;
    margin-top: -4px;
    margin-left: 12px;
}
/***********counter************/
.counter-sec {
	padding: 100px 0 70px;
}
.each-counter h4 {
	font-family: 'WorkSansSemiBold';
	color: #005dab;
	margin-bottom: 15px;
}
.each-counter h5 {
	font-family: 'WorkSansRegular';
}
.icon {
	height: 80px;
}
.icon img {
	width: 60px;
}
.counter-sec .col-md-4:first-child .icon img {
	width: 100px;
}
/**************footer upper************/
.footer-upper-sec{
	padding: 80px 0 100px;
	background: #f7f7f7;
	border-bottom: 1px solid #d2d2d2;
}
.upper-content{
	/*position: absolute;
	bottom: 100px;
	left: 0;
	width: 100%;*/
	padding: 26% 13% 10%;
	background: rgba(10, 25, 39, 0.50);
	height: 100%;
}
.upper-content h2{
	margin-bottom: 20px;
}
.block-image{
	/*background-size: 0;*/
	position: relative;
}
.upper-content h3, .upper-content p{
	color: #fff;
}
.upper-content p{
	margin: 40px 0 50px;
    font-size: 16px;
    line-height: 34px;
}
/***************footer************/
.footer-sec {
	padding: 90px 0 70px;
	background: #132637;
}
.footer-logo{
	padding-top: 60px;
}
.footer-info-wrap{
	max-width: 980px;
	width: 100%;
	/* padding-right: 60px; */
	padding-left: 60px;
	margin-left: auto;
}
.footer-info h4{
	font-family: 'WorkSansLight';
	color: #fff;
	margin-bottom: 70px;
}
.footer-info p, .footer-info li, .footer-info td{
	font-family: 'WorkSansLight';
    font-size: 15px;
    line-height: 30px;
}
.footer-info li{
	/* margin-bottom: 30px; */
}
.footer-info p, .footer-info a{
	/* color: #a8a8a8; */
	color: #fff;
}
.footer-info a:hover {
	color: #fff;
}
.social-icon a{
	display: inline-block;
	margin-right: 30px;
}
.social-icon a img {
	width: 30px;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.social-icon{
	margin-top: 60px;
}
.footer-menu {
	background: #132637;
	padding: 30px 0;
}
.footer-menu li {
	display: inline-block;
	padding-right: 75px;
	font-family: 'WorkSansBold';
	font-size: 20px;
	letter-spacing: 0.5px;
}
.footer-menu li a {
	color: #fff;
}
.footer-menu li a:hover {
	opacity: 0.7;
}


/**************************************contact page start******************************************/
/****inner-banner*******/
.inner-banner-content {
	text-align: center;
	/*padding: 122px 0;*/
	padding: 6% 0;
}
.inner-banner-content h3 {
	font-family: 'WorkSansRegular';
	color: #fff;
}
/****contact-form*****/
.contact-form-sec {
	background-color: #f7f7f7;
	padding: 102px 0 147px;
}
.contact-form-wrapper {
	padding: 0 55px 0 35px;
}
.form-group {
	margin-bottom: 10px;
}
.form-styl {
	resize: none;
    background-color: #fff;
    border-radius: 0;
    font-family: 'work_sanslight_italic';
    border: 0;
	color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    padding: 0 50px;
	border-radius: 10px;
	height: 58px;
	line-height: 58px;
	font-style: italic;
}
textarea.form-styl {
	padding-top: 20px;
	padding-bottom: 20px;
	height: auto;
}
.form-styl::placeholder {
	color: rgba(0, 0, 0, 0.5);
}
.form-styl::-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
}
.form-styl:-moz-placeholder {
	color: rgba(0, 0, 0, 0.5);
}
.form-styl:focus {
	box-shadow: none;
	color: rgba(0, 0, 0, 0.5);
}
.contact-form {
	padding-right: 100px;
}
.contact-form .common-btn {
	margin-top: 28px;
}
.contact-form h3 {
	margin-bottom: 45px;
}
.contact-info {
/*	font-family: 'WorkSansRegular';*/
	font-family: 'ProximaNovaThin';
	color: #0f232d;
	font-size: 20px;
	padding-left: 80px;
}
.contact-info a {
	font-family: 'WorkSansRegular';
	color: #0f232d;
	font-size: 20px;
	line-height: 40px;
}
.contact-info a:hover {
	opacity: 0.7;
}
.contact-info span img {
	width: 35px;
	margin-top: 5px;
}
.contact-info span {
	margin-right: 35px;
	float: left;
}
.contact-info h6 {
	font-family: 'WorkSansBold';
	color: #0f232d;
	font-size: 20px;
	margin: 0 0 40px 70px;
}
.contact-info table {
	width: 100%;
	margin-left: 70px;
}
.contact-info table td {
	font-family: 'ProximaNovaRegular';
	/* color: #0f232d; */
	color: #ffffff;
	font-size: 20px;
}
/********map***********/
.contact-map-inner {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-right: 28px;
	height: 420px;
}
.contact-map-img {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	margin-left: 28px;
	height: 100%;
}
.contact-map-img img{
	height: 100%;
	object-fit: cover;
}
.contact-map-sec {
	padding: 56px 0;
	border-bottom: 1px solid #d2d2d2;
}
img.contact-page-right-img {
    height: 250px;
/*    margin-bottom: 180px;*/
    margin-bottom: 40px;
}
.contact-map-sec .contact-info table{
	width: auto;
}
.contact-map-sec .contact-info table td{
	padding-right: 35px;
}
.contact-map-sec .contact-info span img{
	margin-top: -4px;
}
.contact-map-sec .contact-info{
	padding-left: 15%;
	padding-top: 100px;
	background-color: #005cb1;
    padding-bottom: 60px;
    margin-top: 20px;
    margin-right: 25px;
    border-top-right-radius: 10px;
  	border-bottom-right-radius: 10px;
}
/**************************************diensten page start******************************************/
.diensten-list-sec {
	padding-top: 54px;
	border-bottom: 1px solid #d2d2d2;
}
.diensten-list-sec .each-listview .listview-img img {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.diensten-list-sec .each-listview {
	margin-bottom: 54px;
}
.txt-btn {
	font-size: 20px;
    color: #0f232d;
    font-family: 'WorkSansSemiBold';
    display: inline-block;
}
.txt-btn span {
	width: 55px;
	height: 55px;
	border-radius: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	align-items: center;
	justify-content: center;
	display: inline-flex;
	border: 1px solid #0f232d;
	background-color: #0f232d;
	margin-left: 25px;
}
.txt-btn span img {
	width: 15px;
}
.txt-btn:hover span {
	background-color: transparent;
	border-color: #000;
}
.txt-btn:hover span img {
	filter: brightness(1) invert(1);
	-webkit-filter: brightness(1) invert(1);
}
.listview-text-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.listview-text-wrapper a {
    max-width: 260px;
}
.listview-text {
	padding: 0 14%;
	display: table;
	width: 100%;
	height: 100%;
}
.listview-text p {
	margin: 35px 0 60px;
	display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
.listview-img {
	padding-right: 40px;
}
*/
.diensten-list-sec .each-listview:nth-child(even) .col-lg-6:nth-child(even) .listview-text {
	background-color: #0f232d;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.diensten-list-sec .each-listview:nth-child(even) .listview-text h5,
.diensten-list-sec .each-listview:nth-child(even) .listview-text p,
.diensten-list-sec .each-listview:nth-child(even) .listview-text .txt-btn {
	color: #fff;
}
.diensten-list-sec .each-listview:nth-child(even) .txt-btn span {
	border-color: #fff;
	background-color: #fff;
}
.diensten-list-sec .each-listview:nth-child(even) .txt-btn span img {
	filter: brightness(1) invert(1);
	-webkit-filter: brightness(1) invert(1);
}
.diensten-list-sec .each-listview:nth-child(even) .txt-btn:hover span {
	background-color: transparent;
}
.diensten-list-sec .each-listview:nth-child(even) .txt-btn:hover span img {
	filter: brightness(1) invert(0);
	-webkit-filter: brightness(1) invert(0);
}
.diensten-list-sec .each-listview:nth-child(even) .listview-img {
	padding-right: 0;
	padding-left: 40px;
}
.diensten-list-sec .each-listview:nth-child(even) .listview-img img {
	border: 10px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/**************************************diensten-dtl page start******************************************/
.diensten-dtl-bk-btn {
	position: relative;
}
.diensten-dtl-bk-btn .common-btn {
	position: absolute;
	top: 50px;
	right: 7%;
	z-index: 1;
}
.diensten-dtl-top-sec p {
	overflow: auto;
	display: block;
}
.diensten-dtl-mid-text-content {
	padding: 28% 13%;
}
.diensten-dtl-mid-text-content h5 {
	/*font-size: 20px;
    color: #fff;
    font-family: 'WorkSansBold';*/
	color: #fff;
	margin-bottom: 25px;
}
.diensten-dtl-mid-text-content p {
	font-size: 16px;
    color: #fff;
    font-family: 'WorkSansRegular';
}
.diensten-dtl-mid-img {
	height: 100%;
}
.diensten-dtl-contact-sec {
	border-bottom: 1px solid #d2d2d2;
}
.diensten-dtl-contact-sec .contact-dtl {
	padding-left: 35px;
}

/**************************************overons page start******************************************/
.overons-top-sec p {
	overflow: auto;
	display: block;
}
.overons-top-sec .listview-img {
	padding-right: 0;
	padding-left: 25px;
}
.overons-top-sec .listview-img img {
	border: 10px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.overons-top-right-text {
	padding: 9% 12% 10%;
	background-color: #f7f7f7;
	margin: 50px 0 0 25px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.overons-top-right-text p {
	margin-top: 35px;
}
.overons-counter-sec {
	background-color: #f7f7f7;
	padding: 122px 0;
}
.overons-top-sec {
	border-bottom: 0;
}
.overons-content-sec .upper-content h5{
	color: #fff;
}
.overons-content-sec .upper-content p{
	margin-top: 20px;
}
.overons-content-sec .block-image img{
	height: 100%;
	object-fit: cover;
}
.overons-content-sec{
	border-bottom: 0;
	background: #fff;
	padding: 8px 0;
}
.overons-content-sec .upper-content{
	padding-top: 18%;
    padding-bottom: 12%;
    background: transparent;
}
.tick-area ul li {
	font-family: 'WorkSansBold';
    font-size: 20px;
    display: inline-block;
    width: 49%;
    position: relative;
    vertical-align: top;
    padding-left: 50px;
    margin-bottom: 45px;
}
.tick-area ul li:before {
    position: absolute;
    left: 0px;
    top:60%;
    transform: translateY(-50%);
    background-image: url(../images/tick.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    content: '';
    width: 30px;
    height: 30px;
}
/**************************************bedankt page start******************************************/
.bedankt-banner-sec {
	position: relative;
}
.bedankt-banner-sec::after {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(25, 32, 36, 0.3);
}
.bedankt-banner-sec .banner-content {
	position: absolute;
	bottom: 120px;
}
.bedankt-banner-sec .banner-content h2 {
	/*font-size: 61px;
    color: #fff;
    font-family: 'WorkSansBold';*/
	margin-bottom: 55px;
}
.bedankt-banner-sec .banner-content .common-btn {
	background-color: #fff;
	color: #0f232d;
	border-color: #fff;
}
.bedankt-banner-sec .banner-content .common-btn:hover {
	background-color: #0f232d;
	color: #fff;
	border-color: #0f232d;
}

/**************************************aanbod page start******************************************/
.aanbod-filter-sec {
	background-color: #f7f7f7;
	padding-bottom: 50px;
}
.aanbod-filter-wrapper {
	padding: 45px 30px 40px;
	margin: 0 11%;
	background-color: #fff;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.aanbod-filter-sec  .select-style {
	border-radius: 50px;
	border: 2px solid #005cb1;
	width: 100%;
	height: 55px;
	line-height: 53px;
	font-family: 'WorkSansBold';
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	background: url(../images/down-arrow-white.png) #fff no-repeat 90% center/12px;
	color: #fff;
	padding: 0 30px;
	text-align-last: center;
	background-color: #005cb1;
}
.aanbod-filter-sec .aanbod-each-filter-grid {
	font-size: 16px;
    color: #000000;
    font-family: 'quasimodalight';
    text-align: center;
    line-height: 48px;
    height: 50px;
    opacity: 0.5;
	cursor: pointer;
	margin-left: 5px;
}
.aanbod-filter-sec .aanbod-each-filter-grid.active {
	opacity: 1;
}
.aanbod-filter-sec .aanbod-each-filter-grid img {
	width: 26px;
	margin-right: 10px;
	margin-top: -5px;
}
.filter-grid {
	max-width: 206px;
	margin-left: auto;
}
.aanbod-filter-sec .col-lg-6 {
	-ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
}
.aanbod-filter-sec .col-lg-3 {
	-ms-flex: 0 0 31%;
    flex: 0 0 31%;
    max-width: 31%;
}
/****aanbod-btm-banner***/
.aanbod-btm-banner-sec {
	padding-bottom: 90px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #d2d2d2;
}
.aanbod-btm-banner-text {
	padding: 8% 11% 20%;
}
.aanbod-btm-banner-text p {
	font-size: 16px;
    color: #132637;
    font-family: 'WorkSansLight';
	margin-bottom: 75px;
}

/**************************************aanbod-dtl page start******************************************/
.dtl-slider .swiper-button-prev{
	left: 15px;
}
.dtl-slider .swiper-button-next{
	right: 15px;
}
.aanbod-dtl-product.aanbod-product-sec .each-product{
	margin-bottom: 0;
}
.aanbod-dtl-header {
	background-color: #0f232d;
	position: relative;
}
.aanbod-dtl-top-sec {
	padding: 50px 0;
}
.aanbod-dtl-top-sec h2 {
	font-size: 26px;
    color: #10232d;
    font-family: 'WorkSansBold';
	display: inline-block;
}
.aanbod-dtl-top-sec h4 {
	font-size: 20px;
    color: #10232d;
    font-family: 'WorkSansSemiBold';
	display: inline-block;
	margin-left: 40px;
	vertical-align: text-bottom;
	opacity: 0.7;
	text-transform: uppercase;
}

.row.no-gutters.align-items-center.form-right-top {
    margin-top: 115px;
}
img.contact-right-img {
    height: 175px;
    margin-bottom: 35px;
}
/*****gallery*****/
.aanbod-dtl-gal {
	margin: 20px 0 50px;
}
.aanbod-dtl-each-gal {
	margin-right: 20px;
	height: 100%;
}
.aanbod-dtl-each-gal img {
	height: 100%;
	object-fit: cover;
}
.aanbod-dtl-gal .col-4 {
	margin-bottom: 20px;
}
.aanbod-dtl-gal .col-4:last-child  .aanbod-dtl-each-gal {
	margin-right: 0;
}
.aanbod-dtl-gal .common-btn {
	background-color: transparent;
	color: #142636;
	text-align: center;
	margin-top: 25px;
}
.aanbod-dtl-gal .common-btn:hover {
	background-color: #142636;
	color: #fff;
}
.aanbod-dtl-gal .aanbod-dtl-more-gal {
	display: none;
}
/****info***/
.aanbod-dtl-info-sec{
/*	background: #132636;*/
	background: #005cb1;
}
.aanbod-dtl-info-btm {
	/*border-top: 2px solid #f2f2f2;
	border-bottom: 2px solid #f2f2f2;*/
	padding: 50px 0;
}
.aanbod-dtl-info-sec table {
	width: 96%;
}
.aanbod-dtl-info-sec table tr th {
	padding-left: 220px;
	vertical-align: top;
	font-size: 18px;
	font-family: 'WorkSansLight';
	/*color: rgba(16, 35, 45, 0.7);*/
	color: #fff;
}
.aanbod-dtl-info-sec table tr td {
	padding-left: 220px;
	vertical-align: top;
	font-size: 26px;
	font-family: 'WorkSansRegular';
	/*color: #142636;*/
	color: #fff;
}
.aanbod-dtl-info-sec table tr th:first-child {
	padding-left: 0;
}
.aanbod-dtl-info-sec table tr td:first-child {
	padding-left: 0;
}
.aanbod-dtl-info-btm-price {
	text-align: right;
}
.aanbod-dtl-info-btm-price h4{
	font-size: 30px;
	font-family: 'WorkSansRegular';
	/*color: #142636;*/
	color: #fff;
	line-height: 38px;
}
.aanbod-dtl-info-btm-price h4 span{
	font-size: 20px;
	font-family: 'WorkSansLight';
	/*color: rgba(16, 35, 45, 0.7);*/
	color: #fff;
	display: block;
}
/**aanbod-dtl-tab***/
.aanbod-detail-tab-sec {
	padding-bottom: 50px;
}
.each-tab-part:first-child {
	border-top: 0;
}
.tab-btn {
    font-size: 24px;
    color: #1c1c1c;
    font-family: 'WorkSansRegular';
    cursor: pointer;
    display: inline-block;
    position: relative;
	position: absolute;
	top: 55px;
	right: 0;
}
.tab-btn:after{
    position: absolute;
    width: 43px;
    height: 43px;
    right: 0;
    background-color: transparent;
    content: '';
    background-image: url(../images/button-arrow-blue.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center;
    border-radius: 100%;
    transform: rotate(90deg);
}
.less-info .tab-btn:after{
    transform: rotate(-90deg);
}
.each-tab-part h2 {
	font-size: 26px;
    color: #142636;
    font-family: 'WorkSansRegular';
	margin-bottom: 50px;
	letter-spacing: 1px;
}
.color-chng {
	color: #005dab !important;
}
.each-tab-part p {
    color: #1c1c1c;
    font-family: 'WorkSansLight';
	margin-bottom: 50px;
}
.each-tab-part {
	border-top: 2px solid #005cb1;
	padding-top: 55px;
	position: relative;
}
.each-tab-part.kenmerken-block{
	border-bottom: 0;
}
.each-tab-part h5{
  margin-bottom: 40px;
}
.detail-tab-area .tab-content .tab-pane .tab_hedaing {
  padding-bottom: 20px;
}
.detail-tab-area .bullet-panel li:after {
  padding-left: 15px;
  background-size: 7px;
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 15px;
  height: 15px;
  background-image: url('../images/bullet-blue.png');
  background-repeat: no-repeat;
}
.detail-tab-area ul li {
  font-family: 'WorkSansRegular';
  font-size: 16px;
  color: #1c1c1c;
  padding-bottom: 12px;
  word-break: break-word;
}
.detail-tab-area .bullet-panel ul li {
  padding-left: 20px;
  position:relative;
  font-family: 'WorkSansRegular';
  color: #1c1c1c;
}
.detail-tab-area .tab_hedaing h4 {
  color: #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 16px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'WorkSansBold';
}
.bullet-panel{
  margin-bottom:20px;
}
.kenmerken-tab ul li:nth-child(odd) {
  background-image: url('../images/bullet-blue.png');
  background-repeat: no-repeat;
  background-position: left top 8px;
  padding-left: 20px;
  background-size: 7px;
  color: #1c1c1c;
  font-family: 'WorkSansRegular';
}
.kenmerken-tab ul li {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  color: #1c1c1c;
}
.each-tab-part h4{
  margin-bottom: 16px;
  color: #1c1c1c;
  font-family: 'WorkSansSemiBold';
  font-size: 24px;
}
.each-tab-part p{
  letter-spacing: normal;
  font-size: 16px;
  line-height: 22px;
}
.aanbod-detail-tab-sec .tab-content {
  height: 0px;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.kenmerken-tab-content.tab-content{
  height: auto;
}
.kenmerken-tab{
  margin-bottom: 40px;
}
.each-onderhoud-block {
	display: flex;
	margin-bottom: 20px;
}
.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f232d;
    font-size: 16px;
    line-height: 24px;
}
.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #0f232d;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}
.each-onderhoud-block h5 {
	color: #1c1c1c;
	margin: 10px 0px 30px;
	font-family: 'WorkSansRegular';
}
.left-bg-block h6 {
	line-height: 30px;
	color: #fff;
	font-family: 'WorkSansSemiBold';
}
.detail-tab-area .each-tab-part:last-child {
	border-bottom: 0px;
}
/*.detail-tab-area .each-tab-part:first-child  .tab-content{
	height: auto;
}*/

/***aanbod-dtl contact-btn****/
.dtl-contact-btn {
	max-width: 260px;
	width: 100%;
	margin-left: auto;
	margin-top: 30px;
}
.form-1 textarea.form-styl {
	padding-top: 0;
}
.dtl-contact-btn ul li {
	margin-top: 25px;
	padding-left: 25px;
}

.dtl-contact-btn ul li a {
	color: #000000;
	font-size: 15px;
	font-family: 'WorkSansMedium';
}
.dtl-contact-btn ul li a:hover {
	opacity: 0.7;
}
.dtl-contact-btn ul li a span {
	margin-right: 15px;
}
.dtl-contact-btn ul li a span img {
	width: 23px;
}
.aanbod-dtl-product-wrapper {
	padding: 0 11%;
}
.aanbod-dtl-product {
	padding: 60px 0 160px;
	border-bottom: 1px solid #d2d2d2;
}
.aanbod-dtl-form {
	border-bottom: 0;
	margin-bottom: 30px;
}


/*********************************aanbod page start****************************************/
.aanbod-product-sec {
	background-color: #f7f7f7;
}
.aanbod-product-wrapper {
	padding: 0 10%;
}
.aanbod-product-sec .odd_cls .each-product {
	margin-right: 37px;
}
.aanbod-product-sec .even_cls .each-product {
	margin-left: 37px;
}
.aanbod-product-sec .each-product {
	margin-bottom: 74px;
}
.aanbod-product-sec .each-product .product-heading h5{
	/*font-size: 32px;*/
	font-size: 22px;
	height: 52px;
	overflow: hidden;
}
.aanbod-product-sec .each-product .product-heading {
	/*padding: 40px 0;*/
	padding: 30px 10px;
}
.aanbod-product-sec .each-product .product-detail {
/*	padding: 0px 30px 25px;*/
	padding: 0px 0px 25px;
}
.aanbod-product-sec .each-product .price h5 {
	/*font-size: 33px;
	line-height: 32px;*/
}
.aanbod-product-sec .product-detail .text-right h5{
	font-size: 24px;
}
.aanbod-product-sec .each-product .product-info h5 {
	font-size: 24px;
	margin: 45px 0;
}
.aanbod-product-sec .each-product .product-info td {
	font-size: 24px;
}
.aanbod-product-sec .each-product .product-info td img {
	width: 25px;
	vertical-align: middle;
}
.aanbod-product-sec .each-product .product-info button {
	font-size: 24px;
	margin-top: 40px;
}

/*********************************aanbod list page start*************************************/
.aanbod-list-product .each-product {
	margin-bottom: 40px;
	border-radius: 0;
}
.aanbod-list-product {
	border-bottom: 1px solid #d2d2d2;
	padding: 50px 0 130px;
}
.aanbod-list-product .each-product table td {
	display: block;
	width: 100%;
	text-align: left;
	margin-bottom: 25px;
}
.aanbod-list-product .each-product table td:last-child {
	margin-bottom: 0;
}
.aanbod-list-product .each-product .price {
	text-align: center;
	margin: 0 auto 15px;
}
.aanbod-list1 .product-detail .text-right h5{
	text-align: center;
}
.aanbod-list-product .each-product .product-detail {
	padding: 0 6% 0 8%;
	height: 100%;
}
.aanbod-list-product .aanbod-product-wrapper {
	padding: 0 5%;
}
.aanbod-list-product .each-product .col-lg-5 {
	-ms-flex: 0 0 44%;
	flex: 0 0 44%;
	max-width: 44%;
}
.aanbod-list-product .each-product .col-lg-7 {
	-ms-flex: 0 0 56%;
	flex: 0 0 56%;
	max-width: 56%;
}
.aanbod-list-product .each-product .product-heading h5 {
	font-size: 30px;
}
.aanbod-list-product .each-product .price h5 {
	font-size: 20px;
	color: #fff;
	font-family: 'WorkSansBold';
}
.aanbod-list-product .each-product .price h5 span {
	font-size: 15px;
	margin-right: 0;
}
.aanbod-list-product .each-product h5 span {
	font-size: 15px;
}
.aanbod-list-product .each-product .product-heading {
	padding: 0 0 30px;
}

/*******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:16px;
  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.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;
}
.form-1 {
	display:none;
	margin-top: 30px !important;
	margin: 0 auto 10px;
}
.form_sec{
	padding: 40px 20px;
	background: #f7f7f7;
}
.error_background{
	background:#0f232d;
    padding-top: 163px;
}
.error_top {
    padding: 50px 0;
    border-bottom: 1px solid #eeeeee;
}



.contact-map-sec .contact-info h6 {
    font-family: 'WorkSansBold';
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 40px 70px;
}

.contact-map-sec .contact-info span img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    width: 35px;
    margin-top: 5px;
}



/********************/
.footer-info img {
    height: 25px;
    width: 22px;
	margin-right: 10px;
}

.footer-info tr td {
    color: #fff;
	padding-left: 8px;
}

.footer-info a span {
    padding-bottom: 2px;
    border-bottom: 1px solid;
}


/*========aanbod filter=====*/
.aanbod-filter-sec .custom-select {
	width: 100%;
	position: relative;
	margin:0;
	height:55px;
	line-height:55px;
	border: 0;
	border-radius:0;
	background: none;
	font-family: 'WorkSansBold';
	font-size: 15px;
	color: #fff;
	padding:0;
	text-align-last: center;
}
.aanbod-filter-sec .custom-select select {
	display: none;
}
.selected-item {
	background: #005cb1;
	color: #fff;
	cursor: pointer;
	z-index: 99;
	border-radius: 30px;
}
.selected-item:after {
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  background-image: url(../images/down-arrow-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size:cover;
}
.arrowanim.selected-item:after {
  /*transform: rotate(180deg);*/
}
.arrowanim.selected-item{
	border-radius: 25px 25px 0 0;
}
.aanbod-filter-sec .item {
	color: #fff;
	cursor: pointer;
	padding: 8px 0;
	height: auto;
	line-height: normal;
	font-family: 'WorkSansRegular';
	font-size: 14px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.aanbod-filter-sec .item:hover{
	background: #f8f8f8;
    color: #005cb1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.all-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  border-radius: 0 0 25px 25px;
  background: #005cb1;
  padding-bottom: 30px;
}
.all-items-hide {
  display: none;
}
/********************overons**************/
.timeline-heading{
	margin-top: 60px;
}
.timeline-heading h4 {
	color: #1c1c1c;
    position: relative;
    margin-right: -40px;
}
.timeline-heading h4:after {
    position: absolute;
    top: 14px;
    right: -140px;
    width: 120px;
    height: 1px;
    background: #005cb1;
    content: '';
}
.timeline-content-wrap{
    max-width: 860px;
    width: 100%;
    margin: auto;
   	padding: 70px 70px 0;
    border-left: 1px solid #005cb1;
}
.timeline-content-wrap p{
	text-align: justify;
	margin-top: 25px;
	color: #1c1c1c;
}
.timeline-content-wrap h2{
	color: #1c1c1c;
}
.timeline-content-wrap img{
	margin-top: 50px;
}
.timeline-info{
    margin-top: 50px;
}
.each-timeline-block:last-child .timeline-info img{
	margin-bottom: 50px;
}