/*-- NO FLEXBOX --*/

.no-js .flex_container,
.no-js .flex_item{
	margin:auto;}
.no-js .flex_item{
	display:inline-block;
	vertical-align:top;
	margin-right:-4px;}

.no-flexbox .flex_container{
	margin: 0 auto;}
.no-flexbox .flex_container:before,
.no-flexbox .flex_container:after{
  content: "";
  display: table;
  clear: both;}
.no-flexbox [class*='flex_item'] {
  float: left;
  padding-right: 20px;}
.no-flexbox .flex_container [class*='flex_item']:last-of-type {
  padding-right: 0;}

@media (max-width : 850px) {
	.no-flexbox [class*='flex_item'] {
		padding-right:0;}
}

/*-- FLEXBOX --*/

.flexbox .flex_container{
    display: -ms-flexbox;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-ms-box-align: center;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;

	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;

	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;

	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;

	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	align-content: flex-start;
}
.flex_container.submenu{
	justify-content:center;
}
.flex_container.nowrap{
	flex-wrap: nowrap;
}
.flexbox .flex_item.start{
	-webkit-align-self: flex-start;
	-moz-align-self: flex-start;
	-ms-align-self: flex-start;
    align-self: flex-start;}
.flexbox .flex_item.middle{
	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
    align-self: center;}
.flexbox .flex_item.end{
	-webkit-align-self: flex-end;
	-moz-align-self: flex-end;
	-ms-align-self: flex-end;
    align-self: flex-end;}
.flexbox .flex_item{
	-webkit-flex: 1 auto;
	-moz-flex: 1 auto;
	-ms-flex: 1 auto;
	flex: 1 auto;}

.container{
    width:100%;
    max-width:100%;
    margin:auto;}
.container_1600{
    width:100%;
    max-width:1600px;
    margin:auto;}
.container_1400{
    width:100%;
    max-width:1400px;
    margin:auto;}
.container_1200{
    width:100%;
    max-width:1200px;
    margin:auto;}
.container_1100{
    width:100%;
    max-width:1100px;
    margin:auto;}
.container_1000{
    width:100%;
    max-width:1000px;
    margin:auto;}
.container_900{
    width:100%;
    max-width:900px;
    margin:auto;}
.container_800{
    width:100%;
    max-width:800px;
    margin:auto;}

.width10{width:10%;}
.width15{width:15%;}
.width20{width:20%;}
.width25{width:25%;}
.width30{width:30%;}
.width33{width:33.33%;}
.width35{width:35%;}
.width40{width:40%;}
.width45{width:45%;}
.width50{width:50%;}
.width55{width:55%;}
.width60{width:60%;}
.width65{width:65%;}
.width66{width:66.66%;}
.width70{width:70%;}
.width75{width:75%;}
.width80{width:80%;}
.width85{width:85%;}
.width90{width:90%;}
.width100{width:100%;}

@media (max-width : 720px) {
	.width10,
	.width15,
	.width20,
	.width25,
	.width30,
	.width33,
	.width35,
	.width40,
	.width45,
	.width50,
	.width55,
	.width60,
	.width65,
	.width66,
	.width70,
	.width75,
	.width80,
	.width85,
	.width90,
	.width100{
		width:100%;
		max-width:100%;}
}

/*-- LAYOUT --*/

body{}
img.bg {
	min-height: 100%;
	min-width: 1024px;
	width: 100%;
	height: auto;
	position: fixed;
	opacity:0.8;
	top: 0;
	left: 0;
	z-index:0;}
@media screen and (max-width: 1024px) { /* Specific to this particular image */
img.bg {
  left: 50%;
  margin-left: -512px;}
}

.bgcontainerTop,
.bgcontainerMid,
.bgcontainerBot{
	background-color: rgba(255,255,255,0.9);
	border-color:rgba(31, 73, 125, 0.5);
	border-width: 0 1px;
	border-style: solid;}

.bgcontainerTop{
	/* margin-top:20px; */
	border-top-width: 1px;
	box-shadow: 0px -1px 5px -1px rgba(31, 73, 125, 0.8);
}
.bgcontainerMid{
	box-shadow:
		5px 0 6px -7px rgba(31, 73, 125, 0.8),
		-5px 0 6px -7px rgba(31, 73, 125, 0.8);
}
.bgcontainerBot{
	border-bottom-width: 1px;
	box-shadow: 0px 1px 5px 0px rgba(31, 73, 125, 0.8);
}

