@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');

body {
    background: #fff;
    color: #808080;
   font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6em;
}
a {
    color: #e74e3e;
    text-decoration: underline;
    transition: all .4s;
}
a:active, a:hover, a:focus {
    color: #e74e3e;
    text-decoration: none;
}
 
.image-right {
    float: right;
    margin: 0 0 10px 15px;
}
.image-left {
    float: left;
    margin: 0 15px 10px 0;
}
 
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Didot-HTF-B06-Bold';
    line-height: 1.5em;
    text-transform:uppercase;
}
h1, .h1{
    font-size:36px;
    color:#000;
}
h2, .h2{
    font-size:30px;
color:#e74e3e;
}
h3, .h3{
    font-size:25px;
    color:#e74e3e;
}
h4, .h4{
    font-size:20px;
    color:#e74e3e;
}
h5, .h5{
    font-size:18px;
    color:#e74e3e;
}
h6, .h6{
    font-size:14px;
    color:#e74e3e;
}

span.number-responsive {
	display: none;
}

header.top {
	position: relative;
	z-index: 10;
background: url(../images/bg-header.jpg) center center no-repeat;
}
header.top::after {
	content: '';
	display: block;
	clear: both;
}
header.top .container {
	position: relative;
}
header.top .logo {
	position: relative;
	float: left;
	padding: 5px 0;
}
header.top .cta {
    position: relative;
    float: right;
    text-align: right;
    display: inline-block;
    padding: 5px 10px;
    margin: 37px 0;
    transition: all .4s;
    cursor: default;
}

header.top .cta h4,
header.top .cta p {
	margin: 0;
	padding: 0;
	font-size:17px;
}
header.top .cta h4 {
	font-size: 24px;
	color:#000;
	 font-family: 'Open Sans', sans-serif;
	     text-transform: none;
}
.number{font-weight:600}
header.top .cta a {
	text-decoration: none;
	
}
header.top .cta a:hover{color:#343434;}
header.top nav.mobile-nav {
	position: relative;
	float: right;
	display: none;
	background: #e74e3e;
	float: none;
	text-align: center;
	margin-bottom: 10px;
}
header.top nav.mobile-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	padding: 5px;
	display: block;
}
header.top nav.language {
	position: absolute;
	right: 15px;
	top: 100%;
}
header.top nav.language a {
	float: left;
	display: inline-block;
	margin-left: 2px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0,0,0,.2);
}
header.top nav.language a:hover {
	background: #9fc612;
}

section.banner {
	position: relative;
    height: 624px;
}
section.banner.small {
	height: 350px;
}
section.banner .fluid_container,
section.banner .fluid_container #slideshow {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0!important;
}
section.banner .fluid_container #slideshow .camera_overlayer {
	mix-blend-mode: multiply;
}
section.banner .fluid_container #slideshow .camera_prev,
section.banner .fluid_container #slideshow .camera_next {
	background: rgba(255,255,255,.1);
	width: 55px;
	height: 55px;
	transition: all .4s;
}
section.banner .fluid_container #slideshow .camera_prev:hover,
section.banner .fluid_container #slideshow .camera_next:hover {
	background: rgba(255,255,255,.2);
}
section.banner .fluid_container #slideshow .camera_prev {
	left: 15px;
}
section.banner .fluid_container #slideshow .camera_next {
	right: 15px;
}
section.banner .fluid_container #slideshow .camera_prev > span,
section.banner .fluid_container #slideshow .camera_next > span {
	background: none;
	color: #fff;
	text-align: center;
	display: block;
	font-size: 24px;
	line-height: 55px;
	width: 55px;
	height: 55px;
}
section.banner .fluid_container #slideshow .camera_prev > span::after,
section.banner .fluid_container #slideshow .camera_next > span::after {
	font-family: 'FontAwesome';
}
section.banner .fluid_container #slideshow .camera_prev > span::after {
	content: '\f0d9';
}
section.banner .fluid_container #slideshow .camera_next > span::after {
	content: '\f0da';
}

section.banner .fluid_container #slideshow > div > .camera_caption {
	display: none;
}
section.banner .fluid_container #slideshow .camera_caption {
	position: absolute;
	font-size: 58px;
	line-height: 1.25em;
	font-weight: bold;
	text-transform:uppercase;
   font-family: 'Didot-HTF-B06-Bold';
  text-shadow: 0px 7px 15.04px rgba(0, 0, 0, 0.75);
    text-align: center;
	left: 0;
	right: 0;
	top: -100px;
	bottom: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
