* {
	box-sizing						: border-box;
	margin							: 0;
}

html {
	overflow-x						: hidden;
}

body {
	margin							: 0;
	max-width						: 100%;
	overflow-x						: hidden;
}

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




/*============== SITE ====================================================*/

.site {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
	
	position						: relative;
	bottom							: 100%;
	left							: 0;
	top								: 0;
	
	height							: 100%;
	min-height						: 100%;
	min-height						: 100vh;
	min-width						: 100%;

	z-index							: 1;
}

.site-uitklap {
	box-shadow						: 0 0 5px 5px rgba(0,0,0,0.75);
	transition						: left 0.25s ease-in;
}

.body-uitklap {
	overflow						: hidden;
	position						: fixed;
	width							: 100%;
}

.site-header {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.site-submenu {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.site-submenu-items {
	-webkit-border-radius			: 15px;
	-moz-border-radius				: 15px;
	border-radius					: 15px;
	
	box-sizing						: border-box;
	min-width						: 250px;
	margin-right					: 40px;
	margin-top						: 60px;
	overflow						: hidden;
	padding							: 20px;
}

.site-submenu h2 {
	margin-bottom					: 20px;
}

.site-submenu ul {
	list-style						: none;
	margin							: 0;
	padding							: 10px 20px;
	text-align						: center;
}

.site-submenu li {
	display							: inline-block;
	font-weight						: normal;
	width							: 100%;
}

.site-submenu li hr {
	border							: 0;
	margin							: 5px 0 5px 25%;
	
	height							: 1px;
	width							: 50%;
	
	text-align						: center;
}

.site-submenu li:last-of-type hr {
	display							: none;
}

.site-submenu li a {
	display							: block;
	text-decoration					: none;
}

.site-submenu li a:hover {
	
}

.site-submenu li a.actief {
	cursor							: default;
}




/* ============== 404 ============================================== */

.error404 {
	min-height					: 300px;
	background-image			: url("../img/error-404.png");
	background-color			: rgb(190,133,28);
	background-repeat			: no-repeat;
    background-position			: left center;
    background-size				: cover;
    
    font-size					: 50px;
    font-weight					: 300;
    text-align					: center;
	color						: rgb(255,255,255);
	
	margin						: 40px;
	padding						: 50px;
}



/*============== HOMEPAGE ================================================*/

.homepage-regel-container {
	width							: 100%;
}

.homepage-blok-container {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-box-flex				: 1 0 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 0;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 0;	/* IE 10 */
	-webkit-flex					: 1 0 0;	/* NEW - Chrome */
	flex							: 1 0 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	list-style						: none;
    margin							: 0;
    padding							: 0;
}

.homepage-blok-container .homepage-blok {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.homepage-blok {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
}


.homepage-blok-button-container {
	margin							: 0 1.5rem;
}


/*============== CONTENT =================================================*/

.site-content {
	box-sizing						: border-box;
	margin							: auto;
	width							: 100%;
	
	-webkit-box-flex				: 1 0 auto;		/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 auto;		/* OLD - Firefox 19- */
	-ms-flex						: 1 0 auto;		/* IE 10 */
	-webkit-flex					: 1 0 auto;		/* NEW - Chrome */
	flex							: 1 0 auto;		/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.content-met-submenu {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.main-content {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.volledigbreed,
.main-content section.volledigbreed {
	max-width						: 100%;
	width							: 100%;
}

.volledigbreed section {
	margin							: auto;
	width							: 100%;
}

.maxcontentbreedte,
.main-content section,
.site-content.content-met-submenu {
	max-width						: 1200px;
	width							: 100%;
    margin							: auto;
}

.submenu-infoblok {
	
}
.site-content section .submenu-infoblok ul,
.site-content section .submenu-infoblok ol {
    padding							: 10px;
    margin							: 10px 0px;
    text-align						: left;
	display							: inline-block;
}

.menu-infoblokken
{
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.menu-infoblok
{
	position				: relative;
	flex					: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	text-align				: center;
	padding					: 10px 10px 80px 10px;
	margin-bottom			: 20px;
}

.menu-infoblok
{
	cursor					: pointer;
}

div .menu-infoblok-icon
{
    display					: inline-block;
    width					: 170px;
    height					: 170px;
    border					: 2px solid rgb(94,95,97);
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
    margin-bottom			: 20px;
}
    
div .menu-infoblok-icon:before
{
    font-size				: 8em;
    line-height				: 1.25;
}

.menu-infoblok h2
{
	font-size				: 2.2rem;
	line-height				: 1.2;
}

.menu-infoblok .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(190,133,28);
	color					: rgb(0,0,0);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(190,133,28);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(190,133,28);
    border-color			: rgb(190,133,28);
}





/*============== COLLAPSABLES =============================================*/
.collapsable
{
	width							: 100%;
	float							: none;
}

.collapsable-header
{
	cursor							: pointer;
}

.collapsable-header > span
{
	margin-right					: 10px;
}

.collapsable .inputregel_label
{
    width							: 100%;
}




/*============== FOOTER ==================================================*/

.site-footer {
	height							: auto;
	margin-top						: 20px;
}

.site-footer section {
	margin							: auto;
	width							: 100%;
}

.footer-copyright div {
    margin							: 0px 10px;
}


/*============== MOBILE NAV ==============================================*/

.mobile-nav {
	display							: none;
	
	height							: 100%;
	width							: 100%;

	position						: fixed;
	bottom							: 0;

	left							: 50px;
	right							: 0;
	top								: 0;
	
	list-style						: none;
	overflow						: scroll;
	z-index							: 0;
}

.mobile-nav h2 {
	font-weight						: normal;
	margin							: 10px;
}

.mobile-nav ul {
	list-style						: none;
	margin							: 20px 0 0 0;
	padding							: 0px;
}

.mobile-nav li {
	font-weight						: normal;
}

.mobile-nav li:first-child {
	
}

.mobile-nav li a {
	display							: block;
	padding							: 10px;
}

.mobile-nav li a:hover {
 
}

.mobile-nav li a.actief {
	cursor							: default;
}

.mobile-nav ul li ul{
	margin							: 0 0 0 0px;
}

.mobile-nav ul li ul li a {
	padding-left					: 20px;
}




/*============== HEADER BOVENBALK ========================================*/

.bovenbalk {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	
	width							: 100%;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;

	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
	
	-webkit-align-items				: center;
	align-items						: center;
}


.bovenbalk span {
	font-weight						: normal;
	margin							: 0;
	padding							: 0;
}

.bovenbalk span:before {
	font-weight						: normal;
	margin-right					: 5px;
	padding							: 0;
}

.bovenbalk a {
	
}

.bovenbalk a:hover {

}




/*============== HEADER VISUAL ===========================================*/

.header-visual {
	position						: relative;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.header-visual-home {
	position						: relative;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.header-visual-home,
.header-visual {
	overflow						: hidden;
}

.visual {
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	height							: inherit;
}




/*============== BUTTONS =================================================*/

.button {
	border							: 0;
	cursor							: pointer;
	display							: inline-block;
	font-weight						: normal;
	padding							: 0 20px;
}

.button_met_icon {
	display							: block;
 	padding							: 0;
}

.button-tekstueel {
	display							: inline-block;
	padding							: 0 20px;
}

.button_met_icon span {
	margin-right					: 10px;
}

.button_met_icon span:before {
	
}




/*============== PAYOFF HEADER ===========================================*/

.payoffheader {
	margin							: auto;

	height							: inherit;
	min-height						: inherit;
	width							: 100%;

	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-justify-content			: center;
	justify-content					: center;

	padding							: 20px;
}

.payoffheader_content {
	
}

.payoffheader h2 {
	margin							: 0;
}

.payoffheader h3 {
	
}

.payoffheader span {
	
}

.payoffheader button {
	padding							: 0 20px;
}




/*============== HEADER NAVIGATIE ========================================*/

.hoofdnav {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	width							: 100%;
}

.hoofdnav ul {
	list-style						: none;
	margin							: 0;
	padding							: 0 20px;
	text-align						: center;
}

.hoofdnav li {
	display							: inline-block;
	font-weight						: normal;
}

.hoofdnav li:last-child {
	border-right					: 0;
}

.hoofdnav li a {
	display							: block;
	padding							: 0 20px;
	text-decoration					: none;
}

.hoofdnav li a:hover {
	
}

.hoofdnav li a.actief {
}

.icon-menu {
	
}

.icon-menu:hover {
	
}





/*============== HEADER NAVIGATIE SUB UITKLAP ============================*/

.hoofdnav li ul {
	display							: none;
	position						: absolute;
	text-align						: left;
}

.hoofdnav li ul li {
	display							: block;
}

.hoofdnav li li {
	border-right					: 0;
	height							: auto;
}

.hoofdnav li:hover ul {
	z-index							: 99;
	display							: block;
}





/*============== CONTENT ALGEMENE INDELING ===============================*/

section {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

	margin-bottom					: 20px;
	padding							: 0;
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: space-between;
	justify-content					: space-between;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

section div {
	margin-bottom				: 0px;
}

.section-zelfde-hoogte {
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.fixed-width-250 {
	margin							: 0;
	margin-right					: 20px;
	padding							: 0;
	
	width							: 250px;
	
	-webkit-box-flex				: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0;	/* OLD - Firefox 19- */
	-ms-flex						: 0;	/* IE 10 */
	-webkit-flex					: 0;	/* NEW - Chrome */
	flex							: 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div2-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 14%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 14%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 14%;	/* IE 10 */
	-webkit-flex					: 1 0 14%;	/* NEW - Chrome */
	flex							: 1 0 14%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div3-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 23%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 23%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 23%;	/* IE 10 */
	-webkit-flex					: 1 0 23%;	/* NEW - Chrome */
	flex							: 1 0 23%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div4-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 31%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 31%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 31%;	/* IE 10 */
	-webkit-flex					: 1 0 31%;	/* NEW - Chrome */
	flex							: 1 0 31%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div5-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 39%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 39%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 39%;	/* IE 10 */
	-webkit-flex					: 1 0 39%;	/* NEW - Chrome */
	flex							: 1 0 39%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div6-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 48%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 48%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 48%;	/* IE 10 */
	-webkit-flex					: 1 0 48%;	/* NEW - Chrome */
	flex							: 1 0 48%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div7-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 56%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 56%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 56%;	/* IE 10 */
	-webkit-flex					: 1 0 56%;	/* NEW - Chrome */
	flex							: 1 0 56%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div8-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 65%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 65%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 65%;	/* IE 10 */
	-webkit-flex					: 1 0 65%;	/* NEW - Chrome */
	flex							: 1 0 65%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div9-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 73%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 73%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 73%;	/* IE 10 */
	-webkit-flex					: 1 0 73%;	/* NEW - Chrome */
	flex							: 1 0 73%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div10-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 81%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 81%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 81%;	/* IE 10 */
	-webkit-flex					: 1 0 81%;	/* NEW - Chrome */
	flex							: 1 0 81%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div11-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 89%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 89%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 89%;	/* IE 10 */
	-webkit-flex					: 1 0 89%;	/* NEW - Chrome */
	flex							: 1 0 89%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div12-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 98%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 98%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 98%;	/* IE 10 */
	-webkit-flex					: 1 0 98%;	/* NEW - Chrome */
	flex							: 1 0 98%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.standaard-padding {
	box-sizing						: border-box;
	padding							: 20px;
}

.standaard-padding-boven-groot {
	box-sizing						: border-box;
	padding							: 40px 0 0 0;
}

.standaard-padding-boven {
	box-sizing						: border-box;
	padding							: 20px 0 0 0;
}

.standaard-padding-behalve-rechts {
	box-sizing						: border-box;
	padding							: 20px 0 20px 20px;
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 20px 0;
	
	height							: 20px;
	width							: 100%;
}





/*============== CONTENT =================================================*/

.content-naast-elkaar {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.mobilenietzichtbaar {
	
}

.mobilewelzichtbaar {
	display							: none;
}

.toggle1nietzichtbaar {
	
}

.toggle1welzichtbaar {
	display							: none;
}

.toggle2nietzichtbaar {
	
}

.toggle2welzichtbaar {
	display							: none;
}

.uitlijning-links,
.uitlijning-rechts {
	width							: 50%;
}

.uitlijning-klein {
	width							: 25%;
}

.uitlijning-links {
	float							:left;

	margin							: 0;
	margin-right					: 10px;
}

.uitlijning-rechts {
	float							:right;

	margin							: 0;
	margin-left						: 10px;
}

.uitlijning-boven {
	margin-bottom					: 10px;
}

.uitlijning-onder {
	margin-top						: 10px;
}









/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	font-weight						: normal;
}

.kruimelpad a {
	
}

.kruimelpad a:hover {
	
}





/*============== OVERIGE =================================================*/

.afgerond {
	overflow						: hidden;
}

.animeer {
	transition						: 0.5s all ease;
}

.border {
	
}

.blur {
	-webkit-filter					: blur(20px) grayscale(50%);
	-moz-filter   					: blur(20px) grayscale(50%);
	-ms-filter   					: blur(20px) grayscale(50%);
	-o-filter	 					: blur(20px) grayscale(50%);
	 filter	   						: blur(20px) grayscale(50%);
}

.bg_rood {
	background-color				: red;
}

.centreren {
	text-align						: center;
}

.clearboth {
	clear							: both;
}

.display_flex_row {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.display_flex_column {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.downloads {
	
}

.flex_0 {
	-webkit-box-flex				: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0;	/* OLD - Firefox 19- */
	-ms-flex						: 0;	/* IE 10 */
	-webkit-flex					: 0;	/* NEW - Chrome */
	flex							: 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1 {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_2 {
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_3 {
	-webkit-box-flex				: 3;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 3;	/* OLD - Firefox 19- */
	-ms-flex						: 3;	/* IE 10 */
	-webkit-flex					: 3;	/* NEW - Chrome */
	flex							: 3;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_4 {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.fontsize_10 { font-size			: 10px; }
.fontsize_15 { font-size			: 15px; }
.fontsize_20 { font-size			: 20px; }
.fontsize_25 { font-size			: 25px; }
.fontsize_30 { font-size			: 30px; }
.fontsize_40 { font-size			: 40px; }
.fontsize_50 { font-size			: 50px; }
.fontsize_60 { font-size			: 60px; }
.fontsize_70 { font-size			: 70px; }
.fontsize_80 { font-size			: 80px; }
.fontsize_90 { font-size			: 90px; }
.fontsize_100 { font-size			: 100px; }

.geenmarge { margin					:  0; }

H1 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H2 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H3 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H4 {
	padding							: 0;
	margin							: 0;
}

.imgbackground-stretch {
	background-position				: center;
	background-repeat				: no-repeat;
	background-size					: cover;
}

label
{
	margin							: 10px 0;
	padding							: 0;
}

.margin_0	{ margin				: 0; }
.margin_5	{ margin				: 5px; }
.margin_10	{ margin				: 10px; }
.margin_15	{ margin				: 15px; }
.margin_20	{ margin				: 20px; }
.margin_25	{ margin				: 25px; }

.margin_ver_5	{ margin			: 5px 0; }
.margin_ver_10	{ margin			: 10px 0; }
.margin_ver_15	{ margin			: 15px 0; }
.margin_ver_20	{ margin			: 20px 0; }
.margin_ver_25	{ margin			: 25px 0; }
.margin_ver_30	{ margin			: 30px 0; }
.margin_ver_35	{ margin			: 35px 0; }
.margin_ver_40	{ margin			: 40px 0; }

.margin_top_5	{ margin-top		: 5px; }
.margin_top_10	{ margin-top		: 10px; }
.margin_top_15	{ margin-top		: 15px; }
.margin_top_20	{ margin-top		: 20px; }
.margin_top_25	{ margin-top		: 25px; }
.margin_top_30	{ margin-top		: 30px; }
.margin_top_35	{ margin-top		: 35px; }
.margin_top_40	{ margin-top		: 40px; }

.margin_bot_5	{ margin-bottom		: 5px; }
.margin_bot_10	{ margin-bottom		: 10px; }
.margin_bot_15	{ margin-bottom		: 15px; }
.margin_bot_20	{ margin-bottom		: 20px; }
.margin_bot_25	{ margin-bottom		: 25px; }
.margin_bot_30	{ margin-bottom		: 30px; }
.margin_bot_35	{ margin-bottom		: 35px; }
.margin_bot_40	{ margin-bottom		: 40px; }

.margin_hor_5	{ margin			: 0 5px; }
.margin_hor_10	{ margin			: 0 10px; }
.margin_hor_15	{ margin			: 0 15px; }
.margin_hor_20	{ margin			: 0 20px; }
.margin_hor_25	{ margin			: 0 25px; }

.noblur {
	-webkit-filter					: none;
	-moz-filter						: none;
	-ms-filter						: none;
	-o-filter						: none;
	filter							: none;
}

.noscroll { overflow				:  hidden; }

.nowrap {
	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.onzichtbaar { display				: none; }

.padding_0	{ padding				: 0; }
.padding_5	{ padding				: 5px; }
.padding_10	{ padding				: 10px; }
.padding_15	{ padding				: 15px; }
.padding_20	{ padding				: 20px; }
.padding_25	{ padding				: 25px; }
.padding_30	{ padding				: 30px; }
.padding_40	{ padding				: 40px; }
.padding_50	{ padding				: 50px; }

.padding_40_20	{ padding			: 40px 20px; }

.padding_ver_5	{ padding			: 5px 0; }
.padding_ver_10	{ padding			: 10px 0; }
.padding_ver_15	{ padding			: 15px 0; }
.padding_ver_20	{ padding			: 20px 0; }
.padding_ver_25	{ padding			: 25px 0; }
.padding_ver_30	{ padding			: 30px 0; }
.padding_ver_40	{ padding			: 40px 0; }
.padding_ver_50	{ padding			: 50px 0; }

.padding_hor_5	{ padding			: 0 5px; }
.padding_hor_10	{ padding			: 0 10px; }
.padding_hor_15	{ padding			: 0 15px; }
.padding_hor_20	{ padding			: 0 20px; }
.padding_hor_25	{ padding			: 0 25px; }
.padding_hor_30	{ padding			: 0 30px; }
.padding_hor_40	{ padding			: 0 40px; }
.padding_hor_50	{ padding			: 0 50px; }

P, P P {
	padding							: 0;
	margin							: 0 0 10px 0;
}

P:empty:first-of-type { display		: none; }

P:empty {
	/*display						: none;*/
}

.position_relative { position		: relative; }

.rechts, .right { text-align		: right; }

section img {
	margin							: 0 10px 10px 0;

	height							: auto;
	max-width						: inherit;
	width							: 100%;
}

section * li  {
	margin							: 5px 0px;
}

.flex_start {
	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
}

.space_between {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.flex_end {
	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
}

strong { font-weight				: bold; }


.site-content section * ul,
.site-content section * ol {
	padding							: 20px 40px;
	margin							: 20px 0px;
}


table {
	border-collapse					: collapse;
	margin-bottom					: 30px;
}

th, td {
	padding							: 10px;
	margin							: 0;
}

tr {
	
}

tr:hover {
	
}

.ul_geen_opmaak,
.ol_geen_opmaak {
	list-style						: none;
	margin							: 0;
	padding							: 0;
}

.ul_geen_opmaak li,
.ol_geen_opmaak li {
	font-weight						: normal;
}

.vet {
	font-weight						: bold;
}

.wrap {
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

.roteer-90-rechtsom {
	-webkit-transform				: rotate(90deg);    /* Firefox */
	-moz-transform					: rotate(90deg);    /* IE */
	-ms-transform					: rotate(90deg);    /* Opera */
	-o-transform					: rotate(90deg);    /* Internet Explorer */
	transform						: rotate(90deg);
	filter							: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	
	display							: inline-block;
}



/*============== TABLE MOCK CLASSES ============================================*/
.table    { display: table }
.tr       { display: table-row }
.thead    { display: table-header-group }
.tbody    { display: table-row-group }
.tfoot    { display: table-footer-group }
.col      { display: table-column }
.colgroup { display: table-column-group }
.td, .th  { display: table-cell }
.caption  { display: table-caption }




/*============== SOCIAL MEDIA ============================================*/

.socialmedia {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.socialmedia span:before{
	margin							: 0 0 0 10px;
	padding							: 0;
}body {
  color						: rgb(94,95,97);
  font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb(94,95,97);
}


/*============== SITE ====================================================*/
.site {
	background-color		: rgb(255,255,255);
}


/*============== SITE - ASIDE SUBMENU ====================================================*/
.site-submenu {
	min-width				: 280px;
	padding-right			: 0.3rem;
	margin-bottom			: 1rem;
}

.site-submenu h2 {
	font-size				: 1.25rem;
}

.site-submenu ul {
	padding					: 0;
	margin-top				: 1.25rem;
	line-height				: 3rem;
}
	
.site-submenu li {
	background-color		: rgb(229,228,219);
	font-size				: 1.1rem;
	line-height				: 1.75rem;
	padding					: 0.5rem;
}

.site-submenu li a {
	color					: rgb(0,76,59);
}

.site-submenu li a:hover,
.site-submenu li a.actief {
	color					: rgb(0,76,59);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}



/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color		: rgb(0,76,59);
}

.mobile-nav h2 {
	color					: rgb(255,255,255);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.8rem;
}

.mobile-nav li {
	border-bottom			: 0.06rem solid rgba(255,255,255,0.5);
	font-size				: 1.125rem;
	line-height				: 1.8rem;
}

.mobile-nav li:first-child {
	border-top				: 0.06rem solid rgba(255,255,255,0.5);
}

.mobile-nav li a {
	color					: rgb(255,255,255);
}

.mobile-nav li a:hover {
	background-color		: rgba(255,255,255,0.25);
}

.mobile-nav li a.actief {
	background-color		: rgba(255,255,255,0.5);
}



/*============== HEADER BOVENBALK ========================================*/
.bovenbalk {
	position				: relative;
	color					: rgb(0,76,59);
	font-size				: 1em;
    max-width				: 100vw;
	text-align				: right;
    padding-right:          0.8rem;
}

.bovenbalk span {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.25rem;
}

.bovenbalk a:not(.button) {
	color					: rgb(0,76,59);
	padding-left			: 0.8rem;
}

.bovenbalk a:not(.button):hover {
	color					: rgb(190,133,28);
}

.bovenbalk a:not(.button):before {
	padding					: 0 0.2rem;
}

.bovenbalk-button {
    display:            inline-block;
    margin-left:        0.8em;
}

.bovenbalk-button .button.smaller {
    width:              100%;
    padding:            0.2em;
    margin-top:         0.2em;
    text-align:         center;
    justify-content:    center;
    line-height:        1;
}

/*============== HEADER NAV ==============================================*/
.position-fixed {
	position				: fixed;
	top						: 0;
	z-index					: 999;
}

.position-fixed-margin-top-40 {
	margin-top					: 40px;
}

.hoofdnav {
	margin					: 0;
	height					: auto;
	background-color		: rgb(163,209,171);
}
.hoofdnav ul {
    padding: 10px 20px;
}

.hoofdnav li {
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
	line-height				: 2.5rem;
}

.hoofdnav li a {
	color					: rgb(0,76,59);
}

.hoofdnav li a:hover,
.hoofdnav li a.actief {
	color					: rgb(0,0,0);
}

.icon-menu {
	color					: rgb(0,76,59);
}

.icon-menu:hover {
	color					: rgb(190,133,28);
}
 


/*============== HEADER NAV SUB UITKLAP ==================================*/
.hoofdnav li ul {

}

.hoofdnav li li {
	background-color		: rgb(163,209,171);
	border-top				: 0.06rem solid rgb(255,255,255);
	font-size				: 1rem;
	line-height				: 2.5rem;
	min-height				: 2.5rem;
}

.hoofdnav li li a {
	color					: rgb(94,95,97);
}

.hoofdnav li li a:hover,
.hoofdnav li li a.actief,
.hoofdnav li li a.actief:hover {
	color					: rgb(0,76,59);
}



/*============== VISUAL ============================================*/
.header-visual,
.header-visual-home
{
	display							: inline;
}

.header-visual,
.header-visual .imgdiv
{
    position						: relative;
	height							: 450px;
}

.header-visual-home,
.header-visual-home .imgdiv
{
    position						: relative;
	height							: 550px;
}

.header-visual .imgdiv,
.header-visual-home .imgdiv
{
	width							: 100%;
	margin							: auto;
	overflow						: hidden;
}
.header-visual .imgdiv
{
	max-width						: 1920px;
	margin-top						: -450px;
}
	
.header-visual-home .imgdiv
{
	max-width						: 1920px;
	margin-top						: -550px;
}

.header-visual .imgdiv img,
.header-visual-home .imgdiv img
{
	width							: 100%;
	height							: 750px;
}

.header-visual
{
    margin-bottom					: 0;
}

.payoffheader
{
	height							: 450px;
	overflow						: hidden;

	margin							: 0 auto;
	top								: 100px;
    left							: -1.25em;

	padding							: 0 1.25em;
}

.header-visual-home .payoffheader
{
	height							: 550px;
}

.highlight_wit
{
	background-color				: rgba(255,255,255,0.6);
}

.highlight_grijs
{
	background-color				: rgba(229,228,219,0.6);
}

.highlight_zwart
{
	background-color				: rgba(0,0,0,0.6);
}

.highlight_a
{
	background-color				: rgba(0,76,59,0.6);
}

.highlight_b
{
	background-color				: rgba(190,133,28,0.6);
}

.highlight_c
{
	background-color				: rgba(163,209,171,0.6);
}

.highlight_d
{
	background-color				: rgba(,0.6);
}

.highlight_e
{
	background-color				: rgba(,0.6);
}



/*============== PAYOFF HEADER ===========================================*/
.payoffheader {
	max-width				: 1200px;
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.3rem;
}

.payoffheader h2 {
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 2.5rem;
	width					: 100%;
}

.payoffheader h3 {
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.8rem;
}




/*============== CONTENT =================================================*/
.site-content {
	min-height				: 2.5rem;
	width					: 100%;
}

.main-content {
	
}

.main-content section > div {
	padding					: 1.2rem;
}

section {
	margin-bottom			: 0.2rem;
}

.volledigbreed {
	
}
.volledigbreed section {
	max-width				: 1200px;
}



/*============== TEAM ================================================*/
.teamleden
{
	width					: 100%;
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.teamlid
{
	text-align				: center;
	padding					: 0.6rem;
	margin-bottom			: 1.25rem;
	flex-grow				: 0;
}

.teamlid-pasfoto img {
	max-height				: 350px;
	width					: auto;
}

.homepage-blok .teamlid
{
	display					: flex;
	flex-direction			: row;
	text-align				: left;
}

.teamlid a:before {
	font-size				: 1.75rem;
	color					: rgb(0,76,59);
	padding					: 0 0.3rem
}


/*============== DIENSTEN ================================================*/
.diensten
{
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.dienst
{
	position				: relative;
	flex					: 1 0 200px;
	min-width				: 200px;
	height					: auto;
	text-align				: center;
	padding					: 0.6rem 0.6rem 4.25rem 0.6rem;
	margin-bottom			: 1.25rem;
}

.dienst
{
	cursor					: pointer;
}

div .dienst-icon
{
    display					: inline-block;
    width					: 10rem;
    height					: 10rem;
	color					: rgb(163,209,171);
    border					: 0.125rem solid rgb(190,133,28);
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
    margin-bottom			: 1em;
}
    
div .dienst-icon:before
{
    font-size				: 5em;
    line-height				: 1.9;
}

.dienst h2
{
	font-size				: 1.25rem;
	line-height				: 1.2;
}

.dienst .button
{
	position				: absolute;
	left					: 10%;
	right					: 10%;
	bottom					: 0;
	font-size				: 0.9rem;
}

.dienst:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(190,133,28);
}

.dienst:hover .dienst-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(190,133,28);
    border-color			: rgb(190,133,28);
}



/*============== FOOTER ==================================================*/
.site-footer {
	background-color		: rgb(229,228,219);
	margin-top				: 0;
}

.site-footer section {
	max-width				: 1200px;
}

.site-footer h2 {
	color					: rgb(0,76,59);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
}

.site-footer p {
	color					: rgb(94,95,97);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
}

.site-footer a {
	color					: rgb(94,95,97);
}

.footer-copyright {
    display					: flex;
    
    justify-content			: center;
     
	height					: auto;
	padding					: 0.6rem 0;
	
	font-size				: 0.9em;
	line-height				: 1.75rem;
	text-align				: center;
	
	color					: rgb(229,228,219);
	background-color		: rgb(0,76,59);
}

.footer-copyright a {
	color					: rgb(163,209,171);
}

.footer-copyright a:hover {
color					: rgb(229,228,219);
}


/*============== NIEUWS ============================================*/
.nieuwsberichten {
	width							: 100%;
}

.nieuwsberichten hr {
 	display							: block;
    height							: 0.06rem;
    border							: 0;
    border-top						: 0.125rem solid rgb(190,133,28);
    margin							: 0;
    padding							: 0;
}

.hoofdstukken h1 {
	font-size						: 1.8rem;
}

section.hoofdstukken {
	margin-top						: 0.5rem;
}

/*============== CONTENT ALGEMENE INDELING ===============================*/
.afgerond {
	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
}

.border {
	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
	
	border						: 0.06rem solid rgba(0,76,59,0.5);
}

.menu-introductie {
	text-align					: center;
	padding						: 20px 20px 0 20px;
}

.menu-introductie p {
	line-height					: 1.8rem;
}

.introductie h1 {
	font-size					: 1.6rem;
}



/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	color					: rgb(94,95,97);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.9em;
 
}
.kruimelpad a {
	color					: rgb(94,95,97);
}

.kruimelpad a:hover {
	color					: rgb(0,76,59);
}


/*============== SOCIAL MEDIA ============================================*/
.socialmedia {
	color					: rgb(94,95,97);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.85rem;
	font-weight				: normal;
	line-height				: 1.5rem;
}

.socialmedia span:before{
	color					: rgb(190,133,28);
	font-size				: 1.5em;
	line-height				: 1.25em;
}

div.socialmedia {
	padding					: 0.8rem;
}


/*============== BUTTONS =================================================*/
.bg_b .button {
	border-color		: rgb(0,76,59);
}

.bg_b .button:hover {
	border-color		: rgb(0,76,59);
	background-color	: rgb(0,76,59);
	color				: rgb(255,255,255);
}

.button {
	color				: rgb(94,95,97);
    background-color	: rgb(255,255,255);
      
    border				: 0.125rem solid rgb(190,133,28);

    font-family			: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size			: 1rem;
	line-height			: 1.5;
	
	padding				: 0.6rem 1.2rem;
}

.button:hover {
	background-color	: rgb(190,133,28);
	color				: rgb(255,255,255);
}


/*============== OVERIGE =================================================*/
.downloads {
	border					: 0.06rem solid rgb(229,228,219);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 1.8rem;
	max-width				: 400px;
}

.downloads a {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_kop {
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_tekst {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

H1 {
	color					: rgb(0,76,59);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 2.3rem;
}

H2 {
	color					: rgb(0,76,59);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.8rem;
}

H3 {
	color					: rgb(0,76,59);
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.25em;
}

H4 {
	color					: rgb(0,76,59);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.25em;
}

label {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.9em;
	line-height				: 1.25em;
}

P, P p {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
	line-height				: 1.5rem;
}

P a {
	font-family				: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color					: rgb(0,76,59);
}

P a:hover {
	text-decoration			: underline;
}

.bg_a P a {
    color					: rgb(190,133,28);
}

section img {
	max-width				: 100%;
}

.site-content section * ul,
.site-content section * ol {
	background-color			: transparent;

	-webkit-border-radius		: 0;
	-moz-border-radius			: 0;
	border-radius				: 0;
	
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: inherit;
	
	margin					: 0;
	padding					: 0 10px 10px 40px;
}

tr:hover {
	background-color		: rgba(94,95,97,0.15);
}

td {
	border					: 0.06rem solid rgb(94,95,97);
}


/*============== KLEUREN =================================================*/
.kleur_tekst {
	color					: rgb(94,95,97);
}

.tekst_a {
	color					: rgb(0,76,59);
}

.tekst_b {
	color					: rgb(190,133,28);
}

.tekst_c {
	color					: rgb(163,209,171);
}

.tekst_grijs {
	color					: rgb(229,228,219);
}

.tekst_wit {
	color					: rgb(255,255,255);
}

.tekst_zwart {
	color					: rgb(0,0,0);
}

.bg_a {
	background-color		: rgb(0,76,59);
}

.bg_b {
	background-color		: rgb(190,133,28);
}

.bg_c {
	background-color		: rgb(163,209,171);
}

.bg_grijs {
	background-color		: rgb(229,228,219);
}

.bg_wit {
	background-color		: rgb(255,255,255);
}

.bg_zwart {
	background-color		: rgb(0,0,0);
}


/*============== KLEUREN AFHANGEND VAN ACHTERGROND ====================*/
.bg_a .tekst_a,
.bg_b .tekst_b,
.bg_c .tekst_c,
.bg_zwart {
	color					: rgb(255,255,255);
}

.bg_wit,
.bg_grijs {
	color					: rgb(0,76,59);
}

.bg_a .downloads td,
.bg_zwart .downloads td {
	border					: 0.06rem solid rgb(163,209,171);
}

.bg_c .downloads td,
.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_b .downloads td {
	border					: 0.06rem solid rgb(0,76,59);
}

.bg_a .downloads *,
.bg_zwart .downloads * {
	color					: rgb(255,255,255);
}

.bg_wit .downloads *,
.bg_grijs .downloads *,
.bg_b .downloads *,
.bg_c .downloads * {
	color					: rgb(94,95,97);
}

/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 10px 0;
}

form > div {
	margin							: 0 0 10px 0;
	overflow						: hidden;
	padding							: 1px;
}

form > div > fieldset > div > div {
	margin							: 0 0 5px 0;
}

form > div > label,
legend {
	width							: 25%;
	float							: left;
	padding-right					: 20px;
	padding-top						: 10px;
}

form > div > div,
form > div > fieldset > div {
	width							: 75%;
	float							: right;
}

form > div > fieldset label {
	
}

fieldset {
	border							: 0;
	padding							: 0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
input[type=submit],
button,
input[type=button]
 {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	outline							: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	margin-bottom					: 10px;
	outline							: none;
	padding							: 10px;
}

select {
	height							: 45px;
}

textarea,
input[type=file] {
	padding-top						: 10px;
}

textarea {
	padding-top						: 10px;
	height							: 120px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	width							: 100%;
}

input[type=submit],
button,
input[type=button] {
	cursor							: pointer;
	text-decoration					: none;
	padding							: 10px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	
}

.input-geenmarge-bottom,
.input-geenmarge-bottom input[type=submit] {
	margin-bottom					: 0;
}

.input-geenvolledigebreedte input[type=text],
.input-geenvolledigebreedte input[type=number],
.input-geenvolledigebreedte input[type=email],
.input-geenvolledigebreedte input[type=tel],
.input-geenvolledigebreedte input[type=url],
.input-geenvolledigebreedte input[type=file],
.input-geenvolledigebreedte input[type=password],
.input-geenvolledigebreedte textarea,
.input-geenvolledigebreedte select,
.input-geenvolledigebreedte input[type=submit]{
	width							: auto;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	outline							: 0;
}

.inputregel {
	margin-bottom					: 20px;

	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

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

	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.inputregel_eenheid {
	width							: auto;
	margin-left						: 15px;
}

.inputregel_label {
}

.inputregel_input {
	position						: relative;

	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.input-decimal .inputregel,
.input-datum .inputregel {
	display							: inline-block;
	margin-bottom					: 0px;
}

.input-decimal input[type=number],
.input-datum select {
	width							: auto;
}

input::-ms-clear {
	display							: none;
}




/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	
}

.formulier_melding {
	display							: inline-block;
	padding							: 0 20px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	position						: absolute;
	right							: 10px;
}




/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

	form > div > label,
	legend {
		text-align					: right;
	}

}

@media (max-width: 900px) {

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	select {
		width						: 75%;
	}

}

@media (max-width: 600px) {

	form > div {
		margin						: 0 0 15px 0;
	}

	form > div > label,
	legend {
		float						: none;
		margin						: 0 0 5px 0;
		width						: 100%;
	}

	form > div > div,
	form > div > fieldset > div {
		float						: none;
		width						: 100%;
	}

	.inputregel {
		-webkit-flex-direction		: column;
		flex-direction				: column;
	}

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	textarea,
	select {
		width						: 100%;
	}

}/*============== STANDAARD FORM ==========================================*/

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

form > div > label,
legend {
	font-size						: 14px;
}

form > div > div,
form > div > fieldset > div {
	
}

form > div > fieldset label {
	font-size						: 12px;
}

fieldset {
	
}

input[type=radio],
input[type=checkbox] {
	margin						: 3px;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
input[type=submit],
button,
input[type=button],
textarea,
select {
	background-color				: rgba(229,228,219,0.5);
	border							: rgba(229,228,219,0.5);
	color							: rgb(94,95,97);
	font-size						: 14px;
	line-height						: 24px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	background-color				: rgb(229,228,219);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color					: rgb(229,228,219);
}

.inputregel {
	font-size						: 15px;
	max-width						: 800px;
}

.inputregel_eenheid {
	font-size						: 15px;
	line-height						: 24px;
}

.inputregel_label {
	font-size						: 15px;
	line-height						: 40px;
	max-width						: 200px;
}


/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	line-height						: 20px;
	font-size						: 15px;
	font-weight						: normal;
}

.formulier_melding
{
	-webkit-border-radius			: 2px;
	-moz-border-radius				: 2px;
	border-radius					: 2px;
	
	font-family						: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';

	line-height						: 40px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	font-size						: 14px;
	line-height						: 45px;
}

.icon-input-ok {
	color							: green;
}

.icon-input-nok {
	color							: red;
}

.icon-input-verplicht {
	color							: rgb(190,133,28);
}

input[type=submit],
input[type=button] {
	color				: rgb(255,255,255);
    background-color	: rgb(0,76,59);
      
    font-family			: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size			: 1rem;
	line-height			: 1.5;
	
	padding				: 0.6rem 1.2rem;
}

input[type=submit]:hover,
input[type=button]:hover {
    background-color	: rgb(190,133,28);
}

/**/

option:checked, option {
	background:rgb(255,255,255);
	color:rgb(94,95,97);
}

option[value=""] {
	color:rgb(229,228,219);
}

option:hover {
	background:rgb(255,255,255);
	color:rgb(0,76,59);
}

option:focus {
	background:rgb(255,255,255);
	color:rgb(0,76,59);
}



/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

	input[type=text],
    input[type=password],
    input[type=email],
    input[type=tel],
    input[type=url],
    textarea,
    select {
    		width		: 100%;
    }

}

@media (max-width: 600px) {

}/* ============== EXTRA CLASSES (BEHEERBARE CSS CLASSES)=================== */
.bg_banner {
	display						: flex;
	flex-flow					: row wrap;
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
	-webkit-align-items			: center;
	align-items					: center;
}

.bg_banner span,
.bg_banner h2 {
	font-family					: 'ralewaybold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 1.8rem;
	font-weight					: normal;
	margin						: 0;
}

.bg_banner .bg_a .button {
	color						: rgb(255,255,255);
	background-color			: rgb(0,76,59);
}

.bg_banner .bg_a .button:hover {
	color						: rgb(255,255,255);
	background-color			: rgb(190,133,28);
}

.bg_banner .bg_a span,
.bg_banner .bg_zwart span {
	color						: rgb(190,133,28);
}

.bg_banner .bg_a h2,
.bg_banner .bg_zwart h2 {
	color						: rgb(255,255,255);
}

.homepage-blok-button-container {
	margin							: 0 1.2rem;
}


/* ================================= */
.logo {
    display: block;
}
@media all and (max-width:1120px) and (min-width:900px) {

}



@media all and (max-width:1000px) {

	.content-met-submenu {
		-webkit-flex-direction		: column;
		flex-direction				: column;

		-webkit-flex-wrap			: nowrap;
		flex-wrap					: nowrap;

		margin-top					: 10px;
	}

	.header-visual-home {
		position					: relative;
	}

	.hoofdnav li a {
		padding						: 0 10px;
	}

	.site-submenu {
		border						: 0;
		display						: block;
		margin						: 0;
		padding						: 0;
		width						: 100%;
	}

	.site-submenu-items {
		border						: 0;
		margin						: 0;
		padding						: 0;
	}

	.site-submenu h2 {
		display						: none;
	}

	.site-submenu ul {
		list-style					: none;
		margin						: 0;
		padding						: 0;
		text-align					: center;
	}

	.site-submenu li {
		margin-right				: 10px;
		padding						: 5px;
		width						: inherit;
	}

	.site-submenu a {
		margin						: 0;
		padding						: 0;
	}

	.site-submenu li hr {
		display						: none;
	}

	.toggle1nietzichtbaar {
		display						: none;
	}

	.toggle1welzichtbaar {
		display						: inline;
	}

}



@media all and (max-width:900px) {

	.hoofdnav {
		display						: none;
	}

	.hoofdnav-mobile {
		display						: block;
	}
	
	.mobilenietzichtbaar {
		display						: none!important;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

}



@media all and (max-width:800px) {

	.div3-12,
	.div4-12,
	.div8-12,
	.div9-12 {
		-webkit-box-flex			: 1 0 48%;	/* OLD - iOS 6-, Safari 3.1-6 */
		-moz-box-flex				: 1 0 48%;	/* OLD - Firefox 19- */
		-ms-flex					: 1 0 48%;	/* IE 10 */
		-webkit-flex				: 1 0 48%;	/* NEW - Chrome */
		flex						: 1 0 48%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	.toggle2nietzichtbaar {
		display						: none;
	}

	.toggle2welzichtbaar {
		display						: inline;
	}
	
}



@media all and (max-width: 600px) {

	.div3-12,
	.div4-12,
	.div6-12,
	.div8-12,
	.div9-12 {
		flex						: 1 0 100%;
	}

	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

}
@media all and (max-width:1120px) and (min-width:900px) {

}




@media all and (max-width:1000px) {

	.hoofdnav li a {
		font-size					: 1rem;
	}

	.site-submenu ul {
		line-height					: 1rem;
	}

	.site-submenu li {
		font-size					: 1rem;
		line-height					: 1.5rem;
		margin-bottom				: 0.2rem;
	}

}



@media all and (min-width:1200px) {

    .bovenbalk {
        max-width: 1200px;
        padding-right: 0;
    }

}

@media all and (max-width:900px) {

	.header-visual-home {
		height						: 300px;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
}

	.header-visual {
		height						: 200px;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
}

	.bovenbalk	{
		position					: fixed;
		top							: 0;
		z-index						: 999;
		background-color			: rgb(255,255,255);
        box-shadow: 0 3px 5px rgba(0,0,0,0.25);
	}

	.site-header {
		margin-top					: 40px;
	}

}



@media all and (max-width: 600px) {

	h1,
	.error404 {
		font-size					: 1.8rem;
	}

	.logo {
		width						: 35vw;
		height						: auto;
	}
	
	.footer-copyright {
		height						: auto;
		flex-direction				: column;
	}
	
	.dienst {
	    min-width					: 100%;
		flex						: 1 0 100%;
	}
	
	div .dienst-icon {
	    width						: 8rem;
	    height						: 8rem;
	    margin-bottom				: 1em;
	}
	    
	div .dienst-icon:before {
	    font-size					: 4em;
	    line-height					: 1.9;
	}
	
}