header{
	position:relative;
	z-index:2;
	margin-top:80px;}
	.logo_wrap{
		flex:1 auto;
		min-height:100px;
		max-height:150px;}
    .logo_wrap a{
      max-height:inherit;
			display:block;
			margin-top:-30px;}
      .logo_wrap img.logo{
				max-width:100%;
				margin-left:50px;
        max-height:inherit;}
	.menusearch .searchinput,
	.search_wrap .searchbox .searchinput{
		font-size:0.9em;
		/* font-style:italic; */
		max-width:250px;
		width:90%;
		height:35px;
		border:1px solid #d7e1e9;
		color:#224F8B;
		padding:0 3px;
		margin-right:30px;
		background-image:url(../img/loupe.png);
		background-repeat:no-repeat;
		background-position:92% center;}
	.menusearch .searchinput{
		border:1px solid transparent;
		background-color: transparent;
		background-position:2% center;}
	.search_wrap .searchbox .searchinput:focus{
		background-image:none;}
	.menusearch .searchinput:focus{
		border-bottom:2px solid #d7e1e9;
		background-image:none;}
	.partner_wrap{
		max-width:150px;}
	.menusearch{display:none;}
	.menu_wrap{
		flex:2 auto;
		padding:0;
		background-color:#224F8B;}
		.no-flexbox .mini-menu_wrap{
			float:right;
			padding:40px;}
      .mini-menu_wrap{
        display:none;}
		.mini-menu_wrap .fa-bars{
			cursor:pointer;
			margin:10px 20px;
			color:#224F8B;}
		.main-nav ul {
			margin: 0;
			padding: 0;
			display: flex;
			flex-wrap: nowrap;
			justify-content: space-between;
			justify-content: center;
			justify-content:flex-start;
			list-style: none;
      height:60px;}
		.main-nav ul li a{
      height:60px;
			padding:0 20px;
      display: flex;
      flex-direction: column;
			justify-content: center;}
		.main-nav ul li.active a{
			background-color:#0f416a;}

@media (max-width : 1000px) {

}
@media (max-width : 800px) {
	.mini-menu_wrap{
		display:block;
    height:auto;
		width:20%;
		text-align:right;}
	.partner_wrap{
		width:30%;}
		.partner_wrap img{
			margin-top:-20px;}
	.search_wrap{display:none;}
	.menusearch{display:block;}
	.menusearch .searchinput{
		margin:0 20px 20px;
		max-width:calc(100% - 20px);}
	.logo_wrap{
		width:50% !important;
		min-height:auto;}
  .menu_wrap{
		display:none;
    width:100%;
    background-color:#f2f2f2;}
  .main-nav ul{
		flex-wrap: wrap;
    height:auto;
    padding-bottom:10px;}
  .main-nav li.active,
  .main-nav li{
		text-align: right;
		width:33%;
    height:35px;
		padding:4px;}
	.main-nav ul li a{
		text-align: left;
		display:block;
		height:auto;}
	.main-nav ul li.active a{
		background:none;}
	.logo_wrap img.logo{
		margin-left:20px;
		max-width:200px;}
}

.submenu{
	background-color:rgba(31, 73, 125, 0.2);
}
.submenu{

}
.submenu li{
	padding:5px 0;
}
.submenu li:last-of-type a{
	border-right: 1px solid rgba(31, 73, 125, 0.2);
}
.submenu li a{
	border-left: 1px solid rgba(31, 73, 125, 0.2);
	padding:10px 20px;
	display:inline-block;
	color:#224F8B;
	font-weight:600;
	text-decoration: none;
}


section,
main{
	z-index:2;
	position:relative;
  min-height:100px;}

.slider{}
.slider_big li{
	height:100%;
	background-size:cover;
	background-position:center;
  position:relative;}
.slider_big li:before{
	content:'';
	background-color:rgba(0, 0, 0,0);
	position:absolute;
	top:0; bottom:0;
	left:0; right:0;
	height:100%; width:100%;
	z-index:0;
}
/* .slider_big li .slidertext:before{
	content:'';
	background-color:rgba(0, 0, 0,0.4);
	background-image:url('../img/bg.jpg');
	opacity : 0.2;
	position:absolute;
	top:-400px; bottom:0;
	left:0; right:0;
	height:calc(100% + 800px); width:100%;
	z-index:0;
} */
.slider_big li .top{
  top:10%;}
.slider_big li .bottom{
  bottom:10%;}
.slider_big li .left{
  left:10%;}
.slider_big li .right{
  right:10%;
  text-align: right;}
.slider_big li .slidertext{
	position:absolute;
	max-width:40%;
	padding:20px;
	z-index:2:}
.slider_big li h2 span{
	/* background-color:rgba(31, 73, 125,0); */
	display:inline-block;
  color:#fff;
  padding:0 10px;
  font-size:1.8em;
  font-weight:400;
	z-index:5;
  /* line-height:1.8em; */}
.slider_big li h2{margin-bottom:0;}
.slider_big li h2 span b{
    font-weight:700;}
.slider_big li .slidertext .introtext{
	color:#fff;
	font-size:1.3em;
	display:inline-block;
	padding:0 10px;
	background-color:rgba(31, 73, 125,0);}
.slider_big li .slidertext .itemtext{
	color:#fff;
	font-size:0.9em;
	display:inline-block;
	padding:0 10px;
	background-color:rgba(31, 73, 125,0.5);
	background-color:rgba(255, 255, 255,0);}

@media (max-width : 750px) {
	.slider_big li .slidertext{
		/* background-color:rgba(255,255,255,0.2); */
		max-width: calc(100% - 80px);
		padding:0;}
	.slider_big li .top{
		top:20px;}
	.slider_big li .bottom{
		bottom:20px;}
	.slider_big li .left{
		left:40px;}
	.slider_big li .right{
		right:40px;}
}

/*
.visual figure{
    position:relative;
    height:100%;
    max-width:100%;}
*/



@media (max-width : 1000px) {

}

@media (max-width : 850px) {

}

@media (max-width : 750px) {
	.clusters .flex_item{
        min-width:100%;}
    .clusters article:not(.readmore){
        border-bottom:0px solid #C2C6C9;
        min-height:10%;}
}



footer{
	padding:20px 20px 30px 20px;
  border-top:1px solid rgba(31, 73, 125, 0.5);
background-color:rgba(31, 73, 125, 0.4);}
footer .small_logo{
	max-width: 150px;
}

@media (max-width : 850px) {}



section{}
  .slider_big{
    overflow:hidden;}
	.slider_big,
	.slider_big li{
    min-height:300px;
    height:50vh;}

    .slider_medium{
        overflow:hidden;
        border-bottom:7px solid #97B638;}
	.slider_medium,
    .slider_medium li{
    	min-height:220px;
        height:30vh;}

    .slider_small{
	   overflow:hidden;
        border-bottom:4px solid #97B638;}
	.slider_small,
    .slider_small li{
    	min-height:150px;
        height:22vh;}

    .slider_big li,
    .slider_medium li,
    .slider_small li{
        background-repeat:no-repeat;
        background-size:cover;}
    .slider_big li{
        background-position:center;}
    .slider_medium li{
        background-position:center;}
    .slider_small li{
        background-position:center 60%;}
    .bx-wrapper .bx-controls-direction a{
        height:100%;}



/*
section .container .formulier,
section .container .map,
section  #form{
    flex:1 0 60%;
    vertical-align: top;
    min-width:380px;}
*/
#contactmap{
    width:100%;
    height: 400px;}
#contactmap iframe{
    pointer-events: none;}

.contactgegevens .titel{
	font-weight:600;
	font-size:1em;}
.contactgegevens .titel:before{
	font-family: "fontAwesome";
	color: darkred;
	padding-right:7px;}
.contactgegevens .tit_adres:before{
	content: "\f041";}
.contactgegevens .tit_telefoon:before{
	content: "\f10b";}
.contactgegevens .tit_email:before{
	content: "\f0e0";}

#form{
    margin:0;
    padding:0;}
#form fieldset{
    padding:0;
    display:inline-block;
    border:none;
    margin:0 -2px 10px 0;
    box-sizing:border-box;
    vertical-align: top;
	text-align: left;}
#form fieldset.field_50{
    width:calc(50% - 1px);}
#form fieldset.field_80{
    width:calc(80% - 1px);}