section.banner.small .fluid_container #slideshow .camera_caption {
	display: none!important;
}
section.banner .fluid_container #slideshow .camera_caption > div {
	background: none;
	max-width: 75%;
	padding: 20px;
	opacity: 0;
	transform: translateX(-200%);
	-webkit-transform: translateX(-200%);
	animation: slide-in .5s forwards;
	-webkit-animation: slide-in .5s forwards;
}
@keyframes slide-in {
    100% {
    	transform: translateX(0%); 
    	opacity: 1;
    }
}
@-webkit-keyframes slide-in {
    100% {
    	-webkit-transform: translateX(0%); 
    	opacity: 1;
    }
}

section.banner .news-photo-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	background: #1a3c19;
}
section.banner .news-photo-wrapper .news-photo {
	position: absolute;
	left: -15px;
	right: -15px;
	top: -15px;
	bottom: -15px;
	background: center no-repeat;
	background-size: cover;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	opacity: .7;
}
section.banner .container {
	position: relative;
	height: 100%;
	pointer-events: none;
}
section.banner .container nav.main-nav {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
	background: #e74e3e;
	pointer-events: auto;
	z-index: 50;
}
section.banner .container nav.main-nav .sticky-nav {
	background: #e74e3e;
}

header.page-title {
	color: #4d4d4d;
	border-bottom: 1px solid #bababa;
	margin-bottom: 20px;
	padding: 25px 0 5px;
}
header.page-title h1 {
	margin: 0;
	font-weight: bold;
	font-size: 36px;
}
header.page-title h1 .date {
	display: block;
	float: right;
	background: #e74e3e;
	font-size: .5em;
	line-height: 1.4em;
	font-weight: bold;
	padding: 4px 10px;
	display: block;
	color: #fff;
	margin-top: 10px;
}
header.page-title .news-photo {
	position: relative;
	display: block;
	height: 400px;
	margin-bottom: -5px;
	border-bottom: 5px solid #9fc612;
	background: center no-repeat;
	background-size: cover;
}
header.page-title .news-photo h1 {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 15px;
	color: #fff;
}

header.page-title .news-photo::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30%;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}

article.content {
	padding-bottom: 25px;
}
.page-title h1 .subtitle1{color:#e74e3e}
article.content hr {
	border-color: #ddd;
}
article.content p {
    margin-bottom: 15px;
}
article.content ul {
    padding-left: 10px;
}
article.content ul li {
    list-style: none;
    background: url(../images/list-icon01.png) no-repeat 0 7px;
    padding-left: 20px;
}
article.content ul ul li {
    background-image: url(../images/list-icon02.png);
}
article.content .table-style {
	position: relative;
}
article.content .table-style th,
article.content .table-style td {
	border: 1px solid #e9e9e9;
	padding: 5px;
	
}
article.content .table-style th {
	background: #e74e3e;
	color:#fff;
}
article.content #News {
	position: relative;
}
article.content #News .news-item {
	position: relative;
	box-shadow: 0 0 2px rgba(0,0,0,.25);
	transition: all .4s;
	margin: 10px 0;
}
article.content #News .news-item:hover {
	box-shadow: 0 0 15px -3px rgba(0,0,0,.25);
}
article.content #News .news-item .news-item-header {
	position: relative;
	background: #353535;
	padding-bottom: 50%;
	overflow: hidden;
}
article.content #News .news-item .news-item-header .photo {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: center no-repeat;
	background-size: cover;
	transition: all .8s;
}
article.content #News .news-item:hover .news-item-header .photo {
	transform: scale(1.1);
}
article.content #News .news-item .news-item-header .photo.nophoto {
	background-image: url(../images/logo-no-photo.png);
	background-size: 50px;
}
article.content #News .news-item .news-item-header .date {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: #e74e3e;
	font-size: 12px;
	font-weight: bold;
	padding: 4px 10px;
	display: block;
	color: #fff;
}
article.content #News .news-item .news-item-content {
	position: relative;
	padding: 15px 20px 20px;
}
article.content #News .news-item .news-item-content h3 {
	color: #4d4d4d;
	margin: 0 0 10px;
	transition: all .4s;
}
article.content #News .news-item:hover .news-item-content h3 {
	color: #9fc612;
}
article.content #News .news-item .news-item-content p {
	padding: 0;
	margin: 0;
}
article.content #News .news-item .news-item-link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 20;
}
p.logos-links img {
    border: 1px solid rgba(0,0,0,0.35);
    padding: 8px;
    margin: 20px 5px}
