@import "fonts.css";
@import "common-class.css";
@import "font-awesome.min.css";
body {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	color: #fff;
}
.dblock {
	display: none;
}
input, select { font-size: 100%; }
section
{
width:100%;
}
/******************header area css*******************/
.header-area{
	position: absolute;
    /*z-index: 3;*/
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-area.stiky{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background: #101010;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.desktop-nav {
	padding:48px 0px;
	z-index: 3;
}
.desktop-nav .navbar-nav li.nav-item {
	padding:25px 53px 0px 0px;
}
.desktop-nav .navbar-nav li.nav-item a.nav-link{
    font-family: 'montserratbold';
/*	color:rgba(255,255,255,0.30);*/
	color:#fff;
	font-size:14px;
	padding: 0px;
	border-bottom: 2px solid transparent;
}
.desktop-nav .navbar-nav li.nav-item.active .nav-link{
	color:#fff;
	border-bottom: 2px solid #fff;
}
.desktop-nav .navbar-nav li.nav-item a.nav-link:hover{
	color:#fff;
	border-bottom: 2px solid #fff;
}
.desktop-nav .navbar-brand{
	margin-right:56px;
}

/******************header area css end*******************/

/******************Banner css*******************/
.home-banner{
	position:relative;
}
.slide-content{
	padding:25% 0px 25%;
	max-width:772px;
	width:100%;
}
.slide-content p{
	margin:35px 0px 55px;
	color:#fff;
	text-align:left;
	letter-spacing:0.80px;
}
.slide-content span{
	float:right;
}
.slide-content a{
	margin-right:15px;
}
.common-button.play-btnn:after {
    position: absolute;
    content: '';
    background-image: url(../images/play.svg);
    right: 40px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    top: 15px;
    background-size: 20px;
}
/******************rotate div css*******************/
.right-side-area{
	position:absolute;
	top:0px;
	width:180px;
	height:100%;
	background: rgba(18,18,18,0.60);
    z-index: 2;
	border-right:2px solid rgba(255,255,255,0.30);
}

.right-side-area ul li{
	display:inline-block;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	font-size:14px;
	font-family: 'montserratbold';
}
.right-side-area ul li:hover{
	transform: scale(1.25);
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.right-side-area ul li a{
	color:#fff;
}
.right-side-area ul li a:hover{
	color:#fff;
}

.right-side-area .rotate-div{
	height: 100%;
	transform: rotate(90deg);
	position: relative;
	top: -36%;
}
.right-side-area ul{
	white-space: nowrap;
	position: relative;
	text-align: center;
	top: 50%;
}
.right-side-area ul li{
	margin:0px 25px;
}
.right-side-area ul li span{
	margin-right:10px;
}
.right-side-area .rotate-div2 {
    transform: rotate(0deg);
    position: relative;
    bottom: 25%;
}
.right-side-area .rotate-div2 ul li{
	display:block;
	margin:0px 0px 30px;
}
/*****************toggle menu***************/
.toggle-area{
	position: absolute;
    right: 130px;
    top: 73px;
	font-size:14px;
	color:#fff;
	font-family: 'montserratbold';
	z-index: 3;
}
.toggle-area img{
	display:block;
}
.toggle-area a:hover{
	color:#fff;
}
.right-side-menu {
	/*position: absolute;*/
	position:fixed;
	top: 0px;
	width: 25%;
	height: 100vh;
	background: #121212;
	right: -100%;
	-webkit-transition: all 1s;
	transition: all 1s;
	z-index: 3;
}
.side-logo {
	padding: 50px 0px;
	text-align: center;
	border-bottom: 2px solid rgba(255,255,255,0.30);
}
.side-nav ul li {
	font-size: 14px;
	font-family: 'montserratbold';
	color: #fff;
	padding-top:30px;
	text-transform: uppercase;
	text-align:center;
}
.side-nav ul li a:hover {
	color: #9d2727;
}
.right-side-menu.open_side {
	right: 0px;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.side_logo_img{
	position:fixed;
	right:0;
	top:60%;
	transform:translateY(-50%);
	z-index:99;
}
/*****************video-area*************/
.video-content h6{
	color:#fff;
    font-family: 'montserratbold';
	font-size:14px;
}
.video_area{
	position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
	width: 100%;
	max-width: 500px;
    border-radius: 60px 0px 0px 0px;
}
.bbackground-top{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.2);
}
.video-content{
	padding-left: 60px;
}
.video-content a:hover{
	color:#999999;
}
.video-img img{
	border-radius: 50px 0px 0px 0px;
}
.video-content  p{
	line-height:normal;
	margin-top:8px;
	color:rgba(255,255,255,0.50);
}
.play-btn{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
}
.play-btn img{
	width:60%;
}
/******************Banner css end*******************/
/****************product-slider-area****************/
.product-content{
	max-width:797px;
	width:100%;
	text-align:center;
	margin:auto;
}
.product-content p{
	text-align:center;
	margin:35px 0px 65px;
}
.product-slider-area{
	padding:104px 0px 0px;
	background:#fefefe;
}
.border-btn span img{
	filter: invert(100%);
	-webkit-filter: invert(100%);
}
.product-select-area .form-control {
	background: url('../images/select-drop.svg') no-repeat 95% center;
	background-size: 9px;
	border: 3px solid #f0f0f0;
	color: #212529;
	font-size: 14px;
	font-family: 'montserratregular';
	width: 100%;
	min-height: 55px;
	border-radius:50px;
	-webkit-appearance: none;
	background-color: transparent;
	padding-left: 45px;
}
.border-btn span{
	float:right;
}
.border-btn:hover span img{
	filter: invert(0%);
	-webkit-filter: invert(0%);
}
.product-select-area .border-btn{
	height:55px;
}
.product-select-area{
	max-width:980px;
	width:100%;
	margin: auto;
}
/*******************product-slider***********/
.slider-area{
	position:relative;
    padding-bottom: 120px;
	padding-top: 82px;
}
.product-select-area .form-group {
    margin-bottom:0px;
}
.about-product{
	background:#101010;
	padding:35px 50px 15px;
}
.about-product p{
	color: #fff;
    font-family: 'montserratregular';
    line-height: normal;
    letter-spacing: 0.2px;
    word-spacing: normal;
}
.product-range{
	border-top:2px solid #3a5a7b;
	border-bottom:2px solid #3a5a7b;
	padding:25px 0px;
	margin:25px 0px;
}
.product-price table{
	width:100%;
}
.product-price td:last-child{
	text-align:right;
}
.product-price td h4{
	font-size: 18px;
	color:#fff;
}
.product-name h3{
	font-size: 24px;
	margin-bottom:20px;
	text-transform: uppercase;
}
.slider-area-bg{
	position: absolute;
    bottom: 0;
    height: 40%;
    width: 100%;
    background-position: bottom;
    left: 0;
}
.product-slider-wrapper{
	position:relative;
}
.product-slider-wrapper .swiper-button-next{
	right:-90px;
}
.product-slider-wrapper .swiper-button-prev{
	left:-90px;
}
.product-price{
	padding-bottom:15px;
}
.slider-area .product-slider-wrapper a{
	font-family: 'montserratbold';
	font-size:14px;
	color:#fff;
}
.slider-area .product-slider-wrapper span{
	display: inline-block;
    margin-left: 18px;
}
/*============half_slider========*/
.slider-area2-sec{
	position:relative;
	background: #fff;
    padding: 20px 0px;
}
.slider-heading h2 span{
	color:#fff;
	position:relative;
	display:inline-block;
	width:100%;
}
.half-slider-content h2{
	margin-bottom:30px;
}
.slider-heading h2 span:after{
	content:'';
	width:240px;
	height:2px;
	background:#3a5a7b;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	/*right:-27%;*/
	right:-40%;
}
.content-dtls p{
	color:#1c1c1c;
	font-size:12px;
}
.half-slider-area {
	position: relative;
}

.each-slider {
	height: 100%;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
.each-slider img{
	display: none;
}
.slider2-wrapper{
	background:#fff;
	padding-left: 20px;
}
.slider-heading{
	width: 100%;
}
.half-slider-content{
	padding: 40px 30px 40px 0px;
}
.slider-arrow  .common-arrow{
    position: relative;
    margin: 0px;
    display: inline-block;
	top: 5px;
}
.slider-arrow  .swiper-button-prev{
	left:0px;
}
.slider-arrow  .swiper-button-next{
	left:15px;
}
.content-dtls{
	padding-bottom:0px;
	padding-top:115px;
}
/****************footer-upper-area**************/
.left-slide-content p{
	margin:15px 65px 55px 0px;
	color:rgba(255,255,255,0.50);
}
.left-slide-content{
	padding:199px 54px 36px 50px;
	height: 100%;
	background:#101010;
}
.left-slide-content h2{
	color:#fff;
}
.footer-upper-area{
	position:relative;
	margin-bottom:20px;
}
/*.footer-upper-area .right-side-content{
	width: 58.33%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}*/
.common-button span{
	/*float:right;*/
}
.left-slide-content .common-button:last-child{
	margin-left:25px;
}
.each-img{
	padding-bottom: 60px;
}
.each-img h4{
	color: #fff;
	font-family: 'montserratbold';
	margin: 15px 0px 20px;

}
.each-img p{
	color: #fff;
	font-family: 'montserratregular';
	line-height: 22px;

}
.bg3-img{
	/*display:none;*/
}
.bg4-img{
	/*position: relative;*/
    max-width: 785px;
    width: 100%;
    border-radius: 0px 60px 60px 0px;
}
.images-panel{
	/*position: absolute;
	top: 0;
	left: 0;
	height: 100%;*/
}
.right-side-img {
	padding: 75px 0px;
}
.images-panel{
padding: 70px 80px 40px;
}
/******************footer**************/
footer{
	background: #101010;
	padding: 35px 0px 45px;
}
.footer-logo h4{
	color: rgba(255,255,255,0.50);
	margin-top: 17px;
	letter-spacing: 0.5px;
}
.contact-btn .common-button:first-child{
	margin-right: 15px;
}
.contact-btn .common-button span{
	margin-top: -3px;
}
.each-footer{
	padding-bottom: 30px;
}
.contact-btn{
padding-top:25px;
}
.footer-address h6{
	font-size: 14px;
	margin-bottom: 20px;
}
.footer-address p{
	color: rgba(255,255,255,0.50);
	/*font-family: 'montserratregular';
	line-height: 30px;*/
}
.footer-address{
	padding: 40px 0px 30px;
}
.each-footer .col-md-4{
	max-width: 27%;
}
.footer-nav li{
    font-family: 'montserratbold';
	color:rgba(255,255,255,0.30);
	font-size:14px;
	padding-right: 50px;
	display: inline-block;
}
.footer-nav li a:hover{
	color: #fff;
}
.footer-nav {
	padding-top: 65px;
}
.footer-nav img{
	margin-left: 24px;
}
footer .contact-btn .common-button:after {
    background-image: url(../images/envelope.svg);
	top:17px;
	background-size:20px;
	width: 20px;
    height: 20px;
}
footer .contact-btn .common-button:nth-child(2):after {
    background-image: url(../images/call-answer.svg);
	top:17px;
	background-size:20px;
	width: 20px;
    height: 20px;
}
/*******************service listview******************/
.common-header-area {
    position: relative;
    background: #101010;
}
.common-header-area .desktop-nav {
    padding: 50px 0px 60px;
}
.common-header-area .toggle-area{
	top:50px;
}
.common-banner h1{
	font-size: 66px;
}
.common-banner {
	padding: 6% 0px;
}
.listview-content{
	background: #000000;
	padding: 60px 15% 60px 12%;
	margin-right: 10px;
}
.listview-img{
	margin-left: 10px;
}
.listview-content h2{
	font-size: 40px;
	color: #fefefe;
}
.listview-content p{
	text-align-last: right;
	color: rgba(255,255,255,0.50); 
	margin: 30px 0px 70px;
	font-family: 'montserratregular';
	font-size:15px;
}
.each-listview{
	padding-bottom: 20px;
}
.service-listview-sec{
	padding-top: 20px;
}
.listview-content{
	text-align: right;
}
.each-listview .flex-row-reverse .listview-content{
	padding-left: 15%;
	padding-right: 12%;
	margin-left: 10px;
	margin-right: 0px;
	text-align: left;
}
.each-listview .flex-row-reverse .listview-img{
		margin-left: 0px;
		margin-right: 10px;
}
.each-listview .flex-row-reverse .listview-content p{
	text-align-last: left;
}
.listview-img img{
	display: none;
}
/**********************overons********************/
/*==========================side slider=========================*/
.footer_upper_banner {
	width: 100%;
	position: relative;
	padding: 20px 0px;;
}
.het_concept_slider img {
	display: none;
}
.het_concept_slider .ftnxt2 img {
	display: block;
}
.het_concept_slider .ftprev2 img {
	display: block;
}
.footer_slider {
	position: absolute;
	right: 0px;
	width: 45%;
}
.ft_slider_banner {
	height: 623px;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}
.footer_slider .swiper-slide-prev {
	width: 0% !important;
}
.footer_slider .swiper-slide-next {
	width: 50% !important;
}
.footer_slider .swiper-slide-active {
	width: 90% !important;
}
.ftnxt2 {
	right: 0px !important;
}
.ftprev2 {
	left: 0px !important;
}

.upper-banner-left-content {
	padding-right: 11%;
}
.upper-banner-left-content p{
	font-size:15px;
	font-family: 'montserratregular';
	letter-spacing: 0.1px;
}
.upper-banner-left-content h2{
	font-size:39px;
	color:#1c1c1c;
	margin-bottom:20px;
}
.footer_upper_banner .content-dtls{
	padding-bottom:10px;
	padding-top:40px;
}
.border-part{
	max-width:243px;
	width:100%;
	background:#3a5a7b;
	height:2px;
	margin-top: 40px;
}
/***************overons bg area**************/
.common-heading h3{
	font-size:39px;
	font-family: 'montserratbold';
	color:#1c1c1c;
}
.overons-bg-area h3{
	color:#fff;
}
.overons-bg-area .images-panel {
    padding: 35px 0px 0px;
}
.overons-bg-area {
	padding:65px 0px 25px;
}
/***************overons table area*************/
.diensten-table-area {
    padding-top: 60px;
}
.diensten-table-area table {
    width: 100%;
}
.diensten-table-area tr td:nth-child(odd) {
    padding-right: 50px;
}
.diensten-table-area td {
    width: 50%;
    vertical-align: top;
}
.diensten-content-area p {
   color:#1c1c1c;
}
.diensten-table-area tr td:nth-child(even) {
    padding-left: 50px;
}
.diensten-content-area{
	padding: 6% 0px;
}
/************overons footer upper**********/
.overons-footer-upper .common-button{
	display:block;
}
.overons-footer-upper .left-slide-content .common-button:last-child {
    margin-left: 0px;
	margin-top:15px;
}
.overons-footer-upper .left-slide-content h2{
	font-size:39px;
}
.overons-footer-upper .left-slide-content {
    padding: 95px 50px 93px 15%;
}
/**************overons gallery**********/
.gal-item {
    overflow: hidden;
   padding:0px 7px;
}
.gal-item .box {
    height: 100%;
    overflow: hidden;
}
.gallery_images .box
{
	position:relative;
}
.box img {
    height: 100%;
    width: auto;
    object-fit: cover;
    position: relative;
}
.gal-item_cover{
	padding-top:14px;
}
.gallery_images .row{
	height:100%;
}
.gallery_images {
    padding: 0px 15px;
}
.overons-footer-upper {
    margin-bottom: 20px;
}

.gal-item-cover{
	padding-top:14px;
}
/***************service dtls*************/
.service-dtls-btn{
	padding-top:70px;
}

.contact-slider-sec .footer_slider{
	left: 0;
    right: auto;
}
.contact-slider-sec .footer_slider .swiper-slide-prev {
	width: 50% !important;
}
.contact-slider-sec .footer_slider .swiper-slide-next {
	width: 0% !important;
}
.contact-slider .ft_slider_banner img {
    display: none;
}
.form-styl {
    font-size: 15px;
    padding: 0px 25px;
    resize: none;
    background-color: #fff;
    border-radius: 50px;
    font-family: 'montserratregular';
    border: 3px solid #f0f0f0;
    color: #121212;
    height: 52px;
    line-height: 52px;
}
.contact-form p{
	font-size:15px;
	font-family: 'montserratregular';
	letter-spacing:0.2px;
}
.contact-form h3{
	margin-bottom: 20px;
	font-size: 26px;
}
/*.contact-form .form-control:focus {
	box-shadow: none;
	border: 2px solid #153253;
}*/
.form-styl:placeholder {
	color: #121212;
	opacity: 1;
}
.form-styl:-ms-input-placeholder {
	color: #121212;
	opacity: 1;
}
.form-styl::placeholder {
	color: #121212;
	opacity: 1;
}
.contact-slider-sec .upper-banner-left-content {
    padding-right: 30%;
	padding-left:30px;
}
.form-styl2 {
    border-radius: 30px;
	height: 120px !important;
}
.contact-form p{
	margin-bottom:30px;
	margin-top:10px;
}
.contact-form .common-button{
	margin-top:30px;
}
.contact-slider-sec{
	padding-bottom:120px;
}
.contact-slider-sec .each-footer{
	width: 100%;
	padding:0px 60px;
}
.contact-slider-sec .swiper-slide-prev .each-footer{
	display:none !important;
}
.contact-slider-sec .footer-address{
	padding: 0px 0px 48px;
}
.contact-slider-sec .each-footer .col-md-6{
	/*max-width:44%;*/
}
.contact-slider-sec {
    margin-top: 0px;
}
.contact-slider-sec .footer-address p {
    /*color: #fff;*/
}
/*******************contact****************/
.contact-map-sec{
	position:relative;
	padding:0px;
	margin:20px 0px;
}
.contact-map-sec .listview-img{
	position:absolute;
	top:0;
	right:0;
	height:100%;
	width: 41.667%;
}
.contact-map-sec .listview-content {
    margin-right: 0px;
	position:relative;
	background:transparent;
	padding: 18% 30% 18% 0px;
	text-align: left;
}
.contact-map-sec .each-listview {
    padding-bottom: 0px;
}
.contact-map-sec .bg-color{
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    background: #101010;
	z-index: -1;
	width: calc(58.33% - 20px);
	border-right: 20px solid #fff;
}
.contact-map-sec .listview-content h3{
	color:#fff;
	font-size: 26px;
}
.contact-map-sec .listview-content p {
    text-align-last: left;
}
.contact-map-sec .addresss p{
	color:#fff;
	font-family: 'montserratregular';
	margin:20px 0px 0px;
	letter-spacing: 0.2px;
	font-size: 16px;
}
.map-wrapper{
	margin-bottom:8% !important;
}
.contact-upper-banner .upper-banner-left-content .common-button{
	margin-top:65px;
}
.contact-upper-banner {
    margin-top: 0px;
	padding-top:68px;
}
/*****************aanbod dtls***************/
.slider_top_sec h2{
	font-size: 24px;
	color:#fff;
}
.slider_top_sec h4{
	font-size: 20px;
	color:rgba(255,255,255,0.50);
	margin-top:24px;
	letter-spacing: 0.5px;
}
.slider_top_sec{
	background:#151515;
	padding:35px 0px 65px;
}
.slider_top_sec .common-button span {
    float: none;
    padding-right: 30px;
}
.slider_top_sec .common-button{
  padding-left: 30px;
    margin-top: 40px;
    padding-right: 0px;
    text-align: center;
}
.slider_top_sec .common-button:after{
   left: 25px;
    right: auto;
}
.slider_top_sec .common-button:after {
    background-image: url(../images/left-arrow.svg);
	top: 15px;
    background-size: 20px;
	width: 20px;
    height: 20px;
}
/*********master slider********/
.aanbod_details_slider .ms-container {
    background-color: #040404;
}
/*.aanbod_details_slider .swiper-button-next,
.aanbod_details_slider .swiper-button-prev{
top:50%;
}
.aanbod_details_slider .swiper-button-next, .aanbod_details_slider .swiper-button-prev{
width:40px;
height:40px;
text-align:center;
line-height: 33px;
background:#fff;
border-radius:4px;
border:1px solid #f1f1f1;
}
.aanbod_details_slider .swiper-button-prev img, .aanbod_details_slider .swiper-button-next img{
width:14px;
}*/
.aanbod_details_slider .ms-skin-default .ms-nav-prev {
    left: 0px;
	z-index:1;
	width:36px;
	height:30px;
	opacity: 1 !important;
    border: 2px solid #f1f1f1;
    border-radius: 4px;
	background: url(../images/prev-arrow-white.svg)no-repeat center center;
    background-size: 30px;
}
.aanbod_details_slider .ms-skin-default .ms-nav-next {
    border: 2px solid #f1f1f1;
    border-radius: 4px;
    right: 0px !important;
	z-index:1;
	width:36px;
	height:30px;
	opacity: 1 !important;
	background: url(../images/next-arrow-white.svg)no-repeat center center;
    background-size: 30px;
}
.aanbod_details_slider{
	background: #151515;
}
.aanbod_details_slider .ms-thumblist-fwd{
	display:none;
}
.aanbod_details_slider .ms-thumblist-bwd{
	display:none;
}
/*******tab area*******/
.tabber_upper_sec table{
	width:100%;
}
.aanbod_detail_tab_sec .tabber_upper_sec{
    padding: 80px 0px 75px;
    background: #151515;
}
.tabber_upper_sec tr td {
	font-size: 14px;
	font-family: 'montserratregular';
	color: #868686;
	padding-bottom:15px;
	font-style: italic;
}
.tabber_upper_sec tr td span{
	font-style: normal;
	color:#fff;
}
.tab-upper-heading h2{
	font-size:20px;
	color:#fff;
	margin-bottom:25px;
}
.tab-upper-heading h4{
	font-size: 16px;
	color:#fff;
}
.tab-upper-wrapper{
	/*padding-right:10%;*/
}
/******tab******/
.dtls-tab-wrapper .tab_sec{
	border-bottom: 1px solid #dedede;
    padding-bottom: 35px;
}
.aanbod_detail_tab_sec .nav-tabs {
    border-bottom: none;
}
.aanbod_detail_tab_sec .nav-tabs .nav-item{
	border-bottom: 0px;
	margin-bottom: 0px;
	width: 16%;
	padding-right: 10px;
	text-align: center;
	background-color: transparent;
	font-family: 'montserratbold';
	text-transform: uppercase;
}


.aanbod_detail_tab_sec .nav-tabs .nav-item .nav-link {
	border-top-left-radius: 0rem;
	border-top-right-radius: 0rem;
	border: none;
	color:#1c1c1c;
	border:3px solid #e8e8e8;
	border-radius:60px;
	font-size: 13px;
	padding: 13px 0px;
}
.aanbod_detail_tab_sec .tab_sec .nav-tabs .nav-item .nav-link:hover{
	color:#1c1c1c;
	border:3px solid #1c1c1c;
}
.aanbod_detail_tab_sec .nav-tabs .nav-item .nav-link.active{
	color:#1c1c1c;
	border:3px solid #1c1c1c;
	border-radius:60px;
}

.aanbod_detail_tab_sec .tab_content_wrapper {
	padding: 45px 0px;
}

.aanbod_detail_tab_sec .tab_content_wrapper .tab-pane .tab_hedaing {
	padding-bottom: 20px;
}

.aanbod_detail_tab_sec .bullet_panel ul {
	list-style-image: url('../images/bullet.png');
	padding-left: 15px;
}

.aanbod_detail_tab_sec .tab-content ul li {
	font-family: 'montserratregular';
	font-size: 14px;
	color: #888888;
	padding-bottom: 6px;
	word-break: break-word;
}
.aanbod_detail_tab_sec .tab-content .kenmerken_tab ul li:nth-child(even) {
   color: #333333;
}
.aanbod_detail_tab_sec .bullet_panel ul li {
	padding-left: 10px;
}

.aanbod_detail_tab_sec .tab_content_wrapper .tab-pane .tab_hedaing h5 {
	color: #121212;
	border-bottom: 1px solid #121212;
	padding-bottom: 10px;
	text-transform: uppercase;
	padding-top: 15px;
	font-family: 'montserratbold';
}
.aanbod_detail_tab_sec .tab_content_wrapper p{
	letter-spacing:0.2px;
	color:#1c1c1c;
}
.kenmerken_tab ul li:nth-child(odd) {
	background-image: url(../images/bullet.png);
	background-repeat: no-repeat;
	/*background-position: 0% 30%;*/
	background-position: left top 4px;
	padding-left: 20px;
}

.kenmerken_tab ul li {
	width: 45%;
	display: inline-block;
	vertical-align: top;
    font-family: 'New Rail Alphabet Medium';
}

.kenmerken-bottom-block h4{
	margin: 40px 0 30px;
	font-family: 'montserratbold';
}
.photo_upload {
	color: #121212;
	line-height: 48px;
}

/*********/
.dtls_price_part h3{
    font-size: 36px;
    color: #121212;
    letter-spacing: 9px;
}
.dtls_price_part .divider{
	border-top: 2px solid #dcdcdc;
	margin:43px 0px 45px;
}
.dtls_price_part{
	text-align:center;
	padding-top: 35px;
}
.dtls_price_part h6{
	margin-bottom: 50px;
    font-family: 'New Rail Alphabet White';
	margin:20px 0px;
	letter-spacing: 1.5px;
}

.dtls_price_part p{
	text-align:center;
	color:#333333;
	font-family: 'montserratregular';
	margin-bottom: 55px;
}

.dtls_price_part{
	text-align:center;
}
.dtls_price_part .border-btn{
	border:2px solid #121212;
	color:#121212;
	 margin: 0 auto 10px;
	 display: block;
	 text-align:center;
	 padding:15px 0px;

}
.dtls_price_part .common-button:after{
	display:none;
	
}
.dtls_price_part .border-btn:hover{
	color:#fff;
}
.dtls_price_part .common-btn:hover{
	background-color: #121212;
	color: #fff;
	border:2px solid #121212;
}

.form_1{
    background-color: #121212;
    padding: 30px;
	display: none;
}
.form_1 .form-styl{
border: 2px solid #3b3b3b;
}
.dtls-tab-wrapper{
	padding:40px 0px 70px;
}
.black-btn{
	background:#000000;
	color:#fff;
	text-align: center;
	border: 3px solid #000000;
	padding: 15px 0px;
}
.black-btn:hover{
	background:#000000;
	color:#fff;
	border: 3px solid #000000;
}
.black-btn span{
	padding-right: 30px;
    display: inline-block;
    margin-left: -60px;
}
.dtls_price_part .footer-nav img {
	filter: invert(100%);
	-webkit-filter: invert(100%);
}
.dtls_price_part .footer-nav {
    padding-top: 30px;
}
/*************dtls product*******/
.aanbod-dtls-product .product-slider-wrapper{
	padding-top:100px;
}
/*===========aanbod filter section=============*/
.aanbod-gallery{
	padding-bottom:70px;
}

.total-product-area .col-lg-4{
	max-width:32%;
}
.total-product-content{
	padding-right: 20%;
}
.aanbod_selection_sec
{
    padding: 75px 0px 85px;
}
.aanbod_selection_sec h2
{
	font-size: 30px;
	margin-top: 12px;
}
.aanbod_selection_sec h2 span
{
	color:#3a5a7b;
}
.aanbod_selection_sec p
{
	font-family: 'montserratregular';
}
.aanbod_selection_sec hr
{
	margin: 30px 0px 40px;
	border-top:1px solid #e0e0e0;
}
.aanbod-gallery .col-lg-6
{
	padding-bottom: 30px;
} 
.aanbod-gallery .product_dtls span
{
	display: inline-block;
    margin-left: 18px;
}
.aanbod-blog-middle-content {
    padding: 0px 95px 58px 60px;
}
.aanbod-blog-middle-content h2
{
	color:#fff;
}
.aanbod-blog-middle-content p
{
	color:#fff;
	margin-bottom: 50px;
    margin-top: 30px;
	font-family: 'montserratregular';
}
/*************pop up*************/
.mm-slideout {
z-index: unset;
}

.modal_area .modal_close_img{
position: absolute;
top: 25px;
right: 25px;
height:100%;
}
.modal_area .modal-dialog {
max-width:66%;
width:100%;
margin:10% auto 0px;
}
.modal_area .modal-body{ 
padding:0px;
background: #101010;
}
.modal_area .modal-content p{
color:rgba(255,255,255,0.50);
margin:50px 0px 60px;
}
.modal_area .modal-content h2{
	color:#fff;
}
.modal_area .modal-content{
border-radius:0px;
border: none;
}

.popup_content{
padding: 100px 70px 60px 120px;
}

.modal_area #myModal{
	padding-right:0px !important;
}
.pop_up_img img{
	display:none;
}
/*=======pop up end==========*/
/***************vercocht**************/
.vercocht-gallery{
	padding-top:90px;
}
/****************contact new**************/
.contact-slider-sec .container-fluid{
	padding-right:0px;
	padding-left:0px;
}
.left-img{
	height:583px;
}
.contact-leftside-img .col-md-3{
/*	padding-right:10px;*/
}
.contact-leftside-img .col-md-9{
	padding-left:10px;
}
.contact-leftside-img .col-md-9 .left-img img{
	display:none;
}

/*******contact upper banner**********/
.contact-upper-banner .container-fluid{
	padding-right:0px;
	padding-left:0px;
}
.contact-upper-banner .contact-leftside-img .col-md-9 {
    padding-right: 10px;
	padding-left: 0px;
}
.contact-upper-banner .contact-leftside-img .col-md-3{
	padding-left:10px;
}
.contact-upper-banner .upper-banner-left-content {
    padding-left: 30%;
}
/*************thanku***********/
.thanku .slide-content {
    max-width: 913px;
}
.thanku-content {
	max-width:575px;
	width:100%;
}
.cookie_div{
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;
}
.light_theme{
	background:rgba(255, 255, 255, 0.83);
	-webkit-box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.75); 
	box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.75);
}
.dark_theme{
    background: rgba(0, 0, 0, 0.78);
	-webkit-box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.75); 
	box-shadow: 0px -3px 3px -1px rgba(203,203,203,0.75);
}
.cookie_div{
	color:#9c9c9c;
	font-size: 9pt;
	font-family: 'montserratbold';
}
.cookie_div h4{
	margin-bottom: 15px;
	font-size: 13pt;
	font-family: 'montserratbold';
}
.light_theme h4{
	color:#2a2a2a;
}
.dark_theme h4{
	color:#c9c9c9;
}
.cookie_div a{
	color:#3a5a7b;
	font-size: 9pt;
	font-weight:bold;
	margin-left:8px;
	font-family: 'montserratbold';
}
.cookie_div button{
	color:#3c935c;
	font-size: 9pt;
	background:#e6f8ed;
	font-weight: bold;
    border: 0;
    padding: 13px 25px;
	margin:5px 0;
	cursor: pointer;
	font-family: 'montserratbold';
}
#loader_section{
	display:none;
	width:100%;
	position: fixed;
	top: 0;
	background: #000000b8;
	z-index: 9999;
	height: 100vh;
	padding: 30vh 0px;
}
#loader_section p{
	color:#fff;
	font-size:18px;
	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: 11px 0 10px 45px;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
}
.cursor
{
	cursor:pointer;
}
#menu {
 display: none;
}
.mm-current {
 display: block !important;
}
.morgan_footer
{
	text-align: center;
	background: #000;
	padding: 7px 0px 5px;
}
.error_background {
    height: 121px;
	background-color: #121212;
}
.error_top
{
	margin-bottom: 125px;
}
/************final add*********/
.images-panel .col-md-6:nth-child(3) img{
	max-height:39px;
}
.home_car_slider{
	padding: 0px;
    background: #fff;
}
.about-product a{
	font-size:14px;
	font-family: 'montserratbold';
	color:#fff;
}
.filter-product-area .text-body{
	font-size:14px;
	font-family: 'montserratbold';
}
.aanbod-dtls-product .slider-area{
	padding-top:0px;
}
.service-dtls-btn .common-button:after {
    background-image: url(../images/left-arrow.svg);
	right:30px;
	top:14px;
	background-size:20px;
	width: 20px;
    height: 20px;
}
.service-dtls-btn .common-button{
	padding:15px 30px;
}
.service-upper-banner{
	padding-top:0px;
	margin-top:-15px;
}
.overons-bg-area  .images-panel img{
	max-height:39px;
}
.map-wrapper .map_canvas {
	height: 605px;
    position: relative ;
    overflow: hidden ;
}
.map-wrapper .each-listview{
	height: 605px ;
}
.map_left_text_section{
	position: absolute ;
    top: 0 ;
    width: 100% ;
    z-index: 1 ;
}
.cursor
{
	cursor:pointer;
}
.right_map_part{
    position: relative;
    z-index: 2;
    width: 43% !important;
}
.service-upper-banner .left-img {
    height: 500px;
}
/*****************new add*******************/
.slider-area2-sec .each-slider-wrapper .col-lg-5{
	height: 600px;
}