#form fieldset.field_20{
    width:calc(20% - 1px);}
#form fieldset.field_100{
    width:calc(100% - 1px);}
#form .form_error{
    margin:0;
    padding:0 0 0 5px;
    font-size:0.85em;
    font-weight:500;
    color: firebrick;
    line-height:1.7em;
    display:none;}
#form fieldset input[type=text],
#form fieldset textarea{
    padding:5px;
    margin:0;
    font-size:0.85em;
    font-weight:400;
/*    box-sizing:border-box;*/
/*    border-radius:3px;*/
    border:0;
    border-bottom:1px solid #aaa;
/*    font-family: 'Hind', sans-serif;*/
    font-weight:300;}
#form fieldset input[type=text]{
	-webkit-width:calc(100% - 10px);
	-moz-width:calc(100% - 10px);
	-o-width:calc(100% - 10px);
    width:calc(100% - 10px);
    height:45px;}
#form fieldset textarea{
	-webkit-width:calc(100% - 8px);
	-moz-width:calc(100% - 8px);
	-o-width:calc(100% - 8px);
    width:calc(100% - 8px);
    min-height:150px;
    resize:vertical;}
#form fieldset .vul_in{
    border-bottom-color:firebrick;
    background-color:#efefef;}
textarea:focus, input:focus{
    outline:none;}