aside.sidebar {
	position: relative;
	border: 5px solid #e9e9e9;
	padding: 15px 20px;
        margin: 30px 0;
}
aside.sidebar h1{
    font-size: 30px;}

aside.sidebar h2,
aside.sidebar h3,
aside.sidebar h4 {
	margin: 0 0 10px;
	font-size: 22px;
}
aside.sidebar hr {
	border-color: #e9e9e9;
}
aside.sidebar #openingTimesBlock .openingLine {
	margin: 0;
	padding: 5px 0;
	border-top: 1px solid #e9e9e9;
}
aside.sidebar #openingTimesBlock .openingLine:first-of-type {
	border-top: none;
}
aside.sidebar #openingTimesBlock .openingLine .openingDay {
	width: 29%;
    display: inline-block;
}
aside.sidebar #openingTimesBlock .openingLine .openingTime {
	width: 69%;
    display: inline-block;
	text-align: right;
}


/*------------------------------------------- BOXES ---------------------------*/

.boxes {
	background: url(../images/bg-boxes.jpg) center top no-repeat;
	background-size: cover;
      padding: 51px 0 78px;

	    color: #fff;
	    font-size:15px;

}
.boxes .row,
.boxes .row .col-sm-4 {
}
.boxes .box {
	position: relative;
	display:  table;
	margin:  auto;
	text-align:  center;
    padding: 29px 42px;
	border:  1px solid #fff;
	border-bottom: none;
	max-width: 365px;
	z-index:1;
	transition : background .5s, border .5s;
}
.boxes .box:hover{
	background:#e74e3e;

}
.boxes .box:before, .boxes .box:after{
	content: '';
    background:  #fff;
    position: absolute;
    left: 0;
    height: 1px;   
    bottom: 0px;
    z-index: -1;
    width: calc(50% - 54px);transition : background .5s;
}
.boxes .box:hover:before, .boxes .box:hover:after{
	
    background:  #fff0;
}
.boxes  .box:after{
	left: inherit;
    right: 0;
}
.boxes .box .icone {
    display: table;
    margin: auto;
    width: 134px;
    height: 133px;
    transition: background .5s;
    
}
.box.box04{
    
        padding: 19px 20px;
}

.boxes .box.box04 button{
        margin: 2px auto 0;
}
.boxes .box.box01 .icone{
	 background:  url(../images/bg-icones-box.png) center top no-repeat, url(../images/icone-box01.png) center no-repeat;
}
.boxes .box.box02 .icone{
	 background:  url(../images/bg-icones-box.png) center top no-repeat, url(../images/icone-box02.png) center no-repeat;
}
.boxes .box.box03 .icone{
	 background:  url(../images/bg-icones-box.png) center top no-repeat, url(../images/icone-box03.png) center no-repeat;
}
.boxes .box.box04 .icone{
	 background:  url(../images/bg-icones-box.png) center top no-repeat, url(../images/icone-box04.png) center no-repeat;
}
.boxes .box.box01:hover .icone{
	 background:  url(../images/bg-icones-box.png) center bottom no-repeat, url(../images/icone-box01.png) center no-repeat;
}
.boxes .box.box02:hover .icone{
	 background:  url(../images/bg-icones-box.png) center bottom no-repeat, url(../images/icone-box02.png) center no-repeat;
}
.boxes .box.box03:hover .icone{
	 background:  url(../images/bg-icones-box.png) center bottom no-repeat, url(../images/icone-box03.png) center no-repeat;
}
.boxes .box.box04:hover .icone{
	 background:  url(../images/bg-icones-box.png) center bottom no-repeat, url(../images/icone-box04.png) center no-repeat;
}
.boxes .box h2 {
	font-size: 24px;
	line-height: 25px;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	padding-bottom: 19px;
	margin-bottom: 0;
	margin-top: 30px;
	transition: color .6s;
}
.boxes .box:hover h2 {
	color: #fff;
}
.boxes .box button {
	position: absolute;
	display: table;
	left: 0;
	right: 0;
	text-transform:none;
	padding: 0px;
	font-size: 14px;
	background: none;
	color: #fff;
	margin: 13px auto 0;
	border: 2px solid #fff;

	letter-spacing:1px;
	width:  108px;
	height: 46px;
	transition: all .5s;
}

.boxes .box:hover button {
	background: #fff;
	color: #000;
	border: 2px solid #fff0;
}