.content-dtls {
   padding-top: 15px;
   margin-top: 80px;
}
.slider-area2-sec .swiper-button-prev, .slider-area2-sec .swiper-button-next{
top:auto;
bottom:60px;
}
.slider-area2-sec .swiper-button-prev{
right:auto;
left: 44%; 
transform:translateX(-44%);
}
.slider-area2-sec .swiper-button-next{
left:auto;
right:47%;
transform:translateX(-47%);
}
.top-lebel-sec{
width: 100%; 
overflow: hidden;
text-overflow: ellipsis;
height:190px;
}
.bottom-lebel-sec{
width: 100%; 
overflow: hidden;
text-overflow: ellipsis;
height:180px;
}
.overons_bnnr
{
	padding: 20px 0px;
}
.toggle_bar_large
{
	width: 46px;
    height: 4px;
	background-color:#fff;
	margin-bottom: 6px;

}
.toggle_bar_small
{
	width: 30px;
    height: 4px;
	background-color:#fff;
	float: right;
	transition:all .5s; 
	-webkit-transition: all .5s;
}
.toggle-area:hover .toggle_bar_small
{
	width:46px;
	transition:all .5s;
	-webkit-transition: all .5s;
}
.gallery_images .hover_area
{
	position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: .3s all ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.gallery_images .hover_area:hover
{
	opacity:1;
}
.form-styl:focus {
	color: #153253;
	background-color: #fff;
	outline: 0;
	box-shadow: 0 0 0 1px #3c5a7c;
	border:#3c5a7c;
}
.styl
{
	max-width:23px;
}
.home_car_slider .swiper-button-next,
.home_car_slider .swiper-button-prev{
top:50%;
}
.home_car_slider .swiper-button-next, .home_car_slider .swiper-button-prev{
width:40px;
height:40px;
text-align:center;
line-height: 33px;
background:#fff;
border-radius:4px;
border:1px solid #f1f1f1;
}
.home_car_slider .swiper-button-prev img, .home_car_slider .swiper-button-next img{
width:14px;
}
.service_pagination { position: relative; top: 0px; left: 50%; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); text-align: center; }
.service_pagination a { display: inline-block; width: 40px; height: 40px; -moz-border-radius: 4px; border-radius: 4px; font-size: 12px; line-height: 40px; text-align: center; }
.service_pagination li { display: inline-block; }
.service_pagination a { color: #000000; border-radius: 50%; font-size: 17px; margin: 0 3px; background: #FFFFFF; }
.service_pagination .active a, .service_pagination a:hover { background: #3a5a7b; color: #fff; border-radius: 50%; }
.slider-area2-sec .swiper-button-next,
.slider-area2-sec .swiper-button-prev{
top:87%;
}
.slider-area2-sec .swiper-button-next, .slider-area2-sec .swiper-button-prev{
width:40px;
height:40px;
text-align:center;
line-height: 33px;
background:#fff;
border-radius:4px;
border:1px solid #f1f1f1;
}
.slider-area2-sec .swiper-button-prev img, .slider-area2-sec .swiper-button-next img{
width:14px;
}
.styl1
{
	max-width: 14px;
}
.styl2
{
	max-width:20px;
}
.aanbod-dtls-product .swiper-button-next,
.aanbod-dtls-product .swiper-button-prev{
top:50%;
}
.aanbod-dtls-product .swiper-button-next, .aanbod-dtls-product .swiper-button-prev{
width:40px;
height:40px;
text-align:center;
line-height: 33px;
background:#fff;
border-radius:4px;
border:1px solid #f1f1f1;
}
.aanbod-dtls-product .swiper-button-prev img, .aanbod-dtls-product .swiper-button-next img{
width:14px;
}
.fixed-whatsapp-btn span img
{
	/*margin-right: 10px;
    margin-bottom: -2px;*/
    vertical-align: middle;
    margin-right: 15px;
    max-width: 100%;
    max-height: 25px;
    margin-top: -7px;
}
.kenteken_sec
{
	background-image:url(../images/kenteken_plaat/plate_kt.png);
    background-repeat: no-repeat;
    background-size: contain;
    resize: none;
    color: #263339;
    line-height: 45px;
    padding: 0px 0px 0px 75px;
    background-position: left;
	background-color: #fecc00;
}

.kenteken_sec:focus {
	background-color: #fecc00 !important;
}
/******************/
.images-panel .col-md-6:nth-child(odd) .each-img{
	padding-right:20px;
}
.images-panel .col-md-6:nth-child(even) .each-img{
	padding-left:20px;
}
.overons-bg-area .images-panel .col-md-6 .each-img{
	padding-right:30px;
	padding-left:0px;
}
.bbackground .each-img img
{
	max-width:48px;
}
.gallery_arrow .swiper-button-next, .gallery_arrow .swiper-button-prev
{
	width: 40px;
    height: 40px;
    text-align: center;
    line-height: 33px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f1f1f1;
}
.gallery_arrow .swiper-button-next img,
.gallery_arrow .swiper-button-prev img
{
	width: 14px;
}
/*.gallery-details-slider
{
	height:100%;
}
.overons-footer-upper .swiper-container
{
	height:100%;
}*/
@media (max-width: 1199.98px){
.images-panel .col-md-6:nth-child(odd) .each-img{
	padding-right:0px;
}
.images-panel .col-md-6:nth-child(even) .each-img{
	padding-left:0px;
}
.overons-bg-area .images-panel .col-md-6 .each-img{
	padding-right:20px;
	padding-left:0px;
}
}
@media (max-width: 767px){
.overons-bg-area .images-panel .col-md-6 .each-img{
	padding-right:0px;
}
.whatsapp_button{
	display: none;
}
}
.button-mrg{
	margin-top: 25px;
}
#mobile-contact-bar {
    display: none;
  }
.whatsapp_button {
    position: fixed;
    width: 70px;
    z-index: 99999999;
    right: 80px;
    bottom: 10px;
}
.ms-slide .ms-slide-bgcont img{
	margin-top: 0px !important;
}

/* Cookie melding */

.cookie_div {
	background-color: #3a5a7b !important;
	color: #ffffff;
	font-family: 'montserratregular';
	border-color: #ffffff;
}

.cookie_div div {
	font-weight: 300;
}

.cookie_div h4 {
	font-family: 'montserratbold';
	text-transform: uppercase;
	color: #ffffff;
	display: none;
}

.cookie_div a {
	color: #ffffff;
}

.cookie_div button {
	background-color: #ffffff;
	color: #3a5a7b;
	border: 1px solid #3a5a7b;
	transition: ease-in-out 0.3s all;
}

.cookie_div button:hover {
	color: #ffffff;
	background: #3a5a7b;
	transition: ease-in-out 0.3s all;
	border: 1px solid #ffffff;
}
/*======footer opening time=======*/
.contact-info{
	padding-top: 40px;
}
.contact-info .bullet-image {
    width: 12px;
    margin-right: 10px;
}
.contact-info span{
	float: left;
	margin-top: 5px;
}
.opening-area p {
    color: #fff;
    display: inline-block;
    line-height: normal;
    padding: 0 10px;
    line-height: 30px;
    letter-spacing: normal;
}
.opening-wrap {
    max-width: 340px;
    width: 100%;
    margin-left: 30px;
}
.opening-area {
    position: relative;
    border: 1px solid #5a5a5a;
    border-radius: 8px;
    padding: 0;
    width: auto;
}
.opening-area span {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    margin-right: 8px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: right;
}
.opening-area img {
    margin: 0;
    width: 8px;
    transform: rotate(90deg);
}
.opening-hour {
    display: none;
    position: absolute;
    background: #101010;
    width: 100%;
    z-index: 9;
    border: 1px solid #5a5a5a;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    right: 0;
}
.opening-hour td {
    display: inline-block;
    padding: 0 10px;
    line-height: 30px;
    width: 100%;
    border-top: 1px solid #5a5a5a;
    margin: 0;
    font-size: 14px;
    font-family: 'montserratregular';
}
.opening-wrap p:last-child {
    margin-top: 10px;
    color: #fff;
}
#menu3 iframe{
	height: 1200px;
    width: 100%;

}