#form .submit_row{
    text-align: right;}
/*
#form fieldset input[type=submit]{
    padding:7px 10px;
    margin:0 7px 0 0;
    font-size:0.85em;
    font-weight:400;
    box-sizing:border-box;
    border-radius:3px;
    border:1px solid #ddd;
    background-color: #ddd;}
*/
#form fieldset input[type=submit]{
	color:#fff;
	height:40px;
	line-height:40px;
	border-radius:22px;
	border:none;
	display:inline-block;
	font-weight:500;
	text-decoration: none;
	padding:0 20px;}
.required{
    position: absolute;
	height:0px !important;
    padding:0;
    margin:0 !important;
	overflow:hidden;}
::-webkit-input-placeholder{
   font-style: italic;
    color:#aaa;}
:-moz-placeholder{
   font-style: italic;
    color:#aaa;}
::-moz-placeholder{
   font-style: italic;
    color:#aaa;}
:-ms-input-placeholder{
   font-style: italic;
    color:#aaa;}


/*-- BUTTONS --*/

.button{
	color:#fff;
	height:44px;
	line-height:46px;
	border-radius:22px;
	display:inline-block;
	font-weight:300;
/*	text-transform: uppercase;*/
	text-decoration: none;
	padding:0 15px 0 20px;}
.button:after{
    height:20px;
    width:20px;
    line-height:17px;
    text-align:center;
    border-radius:10px;
    display:inline-block;
    border:2px solid #fff;
	font-family: 'fontAwesome';
	content: "\f107";
	margin-left:15px;}

.link{
	color:#777;
	height:44px;
	line-height:46px;
	border-radius:22px;
	border:1px solid #777;
	display:inline-block;
	font-weight:300;
	text-decoration: none;
	padding:0 20px;
	white-space: nowrap;
    background-color:#fff;}
.link:hover{
    background-color:#f3d083;
}
.link:after{
    line-height:19px;
    display:inline-block;
	font-family: 'fontAwesome';
	content: "\f105";
	margin-left:15px;}

.sub{
	color:#777;
	min-height:33px;
/*	line-height:35px;*/
	border-radius:17px;
	border:1px solid #777;
	display:inline-block;
	font-weight:300;
	text-decoration: none;
	padding:4px 15px;
	margin:0 15px 10px 0;
    line-height:1.5;
/*	white-space: nowrap;*/
    background-color:#fff;
/*	min-width:250px;*/
/*	max-width:280px;*/
}
.sub.active,
.sub:hover{
    color:#1c5661;
	font-weight:500;}
.sub:before{
    line-height:19px;
    display:inline-block;
	font-family: 'fontAwesome';
	content: "\f105";
	margin-right:8px;}

/*
.bottom{
    color:#fff;
	height:35px;
	line-height:35px;
	border-radius:15px 15px 0 0;

    position:fixed;
    bottom:0;
    left: 50%;
    transform: translate(-50%, 0);
	font-weight:300;
	text-transform: uppercase;
	text-decoration: none;
	padding:5px 10px;
    background-color:#1c5661;}
.bottom:after{
    height:20px;
    width:20px;
    line-height:15px;
    text-align:center;
	padding-left:1px;
    border-radius:10px;
    display:inline-block;
    border:2px solid #fff;
	font-family: 'fontAwesome';
	content: "\f106";}
*/



/*-- MISCELLANEOUS --*/

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
	background-color:rgba(255,255,255,0.8);
	z-index: 999;
}
.sticky:before,
.sticky:after {
    content: '';
    display: table;}

.bg_gifgroen{
	background-color:#97B72A;}
.bg_lichtgroen{
	background-color:#E4EFC4;}


.border_dashed{
    border-width:0px;
    border-style: dashed;}
.border_dotted{
    border-width:0px;
    border-style: dotted;}
.border_gifgroen{
    border-width:1px;
	border-color:#97B72A;}
.border_bottom_gifgroen{
	border-bottom-width:1px;
	border-bottom-color:#97B72A;}
.border_top_gifgroen{
	border-top-width:1px;
	border-top-color:#97B72A;}
.border_left_gifgroen{
	border-left-width:1px;
	border-left-color:#065190;}
.border_right_gifgroen{
	border-right-width:1px;
	border-right-color:#97B72A;}

.gray{
	color:#888;}
.black{
	color:#000;}
.firebrick{
	color: firebrick;}
.gifgroen{
  color:#97B72A;}
.blue{
	color: #065190;}
article .highlight{
  background-color:#fdff87;}


hr{
    display:block;
    height:1px;
    border:0;
    border-top: 1px solid #065190;
    margin:1em 0;
    padding:0;}
hr.fat{
    border-width:5px;}
hr.lichtgroen{
	border-color:#E4EFC4;}
.objcentered{
    margin:auto;
}

.margin10_30{
    margin:10px 30px;}
.margin15_30{
    margin:15px 30px;}
.margin20_30{
    margin:20px 30px;}
.margin10_40{
    margin:10px 40px;}
.margin15_40{
    margin:15px 40px;}
.margin20_40{
    margin:20px 40px;}
.margin10_50{
    margin:10px 50px;}
.margin15_50{
    margin:15px 50px;}
.margin20_50{
    margin:20px 50px;}
.margin10{
    margin:10px;}
.margin20{
    margin:20px;}
.margin30{
    margin:30px;}
.margin40{
    margin:40px;}
.margin50{
    margin:50px;}
.nomargin{
	margin:auto;}
@media (max-width : 720px) {
    .margin10_30,
    .margin15_30,
    .margin20_30,
    .margin10_40,
    .margin15_40,
    .margin20_40,
    .margin10_50,
    .margin15_50,
    .margin20_50,
    .margin10,
    .margin20,
    .margin30,
    .margin40,
    .nomargin{
        margin:20px;
    }
}
article.marginauto{
	margin-left:auto;
	margin-right:auto;}

.padding10{
    padding:10px;}
.padding20{
    padding:20px;}
.padding30{
    padding:30px;}
.padding40{
    padding:40px;}
.nopadding{
    padding:0;}
@media (max-width : 720px) {
    .padding10,
    .padding20,
    .padding30,
    .padding40,
    .nopadding{
        padding:20px;}
}

/*
article .album{
    margin:30px 0;}
article .album div{
    max-height:150px;
    padding-right:10px;
    margin-bottom:10px;}
article .album div img{
    height:100%;
    width:100%;}
*/
.teamsocials{
	margin-top:10px;}
.teamsocials a{
	display:inline-block;
	width:30px;}
.teamsocials .fa{
	font-size: 1.8em;}

.clear{clear:both;}
.clear_5{clear:both;height:5px}
.clear_10{clear:both;height:10px}
.clear_15{clear:both;height:15px}
.clear_20{clear:both;height:20px}
.clear_30{clear:both;height:30px}
.clear_40{clear:both;height:40px}
.clear_50{clear:both;height:50px}

.respclear_15{clear:both;height:15px}
.respclear_20{clear:both;height:20px}
.respclear_30{clear:both;height:30px}
.respclear_40{clear:both;height:40px}
.respclear_50{clear:both;height:50px}
@media (max-width : 720px) {
	.respclear_15,
	.respclear_20,
	.respclear_30,
	.respclear_40,
	.respclear_50{height:10px}
}

.centered{
	text-align: center;}
.lefted{
	text-align: left;}
.righted{
	text-align: right;}
figure img{
	display:block;
	max-width:100%;}
figure.icon img{
	width:80px;
	max-width:100%;
	margin:auto;}
.objectfit img{
	object-fit: cover;}

.datatable{
	display:table;}
.datarow{
	display:table-row;}
.datacel{
	display:table-cell;}
.notify{
    background-color:#97B72A;
    border-radius: 50%;
    color:#fff;
    text-align: center;
    display:inline-block;
    font-size:0.7em;
    font-weight:600;
    line-height:20px;
    width:20px;height:20px;
    margin-left:20px;}

.example{
    min-height:200px;
    padding:20px;
    display:inline-block;
    resize:horizontal;
    overflow:auto;
    border-radius:8px 8px 0 8px;
    border:1px solid #ccc;}
.example .flex_container{
    background-color: blueviolet;
    min-height: 100px;
    padding:10px;
}
.example .flex_item{
}
 .example .flex_item div{
    background-color: deeppink;
    min-height: 100px;
    margin:10px;
    padding:5px;
}
pre{
    background-color:#efefef;
    display:inline-block;
    margin-top:15px;
    padding:10px;
    border-radius:8px;
    border:1px solid #ccc;}
code{
    font-family: monospace;
    font-size:110%;}