a.link {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    opacity: 0;
}
section.cta {
    position: relative;
    background: url(../images/bg-cta.jpg) no-repeat center center;
        padding: 46px 0px;
    color: #fff;
    text-align: left;
    font-size: 20px;}
    
    
 section.cta a{
            float: right;
    color: #fff;
    text-decoration: none;
    margin-top: -81px;
    border: 1;
    border: 1px solid;
    padding: 20px 12px;
    font-size: 23px;
          }
section.cta a:hover{background:#fff;color:#000;}

 section.cta h3{
     color:#fff;
     font-size:28px;
     text-transform:none;
        font-family: 'Open Sans', sans-serif;
     
 }



footer.bottom {
	position: relative;
	padding: 25px 0;
}
footer.bottom h3 {
	border-bottom: 1px solid #ccc;
	margin: 0 0 10px;
	color: #4d4d4d;

	padding-bottom: 5px;
}
footer.bottom .social{float:right}
#ContainerBlockSocial{display:inline-block;margin:0 5px;float:none}
footer.bottom .social a.facebook::before{content:"\f09a"}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b > span{display:none}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b.addthis_32x32_style.addthis_button_google_plusone_share::before{content:"\f0d5"}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b.addthis_32x32_style.addthis_button_google_plusone_share{position:relative}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b.addthis_32x32_style.addthis_button_google_plusone_share #___plusone_0,footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b.addthis_32x32_style.addthis_button_google_plusone_share iframe{position:absolute!important;left:0!important;right:0!important;top:3px!important;opacity:0}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b::before,footer.bottom .social a.facebook::before{font-family:'FontAwesome';speak:none;font-size:18px;line-height:39px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;display:block;-webkit-font-smoothing:antialiased}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b, footer.bottom .social .facebook {display: inline-block; font-size: 0px;cursor: pointer;margin: 0 0 0 5px;position: relative; z-index: 1; color: #fff; background:#e74e3e;width: 38px; height: 38px;border-radius: 50%;text-decoration: none;transition: color .4s;float: none;text-align: center;}
footer.bottom .social #ContainerBlockSocial.addthis_toolbox .at300b:hover,footer.bottom .social a.facebook:hover{background:#343434;}
footer.bottom2 {border-top: 4px solid #e74e3e;}
.googlemaps_v2 label.modal-label {cursor: pointer;font-weight: 400;text-decoration: underline;margin: 0;z-index: 99;left: 0;right: 0;top: 0;bottom: 0;z-index: 10;}
footer.maps .googlemaps_v2 label.modal-label {cursor: pointer;font-weight: 400;text-decoration: underline;margin: 0;z-index: 99;position: absolute;left: 0;right: 0;top: 0;bottom: 0;z-index: 10;font-size: 0}
.googlemaps_v2 .modal__inner iframe {position: absolute;width: 100% !important;height: 100% !important;left: 0;right: 0;top: 0;bottom: 0;filter: grayscale(100%);transition: filter .4s;}
.googlemaps_v2 label.modal-label{border-bottom: 1px solid #d70303;text-decoration: none!important;line-height: 21px;color: #d70303;}
.googlemaps_v2 label.modal-label:hover{color:#d70303;border:none}


footer.maps{position:relative;height:253px;overflow:hidden;background:#eee}
footer.maps a:first-of-type{position:absolute;left:0;right:0;top:0;bottom:0;z-index:10;font-size:0}
footer.maps iframe {position: absolute;width: calc(100vw + 200px);height: 550px;left: -100px;right: -100px;top: -100px;bottom: -100px;filter: grayscale(100%);transition: filter .4s;}
footer.maps:hover iframe{filter:grayscale(35%)}

nav#MobileNavigation {
	display: none;
}
 
#footerSlideContainer a {
	color: #808080;
}

#scrollTopBtn{left:50%;right:auto!important;transform:translateX(-50%);background:#e74e3e!important; bottom: 65px!important; z-index: 100!important;}
#scrollTopBtn:hover{background:#343434!important; color:#fff!important;  }

div.cc-cookies {
    width: 100%;
    background: #e74e3e;
}
.cc-cookies a.cc-cookie-accept, 
.cc-cookies-error a.cc-cookie-accept, 
.cc-cookies a.cc-cookie-decline, 
.cc-cookies-error a.cc-cookie-decline, 
.cc-cookies a.cc-cookie-reset {
	background: rgba(0,0,0,.2) !important;
	color: #fff !important;
	margin: 0 10px;
}
.cc-cookies a:hover.cc-cookie-accept, 
.cc-cookies-error a:hover.cc-cookie-accept, 
.cc-cookies a:hover.cc-cookie-decline, 
.cc-cookies-error a:hover.cc-cookie-decline, 
.cc-cookies a:hover.cc-cookie-reset {
	background: #333 !important;
	color: #fff !important;
}

.formError,
.formError *,
#fancybox-wrap,
#fancybox-wrap *{
    box-sizing: content-box;
}
div#_atssh {
    bottom: 0;
}
#batibouw{
    position: ABSOLUTE;
    right: 380px !important;
    bottom: 40px !important;
    display: block;
}

@media only screen and (max-width : 1199px) {
    .boxes .box {
padding: 29px 15px;}
.box.box04{
    
        padding: 18px 5px;
        
}

    
	header.top {
	    background: url(../images/bg-header.jpg) 64% center no-repeat;
	}    
aside.sidebar h1{
    font-size: 22px;}
    section.cta {
 
    background: url(../images/bg-cta.jpg) no-repeat 55% center;
	}
	#batibouw {
    right: 550px !important;
    bottom: 10px !important;
}
}
@media only screen and (max-width : 1024px) {

	footer.bottom h3 {
		font-size: 21px;
	}
}
@media only screen and (max-width : 991px) {
       .mm-menu .mm-listview > li a:not(.mm-next):hover{ 
	    background: #e74e3e!important;
    color: #000!important;
    background: #e74e3e!important;
    color: #000!important;
}
	span.number {
		display: none;
	}
	span.number-responsive {
		display: inline-block;
	}
	header.top nav.mobile-nav {
		display: block;
		clear: both;
	}
	section.banner {
		height: 350px;
	}
	section.banner.small {
		height: 100px;
	}

	section.banner .fluid_container #slideshow .camera_prev,
	section.banner .fluid_container #slideshow .camera_next {
		display: none!important;
	}
	section.banner .fluid_container #slideshow .camera_caption {
		font-size: 38px;
	}
	section.banner .container {
		display: none;
	}
	article.content #News .news-item .news-item-header {
		padding-bottom: 75%;
	}
	header.page-title .news-photo {
		height: 250px;
	}
	aside.sidebar {
 
    margin: 74px 0;
}
	.boxes .box {
padding: 52px 20px 52px;
    margin: 35px auto;}
	section.cta a {float:left;margin-top:auto}
	footer.bottom .social {
    float: none;
}
	header.top {
	    background: url(../images/bg-header.jpg) 68% top no-repeat;
	    
	}

.boxes .box.box04 button {
margin: 13px auto 0;}

	section.cta {
 
    background: url(../images/bg-cta.jpg) no-repeat left center;
	}
	#batibouw {
    right: 67px !important;
    bottom: 65px !important;
}
	
}
@media only screen and (max-width : 767px) {
	header.top .logo {
		float: none;
		    text-align: center;

	}
	header.top .logo img {
		max-width: 100%;
	}
	header.top .cta {
		float: none;
		text-align: center;
		display: block;
		background: #f5f5f5;
	}
	section.banner {
		height: 300px;
	}
	section.banner .slogan br {
		display: none;
	}
	header.page-title .news-photo::before {
		height: 60%;
	}
	article.content #News .news-item {
		margin: 20px 0;
	}
	article.content #News .news-item .news-item-header {
		padding-bottom: 60%;
	}
	
	section.boxes {
		padding-top: 25px;
	}
		header.top{
	background: url(../images/bg-header.jpg) no-repeat;}
	section.googlemaps .box_googlemaps {
		mix-blend-mode: normal;
	}
	section.cta {
 
    background: url(../images/bg-cta.jpg) no-repeat left center;
    background-size: cover;
	}
	
}
@media only screen and (max-width : 480px) {
	section.banner .fluid_container #slideshow .camera_caption {
		font-size: 28px;
	}
		h1, .h1 {
		font-size: 28px!important;
	}
	h2, .h2 {
		font-size: 22px!important;
	}
	h3, .h3 {
		font-size: 21px;
	}
	h4, .h4 {
		font-size: 20px;
	}
	h5, .h5 {
		font-size: 19px;
	}
	h6, .h6 {
		font-size: 17px;
	}
	#batibouw {
    right: 270px !important;
    bottom: 10px !important;
}
}
#btp_id > img{
        width: 70px;
}