* {
	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			: 1rem;
	-moz-border-radius				: 1rem;
	border-radius					: 1rem;
	
	box-sizing						: border-box;
	min-width						: 250px;
	margin-right					: 2.5rem;
	margin-top						: 3.75rem;
	overflow						: hidden;
	padding							: 1.25rem;
}

.site-submenu h2 {
	margin-bottom					: 1.25rem;
}

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

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

.site-submenu li hr {
	border							: 0;
	margin							: 0.3rem 0 0.3rem 25%;
	
	height							: 0.08rem;
	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(67,197,229);
	background-repeat			: no-repeat;
    background-position			: left center;
    background-size				: cover;
    
    font-size					: 3rem;
    font-weight					: 300;
    text-align					: center;
	color						: rgb(255,255,255);
	
	margin						: 2.5rem;
	padding						: 3rem;
}



/*============== 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 {
	width							: 100%;
}


/*============== 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						: 1350px;
	width							: 100%;
    margin							: auto;
}

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

.submenu-infoblok h2 {
	text-transform					: none;
	font-size						: 1.6em;
}

.submenu-infoblok h3 {
	font-size						: 4em;
}






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

.collapsable-header
{
	cursor							: pointer;
}

.collapsable-header > span
{
	margin-right			: 0.6rem;
}




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

.site-footer {
	height							: auto;
	margin-top						: 1.25rem;
}

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

.footer-copyright div {
    margin							: 0 0.6rem;
}




/*============== 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							: 0.6rem 1.5rem;
}

.mobile-nav ul {
	list-style						: none;
	margin							: 1.25rem 0 0 0;
	padding							: 0;
}

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

.mobile-nav li:first-child {
	
}

.mobile-nav li a {
	display							: block;
	padding							: 0.6rem 1.5rem;
}

.mobile-nav li a:hover {
 
}

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

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

.mobile-nav ul li ul li a {
	padding-left					: 1.25rem;
}




/*============== 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;
	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;
}

.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 1.25rem;
}

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

.button-tekstueel {
	display							: inline-block;
	padding							: 0 1.25rem;
}

.button_met_icon span {
	margin-right					: 0.6rem;
}

.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							: 1.25rem;
}

.payoffheader_content {
	
}

.payoffheader h2 {
	margin							: 0;
}

.payoffheader h3 {
	
}

.payoffheader span {
	
}

.payoffheader button {
	padding							: 0 1.25rem;
}




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

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

.hoofdnav ul {
	list-style						: none;
	margin							: 0;
	padding							: 0 1.25rem;
	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 1.25rem;
	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					: 1.25rem;
	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					: 0;
}

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

.fixed-width-250 {
	margin							: 0;
	margin-right					: 1.25rem;
	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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 0.6rem 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							: 1.25rem;
}

.standaard-padding-boven-groot {
	box-sizing						: border-box;
	padding							: 2.5rem 0 0 0;
}

.standaard-padding-boven {
	box-sizing						: border-box;
	padding							: 1.25rem 0 0 0;
}

.standaard-padding-behalve-rechts {
	box-sizing						: border-box;
	padding							: 1.25rem 0 1.25rem 1.25rem;
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 1.25rem 0;
	
	height							: 1.25rem;
	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					: 0.6rem;
}

.uitlijning-rechts {
	float							:right;

	margin							: 0;
	margin-left						: 0.6rem;
}

.uitlijning-boven {
	margin-bottom					: 0.6rem;
}

.uitlijning-onder {
	margin-top						: 0.6rem;
}









/*============== 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			: 0.6rem; }
.fontsize_15 { font-size			: 1rem; }
.fontsize_20 { font-size			: 1.25rem; }
.fontsize_25 { font-size			: 1.5rem; }
.fontsize_30 { font-size			: 2rem; }
.fontsize_40 { font-size			: 2.5rem; }
.fontsize_50 { font-size			: 3rem; }
.fontsize_60 { font-size			: 3.75rem; }
.fontsize_70 { font-size			: 4.375rem; }
.fontsize_80 { font-size			: 5rem; }
.fontsize_90 { font-size			: 5.625rem; }
.fontsize_100 { font-size			: 6.25rem; }

.geenmarge { margin					:  0; }

H1 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.6rem 0;
}

H2 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.6rem 0;
}

H3 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.6rem 0;
}

H4 {
	padding							: 0;
	margin							: 0;
}

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

label
{
	margin							: 0.6rem 0;
	padding							: 0;
}

.margin_0	{ margin				: 0; }
.margin_5	{ margin				: 0.3rem; }
.margin_10	{ margin				: 0.6rem; }
.margin_15	{ margin				: 1rem; }
.margin_20	{ margin				: 1.25rem; }
.margin_25	{ margin				: 1.5rem; }

.margin_ver_5	{ margin			: 0.3rem 0; }
.margin_ver_10	{ margin			: 0.6rem 0; }
.margin_ver_15	{ margin			: 1rem 0; }
.margin_ver_20	{ margin			: 1.25rem 0; }
.margin_ver_25	{ margin			: 1.5rem 0; }
.margin_ver_30	{ margin			: 2rem 0; }
.margin_ver_35	{ margin			: 2.2rem 0; }
.margin_ver_40	{ margin			: 2.5rem 0; }

.margin_top_5	{ margin-top		: 0.3rem; }
.margin_top_10	{ margin-top		: 0.6rem; }
.margin_top_15	{ margin-top		: 1rem; }
.margin_top_20	{ margin-top		: 1.25rem; }
.margin_top_25	{ margin-top		: 1.5rem; }
.margin_top_30	{ margin-top		: 2rem; }
.margin_top_35	{ margin-top		: 2.2rem; }
.margin_top_40	{ margin-top		: 2.5rem; }

.margin_bot_5	{ margin-bottom		: 0.3rem; }
.margin_bot_10	{ margin-bottom		: 0.6rem; }
.margin_bot_15	{ margin-bottom		: 1rem; }
.margin_bot_20	{ margin-bottom		: 1.25rem; }
.margin_bot_25	{ margin-bottom		: 1.5rem; }
.margin_bot_30	{ margin-bottom		: 2rem; }
.margin_bot_35	{ margin-bottom		: 2.2rem; }
.margin_bot_40	{ margin-bottom		: 2.5rem; }

.margin_hor_5	{ margin			: 0 0.3rem; }
.margin_hor_10	{ margin			: 0 0.6rem; }
.margin_hor_15	{ margin			: 0 1rem; }
.margin_hor_20	{ margin			: 0 1.25rem; }
.margin_hor_25	{ margin			: 0 1.5rem; }

.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				: 0.3rem; }
.padding_10	{ padding				: 0.6rem; }
.padding_15	{ padding				: 1rem; }
.padding_20	{ padding				: 1.25rem; }
.padding_25	{ padding				: 1.5rem; }
.padding_30	{ padding				: 2rem; }
.padding_40	{ padding				: 2.5rem; }
.padding_50	{ padding				: 3rem; }

.padding_40_20	{ padding			: 2.5rem 1.25rem; }

.padding_ver_5	{ padding			: 0.3rem 0; }
.padding_ver_10	{ padding			: 0.6rem 0; }
.padding_ver_15	{ padding			: 1rem 0; }
.padding_ver_20	{ padding			: 1.25rem 0; }
.padding_ver_25	{ padding			: 1.5rem 0; }
.padding_ver_30	{ padding			: 2rem 0; }
.padding_ver_40	{ padding			: 2.5rem 0; }
.padding_ver_50	{ padding			: 3rem 0; }

.padding_hor_5	{ padding			: 0 0.3rem; }
.padding_hor_10	{ padding			: 0 0.6rem; }
.padding_hor_15	{ padding			: 0 1rem; }
.padding_hor_20	{ padding			: 0 1.25rem; }
.padding_hor_25	{ padding			: 0 1.5rem; }
.padding_hor_30	{ padding			: 0 2rem; }
.padding_hor_40	{ padding			: 0 2.5rem; }
.padding_hor_50	{ padding			: 0 3rem; }

P, P P {
	padding							: 0;
	margin							: 0 0 0.6rem 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 0.6rem 0.6rem 0;

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

section * li  {
	margin							: 0.3rem 0;
}

.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							: 1.25rem 2.5rem;
	margin							: 1.25rem 0;
}

.toggle-element {
	display							: none;
}

.toggle-element-button {
	cursor							: pointer;
}


table {
	border-collapse					: collapse;
	margin-bottom					: 2rem;
}

th, td {
	padding							: 0.6rem;
	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 0.6rem;
	padding							: 0;
}body {
  color						: rgb(70,73,77);
  font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb(70,73,77);
}


/*============== SITE ====================================================*/
.site {
	background				: url(../img/verloop.png), url(../img/grid.png);
	background-repeat		: no-repeat, repeat;
	background-position		: top center, center;
}

.site-submenu {
}

.site-submenu-items {
	border					: 0.08rem solid rgb(67,197,229);
}

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

.site-submenu ul {
	background-color		: rgb(216,216,216);
	
	-webkit-border-radius	: 1rem;
	-moz-border-radius		: 1rem;
	border-radius			: 1rem;
	
	line-height				: 2;
}
	
.site-submenu li {
	font-size				: 1rem;
	line-height				: 1.2;
}

.site-submenu li hr {
	background-color		: rgb(216,216,216);
}

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

.site-submenu li a {
	color					: rgb(70,73,77);
}

.site-submenu li a:hover {
	color					: rgb(67,197,229);
}

.site-submenu li a.actief {
	color					: rgb(39,114,133);
}

.site-uitklap {
	box-shadow				: 0 0 5px 5px rgba(0,0,0,0.2);
}

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

.site-content {
	min-height				: 2.5rem;
	width					: 100%;
}

.main-content {
	
}

.main-content section > div {

}

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



/* ================ HOOFDSTUKKEN ================================================ */

/*============== MENU-INFOBLOKKEN =================================================*/
.menu-infoblokken {
	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			: wrap;
	flex-wrap					: wrap;
		
	-webkit-align-items			: stretch;
	align-items					: stretch;
	
	-webkit-justify-content		: center;
	justify-content				: center;
}

.menu-infoblok {
	max-width					: 500px;
	
	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		: space-between;
    justify-content				: space-between;
    
    -webkit-align-items			: stretch;
    align-items					: stretch;
    
    padding						: 2rem;
	text-align					: center;
}

.menu-infoblok-a {
	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		: space-between;
    justify-content				: space-between;
    
	text-align					: center;
}

menu-infoblok-tekst {
	height						: 100%;
}

div .menu-infoblok-icon {
	width						: 10rem;
	height						: 10rem;
    display						: inline-block;
    
    -webkit-border-radius		: 50%;
    -moz-border-radius			: 50%;
    border-radius				: 50%;
    
    margin-bottom				: 0;
    padding						: 1rem;
}
    
.menu-infoblok-icon:before {
    font-size					: 7em;
    line-height					: 1.5;
}






/*============== TEAM ================================================*/

.teamleden {
	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			: wrap;
	flex-wrap					: wrap;
		
	-webkit-align-items			: stretch;
	align-items					: stretch;
	
	-webkit-justify-content		: center;
	justify-content				: center;
}

.teamlid-container {
    /*height						: 100%;*/
    overflow						: hidden;
    
	-webkit-border-radius		: 0.6rem;
	-moz-border-radius			: 0.6rem;
	border-radius				: 0.6rem;
    
	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		: space-between;
    justify-content				: space-between;
    
    -webkit-align-items			: stretch;
    align-items					: stretch;
    text-align					: center
}

.teamlid-container div:not(.teamlid-pasfoto) {
    background-color: rgb(255,255,255);
}

.teamlid {
	max-width					: 450px;
	height						: auto;
	margin-bottom				: 1.25rem;
	text-align					: center;
}

.teamlid-pasfoto {
	margin						: 0;
    line-height: 0;
}

.teamlid-pasfoto img {
	width						: auto;
    margin: 0;
    line-height: 0;
}

.teamlid-tekst {
	height						: 100%;
	padding						: 1.25rem;
}

.teamlid-contactgegevens {
	padding-bottom				: 1.25rem;
}




/*============== DIENSTEN ================================================*/

.diensten {
	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-align-items			: stretch;
	align-items					: stretch;
	
	margin-bottom			: 1.25rem;
}


.dienst {
	margin					: 1.25rem 2%;
	padding					: 3rem 2.5rem;
	
	-webkit-box-flex		: 1 0 29%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex			: 1 0 29%;	/* OLD - Firefox 19- */
	-ms-flex				: 1 0 29%;	/* IE 10 */
	-webkit-flex			: 1 0 29%;	/* NEW - Chrome */
	flex					: 1 0 29%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-border-radius	: 0.6rem;
	-moz-border-radius		: 0.6rem;
	border-radius			: 0.6rem;
		
	text-align				: center;
		
	background-color		: rgb(255,255,255);
}

div .dienst-icon:before {
    color					: rgb(67,197,229);
    font-size				: 8rem;
}

.dienst h2 {
	color					: rgb(70,73,77);
	margin					: 3rem 0;
}




/* ===== PORTFOLIO OVERZICHT ================================================*/

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

.portfolio-item {
	max-width					: 450px;
	overflow						: hidden;

	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;
	
	-webkit-align-items			: center;
	align-items					: center;
	
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
	
	padding						: 0;

	-webkitflex-grow			: 0;
	flex-grow					: 0;
}

section.portfolio-specifiek {
	background-color			: rgba(70,73,77,0.8);
	-webkit-border-radius	: 0.6rem;
	-moz-border-radius		: 0.6rem;
	border-radius			: 0.6rem;
	margin-bottom			: 2rem;
}

.portfolio-specifiek h2 {
	width					: 100%;
	margin					: 0 1%;
}

.portfolio-afbeelding-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-flex-wrap			: wrap;
	flex-wrap					: wrap;
	
	-webkit-flex-direction		: row;
	flex-direction				: row;
}

.portfolio-afbeelding-container div {
	flex-grow					: 0;
}

a.portfolio-item-img {
	width						: 100%;
}

.portfolio-item-img img {
	-moz-transition				: all 0.3s linear;
	-webkit-transition			: all 0.3s linear;
	transition					: all 0.3s linear;
}

.portfolio-item-img:hover img {
	-moz-transform				: scale(1.1);
	-webkit-transform			: scale(1.1);
	transform					: scale(1.1);
}

.portfolio-item-tekst {
	/*height						: 100%;*/
	padding						: 1.25rem;
}

.portfolio-item-tekst h2 {
	margin-bottom				: 1.25rem;
	text-transform				: lowercase;
}

.portfolio-item-tekst h3 {
	font-size					: 1.2rem;
	font-weight					: normal;
	color						: rgba(70,73,77,0.7);
	margin						: 0;
}

.portfolio-button {
	margin-bottom				: 2rem;
}

.filter-button {
	display						: inline-block;
	min-width					: 11rem;
	
	-webkit-transition			: all 0.3s ease;
	transition					: all 0.3s ease;
	
	-webkit-border-radius		: 2rem;
    -moz-border-radius			: 2rem;
    border-radius				: 2rem;
    
    font-size					: 1.25rem;
    color						: rgb(255,255,255);
    
    border						: 0.08rem solid rgb(255,255,255);
    background-color				: transparent;
    text-transform				: none;
    text-align					: center;
    
    line-height					: 1.25;
    padding						: 0.75rem 2rem;
    margin						: 0.1rem;
}

.filter-button:before {
	padding-right				: 0.6rem;
}

.filter-button:hover,
.filter-button.actief {
    border						: 0.08rem solid rgb(67,197,229);
    background-color				: rgb(67,197,229);
}

.portfolio-soort-icon {
	font-size					: 2.25rem;
	color						: rgb(67,197,229);
}

.portfolio-soort-icon span:before {
	padding						: 0 0.6rem;
}

.klanten-item-img {
	height						: 100%;
	display						: flex;
	flex-direction				: column;
	align-content				: center;
	justify-content				: space-between;
}

.klanten-item-img img {
	max-width					: 140px;
	height						: auto;
	margin						: 0;
	align-self					: center;
	padding						: 1.25rem 0;
}

.klanten-item-tekst {
	padding						: 0.5rem;
}

.klanten-item-tekst h3 {
	font-size					: 1.1rem;
	font-weight					: normal;
	color						: rgb(216,216,216);
	margin						: 0;
}



/* ===== PORTFOLIO DETAIL ================================================*/

.portfolio-detail-columns {
	text-align: left;
}

.portfolio-detail-columns img {
	max-width					: 200px;
	display						: block;
}

.portfolio-detail-item {
	overflow						: hidden;
	-webkit-border-radius		: 0.6rem;
	-moz-border-radius			: 0.6rem;
	border-radius				: 0.6rem;
}

.portfolio-detail-item ul {
	background-color			: transparent!important;
	padding						: 0 2rem!important;
}

.portfolio-visual-container {
	margin						: 0;
	line-height					: 0;
}

.portfolio-detail-visual {
	margin						: 0;
}

.portfolio-detail p a {
	color						: rgb(67,197,229);
}

.portfolio-detail h1,
.portfolio-detail h2 {
	font-size					: 1.8rem;
	text-align					: center;
	font-weight					: normal;
	line-height					: 1.5rem;
}

.portfolio-detail h1 {
	color						: rgb(70,73,77);
	text-transform				: lowercase;
}

.portfolio-detail h2 {
	color						: rgba(70,73,77,0.7);
}

.button-portfolio-detail {
	-webkit-transition			: all 0.5s ease;
	transition					: all 0.5s ease;

	display						: inline-block;
	text-align					: center;
	
	-webkit-border-radius		: 2rem;
    -moz-border-radius			: 2rem;
    border-radius				: 2rem;
    
    font-size					: 1.25rem;
    color						: rgb(70,73,77);
    
    border						: 0.08rem solid rgb(70,73,77);
    background-color				: transparent;
    text-transform				: none;
    
    line-height					: 1.25;
    padding						: 0.75rem 2rem;
}

.button-portfolio-detail:hover {
	border					: 0.08rem solid rgb(216,216,216);
	background-color			: rgb(216,216,216);
}

.padding_bottom_20 {
	padding-bottom			: 1.25rem;
}

/* ===== PORTFOLIO SLIDER ================================================*/

.slider-section {
	background-color		: rgb(70,73,77);
	text-align			: center;
}

.sy-slide {
	left: 0;
}

.portfolio-slide-preload {
	overflow					: hidden;
}

ul.portfolio-slide {
	background-color			: transparent !important;
	margin					: 1em 0 !important;
    padding					: 0 !important;
}

.portfolio-slide li.sy-active {
	background-color			: rgb(67,197,229);
}

.portfolio-slide li.sy-active a {
	color					: rgb(67,197,229);
}

.portfolio-slide li {
	display					: inline-block;
	
	width					: 1.2em;
	height					: 1.2em;
	
	margin					: 0 1em 0 0;
	
	-webkit-border-radius	: 50%;
	-moz-border-radius		: 50%;
	border-radius			: 50%;
	
	background-color			: rgb(216,216,216);
}

.portfolio-slide li:last-child {
		margin				: 0;
}

.portfolio-slide li a {
	color					: rgb(216,216,216);
}



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

.site-footer {
	background-color		: rgb(67,197,229);
	margin-top				: 0;
}

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

.site-footer h2 {
	color					: rgb(255,255,255);
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 2rem;
}

.site-footer p {
	color					: rgb(255,255,255);
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
	line-height				: 1.8rem;
}

.site-footer a {
	color					: rgb(255,255,255);
	-webkit-transition		: color 0.5s ease;
	transition				: color 0.5s ease;
}

.footer-copyright {
    display					: flex;
    justify-content			: center;
	text-align				: center;
	height					: 3rem;
	line-height				: 3;
	font-size				: 1rem;
	background-color		: rgb(70,73,77);
	color					: rgb(255,255,255);
}

.footer-copyright a {
	color					: rgb(67,197,229);
}




/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color		: rgb(67,197,229);
}

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

.mobile-nav li {
	border-bottom			: 0.08rem solid rgba(255,255,255,0.5);
	font-size				: 1.1rem;
	line-height				: 2;
}

.mobile-nav li:first-child {
	border-top				: 0.08rem 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);
}

.mobile-nav ul li ul li a {
	padding-left			: 3rem;
}



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

.bovenbalk {
	max-width				: 1350px;
	padding					: 0 0.9rem;
}




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

.header-visual {
	height					: 250px;
}

.header-visual-home {
	height					: 750px;
}

.visual {
	position				: relative;
}





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

.bg_a .button,
.bg_c .button {
	background-color		: rgb(70,73,77);
}

.bg_b .button,
.bg_wit .button,
.bg_grijs .button,
.bg_zwart {
	background-color		: rgb(67,197,229);
}

.button {
	-webkit-transition			: all 0.5s ease;
	transition					: all 0.5s ease;
	
	-webkit-border-radius		: 2rem;
	-moz-border-radius			: 2rem;
	border-radius				: 2rem;

	font-size					: 1.25rem;
	color						: rgb(255,255,255);
	background-color				: rgb(67,197,229);
	text-transform				: none;
	line-height					: 1.25;
	
	padding						: 0.75rem 2rem;
	margin						: 1.25rem 0;
}

.button:hover {
	background-color			: rgb(39,114,133);
}



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

.payoffheader {
	max-width				: 1140px;
}

.payoffheader_content {
	text-align				: center;
	width					: 50%;
}

.payoffheader h2 {
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 3rem;
	font-weight				: bold;
	text-transform			: uppercase;
	width					: 100%;
}

.payoffheader h3 {
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 2rem;
	text-transform			: uppercase;
}

.payoffheader span {
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
}

.payoffheader .button {
	font-size				: 1.3rem;
	line-height				: 1.5;
}





/*============== HEADER NAV ==============================================*/

.hoofdnav {
	margin					: 0;
}

.hoofdnav li {
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	text-transform			: lowercase;
	font-size				: 1.25rem;
	line-height				: 2;
}





/*============== HEADER NAV SUB UITKLAP ==================================*/

.hoofdnav li ul {

}

.hoofdnav li li {
	background-color		: rgb(216,216,216);
	border-top				: 0.08rem solid rgb(255,255,255);
	font-size				: 0.8rem;
	line-height				: 2;
	min-height				: 2rem;
}





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


.afgerond {
	-webkit-border-radius		: 1rem;
	-moz-border-radius			: 1rem;
	border-radius				: 1rem;
}

.border {
	-webkit-border-radius		: 1rem;
	-moz-border-radius			: 1rem;
	border-radius				: 1rem;
	
	border						: 0.08rem solid rgba(67,197,229,0.5);
}





/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	color					: rgb(70,73,77);
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.8rem;
 
}
.kruimelpad a {
	color					: rgb(70,73,77);
}

.kruimelpad a:hover {
	color					: rgb(67,197,229);
}





/*============== KLEUREN =================================================*/
.kleur_tekst {
	color					: rgb(70,73,77);
}

.tekst_a {
	color					: rgb(67,197,229);
}

.tekst_b {
	color					: rgb(70,73,77);
}

.tekst_c {
	color					: rgb(216,216,216);
}

.tekst_grijs {
	color					: rgb(216,216,216);
}

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

.tekst_zwart {
	color					: rgb(70,73,77);
}

.bg_a {
	background-color		: rgb(67,197,229);
}

.bg_b {
	background-color		: rgb(70,73,77);
}

.bg_c {
	background-color		: rgb(216,216,216);
}

.bg_grijs {
	background-color		: rgb(216,216,216);
}

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

.bg_zwart {
	background-color		: rgb(70,73,77);
}




/*============== KLEUREN AFHANGEND VAN ACHTERGROND ====================*/

.bg_a .tekst_a,
.bg_b .tekst_b,
.bg_c .tekst_c {
	color					: rgb(255,255,255);
}

.bg_wit {
	color					: rgb(70,73,77);
}

.bg_b,
.bg_grijs,
.bg_zwart {
	color					: rgb(67,197,229);
}

.bg_a .downloads td,
.bg_b .downloads td,
.bg_c .downloads td {
	border					: 0.08rem solid rgb(216,216,216);
}

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td {
	border					: 0.08rem solid rgb(216,216,216);
}

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

.bg_wit .downloads *,
.bg_grijs .downloads *,
.bg_zwart .downloads * {
	color					: rgb(70,73,77);
}





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

.downloads {
	border					: 0.08rem solid rgb(216,216,216);
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 2rem;
	max-width				: 400px;
}

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

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

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

H1 {
	font-family				: 'roboto','HelveticaNeue-Bold','Helvetica','Arial','sans-serif';
	color					: rgb(255,255,255);
	font-weight				: bold;
	font-size				: 4rem;
	line-height				: 0.8;
	text-transform			: uppercase;
}

H2 {
	font-size				: 1.8rem;
	line-height				: 1.25;
}

H3 {
	font-size				: 2.5rem;
	line-height				: 1.2;
}

H4 {
	font-family				: 'roboto','HelveticaNeue-Bold','Helvetica','Arial','sans-serif';
	font-weight				: bold;
	font-size				: 1.1rem;
	line-height				: 1.2;
}

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

label {
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.8rem;
	line-height				: 1.25;
}

section img {
	max-width				: 100%;
}

.site-content section * ul,
.site-content section * ol {
	background-color		: rgba(216,216,216,0.8);

	-webkit-border-radius	: 0.6rem;
	-moz-border-radius		: 0.6rem;
	border-radius			: 0.6rem;
	
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

tr:hover {
	background-color		: rgba(67,197,229,0.15);
}

td {
	border					: 0.08rem solid rgb(216,216,216);
}




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

.socialmedia {
	color					: rgb(70,73,77);
	font-family				: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
	font-weight				: normal;
	line-height				: 1rem;
	padding					: 2rem 0;
}

.socialmedia span:before{
	color					: rgb(67,197,229);
	font-size				: 1.25em;
	line-height				: 1.25;
}
/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 0.6rem 0;
}

form > div {
	margin							: 0 0 0.6rem 0;
	overflow						: hidden;
	padding							: 0.06rem;
}

form > div > fieldset > div > div {
	margin							: 0 0 0.3rem 0;
}

form > div > label,
legend {
	width							: 25%;
	float							: left;
	padding-right					: 1.25rem;
	padding-top						: 0.6rem;
}

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;
	font-family						: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	height							: 2.5rem;
	margin-bottom					: 0.6rem;
	outline							: none;
	padding-left					: 0.6rem;
	padding-right					: 0.6rem;
}

textarea,
input[type=file] {
	padding-top						: 0.6rem;
}

textarea {
	padding-top						: 0.6rem;
	height							: 7.5rem;
}

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;
}

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 {
	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						: 1rem;
}

.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					: 0;
}

.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 1.25rem;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	position						: absolute;
	right							: 0.6rem;
}







/*============== SOCIAL MEDIA EMAIL FORM =============================*/

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		position					: relative;
		margin						: 0 auto;
		max-width					: 500px;
	}
	.socialmedia-emailform-melding {
		margin						: 20px auto;
	}




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

@media (min-width: 1200px) {

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

}

@media (max-width: 800px) {

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	select {

	}

}

@media (max-width: 600px) {

	form > div {
		margin						: 0 0 1rem 0;
	}

	form > div > label,
	legend {
		float						: none;
		margin						: 0 0 0.3rem 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%;
	}

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		max-width					: 320px;
	}

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

.beheerbaar-formulier {
    padding: 0 6.25rem;
}

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

form > div > label,
legend {
	font-size						: 0.9rem;
}

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

form > div > fieldset label {
	font-size						: 0.75rem;
}

fieldset {
	
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	background-color					: rgb(255,255,255);
	border							: 0.08rem solid rgba(70,73,77,0.2);
	-webkit-border-radius			: 0.3rem;
	-moz-border-radius				: 0.3rem;
	border-radius					: 0.3rem;
	color							: rgb(70,73,77);
	font-size						: 0.9rem;
}

button,
input[type=button],
input[type=submit] {
	-webkit-transition				: all 0.2s ease;
	transition						: all 0.2s ease;
	
	border							: none;
	-webkit-border-radius			: 2rem;
	-moz-border-radius				: 2rem;
	border-radius					: 2rem;

	color							: rgb(255,255,255);
	background-color					: rgb(67,197,229);
	
	font-size						: 1.25rem;
	text-transform					: none;
	line-height						: 1.25;
	padding							: 0.75rem 2rem;
}

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

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color					: rgba(70,73,77,0.8);
}

.inputregel {
	font-size						: 1rem;
	max-width						: 600px;
}

.inputregel_eenheid {
	font-size						: 1rem;
	line-height						: 1.75rem;
}

.inputregel_label {
	font-size						: 1rem;
	line-height						: 1.75rem;
	max-width						: 200px;
}





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

.foutmeldingen {
	
}

.foutmeldingen li {
	line-height						: 1.5;
	font-size						: 1rem;
	font-weight						: normal;
}

.formulier_melding {
	-webkit-border-radius			: 0.3rem;
	-moz-border-radius				: 0.3rem;
	border-radius					: 0.3rem;
}

.formulier_melding
{
	background-color				: rgb(67,197,229);

	-webkit-border-radius			: 0.3rem;
	-moz-border-radius				: 0.3rem;
	border-radius					: 0.3rem;
	
	color							: rgb(255,255,255);

	font-family						: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';

	line-height						: 2;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	font-size						: 0.6rem;
	line-height						: 2.75rem;
}

.icon-input-ok {
	color							: rgb(67,197,229);
}

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

.icon-input-verplicht {
	color							: rgb(70,73,77);
}



/**/

option:checked, option {
	background:rgb(255,255,255);
	color:rgb(70,73,77);
}

option[value=""] {
	color:rgb(216,216,216);
}

option:hover {
	background:rgb(255,255,255);
	color:rgb(67,197,229);
}

option:focus {
	background:rgb(255,255,255);
	color:rgb(67,197,229);
}














/*============== SOCIAL MEDIA EMAIL FORM =============================*/

.socialmedia-emailform-melding {
	background-color: rgba(67,197,229, 0.1);
}







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

@media (min-width: 1200px) {

}

@media (max-width: 800px) {

}

@media (max-width: 600px) {

}/* ============== EXTRA CLASSES ============================================== */

/* BG KLEUR VOLLEDIG BREED, GEBRUIKEN IN COMBINATIE MET BG_KLEUR IN BEHEER === */
.main-content section.achtergrondkleur_volledigbreed {
	max-width				: 100%;
	width					: 100%;
}

/* CONTENT GEMAXIMALISEERD */
.main-content section.achtergrondkleur_volledigbreed > div:first-of-type {
	max-width				: 1350px;
	width					: 100%;
	margin					: auto;
}




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

.bovenbalk-inhoud {
	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;
	
	background-color			: rgb(216,216,216);
	
	-webkit-border-radius		: 0 0 0.5rem 0.5rem;
	-moz-border-radius			: 0 0 0.5rem 0.5rem;
	border-radius				: 0 0 0.5rem 0.5rem;
	
	padding						: 0.6rem 0.6rem 0.5rem 0.6rem;
	margin-right				: 1.1rem;
}

.bovenbalk-inhoud a {
	padding						: 0 0.4rem;
	font-size					: 1.25rem;
	color						: rgb(70,73,77);
}

.bovenbalk a:hover,
.bovenbalk span:hover {
	color						: rgb(255,255,255);
	-webkit-transition			: color 0.5s ease;
	transition					: color 0.5s ease;
}

.bovenbalk span {
	color						: rgb(67,197,229);
	font-size					: 1.25rem;
}

.bovenbalk-inhoud a.icon-bellen:before {
	padding-right: 0.4rem;
}

/* ===== HEADER NAV ===== */

.hoofdnav-section {
	max-width					: 1350px;
	width						: 100%;
	margin						: auto;
	
	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		: space-between;
	justify-content				: space-between;
}

.hoofdnav ul {
	margin-top					: 0.6rem;
	
	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-justify-content		: space-around;
	justify-content				: space-around;
}

.hoofdnav-logo {
	padding						: 0 0.9rem;
	width						: 149px;
	height						: 47px;
}


.hoofdnav li a {
	color						: rgb(255,255,255);
	position						: relative;
	transition					: color 0.5s ease;
}

.hoofdnav li a:hover {
	position						: relative;
	color						: rgb(216,216,216);
}

.hoofdnav li a:after {
	position						: absolute;
	content						: "";
	height						: 0.125rem;
	background-color				: rgb(67,197,229);
	width						: 0%;
	left							: 50%;
	bottom						: -0.3rem;
	transition					: width 0.3s ease, left 0.3s ease;
}

.hoofdnav li a:hover:after {
	height						: 0.125rem;
	width						: 100%;
	left							: 0%;
}

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

.hoofdnav li a.actief:after {
	position						: absolute;
	content						: "";
	height						: 0.125rem;
	background-color				: rgb(67,197,229);
	width						: 100%;
	left							: 0%;
	bottom						: -0.3rem;	
}


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

.margin-kop {
	position				: absolute;
	top					: 8rem;
	z-index				: 99;
}

.intro-kop {
	font-size			: 8rem;
	color				: rgb(255,255,255);
	font-weight			: bold;
	word-break			: break-all;
	text-shadow			: 2px 2px 8px rgba(0,0,0,0.2);
}

.kop-thin {
	font-family			: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-weight			: 300;
	margin				: 0;
}

div .intro-tekst {
	margin-top			: 22.5rem;
}

.intro-tekst p {
	color				: rgb(255,255,255);
	font-size			: 1.2rem;
	line-height			: 1.5;
}

.img_home {
	position				: relative;
	display				: block;
	min-width			: 400px;
	max-width			: 650px;
	min-height			: 750px;
}

.prlx-mobilewelzichtbaar {
		display: none;
	}

.prlx-1,
.prlx-2,
.prlx-3 {
	position			: absolute;
}

.prlx-1 {
	width			: 100%;
	z-index			: 1;
	top				: 0;
	right			: 0;
}

.prlx-2 {
	width			: 80%;
	z-index			: 2;
	top				: 350px;
	left				: 0;
}

.prlx-3 {
	width			: 60%;
	z-index			: 3;
	top				: 600px;
	right			: 0;
}

.effect_transition_hoek {
	-moz-transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.effect_transition_schalen	{
	-moz-transition: all 0.8s ease;
	-webkit-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}

.effect_transition_verplaats_y	{
	-moz-transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

/* ===== MENU-INTRODUCTIE  ================================================*/

.introductie {
	padding				: 0 6.25rem;
}

.introductie h1 {
	margin				: 3rem 0 0 0;
	line-height			: 1;
}

.introductie .kop-thin {
	margin-top			: 0;
}

.introductie p {
	color				: rgb(255,255,255);
}

.introductie a {
	color				: rgb(67,197,229);	
}

.introductie a.button {
	color				: rgb(255,255,255);
}




/* ===== MENU-INFOBLOKKEN ================================================*/

.menu-infoblok h2 {
	margin					: 2rem 0;
}

div .menu-infoblok .button {
	margin-bottom			: 0;
}

div .menu-infoblok-icon {
    color					: rgb(67,197,229);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover a .menu-infoblok-icon,
.menu-infoblok:hover .button {
    -webkit-transition		: all 0.5s ease;
	transition				: all 0.5s ease;
}

.menu-infoblok:hover a .menu-infoblok-icon,
.menu-infoblok:hover .button {
    color					: rgb(255,255,255);
    background-color			: rgb(39,114,133);
}

.menu-infoblok p a {
    color					: rgb(67,197,229);
}

.submenu-infoblok {
	padding					: 0 6.25rem;
}
.submenu-infoblok .div12-12 {
	padding					: 2rem;
}

.submenu-infoblok ul {
	background-color		: transparent!important;
}

.submenu-infoblok li {
	font-size				: 1.1rem;
}





/* =========== HOOFDSTUKKEN =========== */

.site-content.content-met-submenu .hoofdstukken {
	text-align: left;
}

.hoofdstukken {
	text-align: center;
}

.site-content section.hoofdstukken {
	margin-bottom			: 3rem;
}

.site-content.content-met-submenu {
	margin-top				: 3rem;
	margin-bottom			: 3rem;
}

.site-content.content-met-submenu,
.site-content.content-met-submenu .main-content {
	padding					: 0 20px;
}

.site-content.content-met-submenu .introductie {
	padding					: 0 20px;
}

.site-content.content-met-submenu .introductie h1 {
	margin					: 0;
	font-size				: 2.5rem;
}

.site-content.content-met-submenu .hoofdstukken h2 {
	font-size				: 1.5rem;
}

.hoofdstukken div.hoofdstuk-button-onderkant {	
	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		: space-between;
	justify-content				: space-between;
}


/*============== TEAM ================================================*/

.teamlid-pasfoto img {
	-webkit-border-radius		: 0.6rem 0.6rem 0 0;
	-moz-border-radius			: 0.6rem 0.6rem 0 0;
	border-radius				: 0.6rem 0.6rem 0 0;
}

.teamlid-tekst h3 {
	font-size					: 1.8rem;
	line-height					: 1.2;
	color						: rgb(70,73,77);
}

.teamlid-functie {
	color						: rgb(67,197,229);
}

.teamlid-contactgegevens a {
	font-size					: 1.2rem;
	color						: rgb(67,197,229);
	padding						: 0 0.6rem;
}

.teamlid-tekst a {
	color						: rgb(67,197,229);
}

.teamlid-tekst a:hover,
.teamlid-contactgegevens a:hover {
	color						: rgb(70,73,77);
}





/* ============== FOOTER - BANNER ============================================== */

.site-footer section.bg_banner {
	max-width					: 100%;
	width						: 100%;
	background-image			: url("https://www.frisbee.nl/resources/img/werkwijze-bg.png");
	background-repeat			: no-repeat;
    background-position			: center center;
    background-size				: cover;
}

.bg_banner div {
	max-width					: 1350px;
	width						: 100%;
	margin						: auto;
}

.banner {
	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;
	
	text-align					: center;
}

.banner h1,
.banner h2 {
	font-size					: 2.5rem;
	font-weight					: 300;
	color						: rgb(70,73,77);
}

.banner a {
	margin						: 0;
	margin-bottom				: 0.8rem;
	color						: rgb(70,73,77);
	border						: 0.08rem solid rgb(70,73,77);
	background-color				: transparent;
}

.banner a:hover {
	border						: 0.08rem solid rgb(216,216,216);
	background-color				: rgb(216,216,216);
}

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

.footer-contact {
	
}

.footer-social {
	padding-top					: 0.6rem;
}

.footer-social a {
	font-size					: 2rem;
	color						: rgb(70,73,77);
	padding-right				: 1.5rem;
}

.footer-social a:last-of-type {
    	padding-right				: 0;
}

.footer-social a:hover {
	color						: rgb(255,255,255);
}

.footer-phonenumber {
	font-family					: 'roboto','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 2rem;
	font-weight					: bold;
	color						: rgb(255,255,255);
}

.footer-portfolio {
	display						: block;
}

.footer-portfolio a {
	margin						: 0.3rem 0;
}


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

.margin_ver_50 {
	margin						: 3rem 0;
}

.flex-end {
	align-items					: flex-end;
}

.bg_a,
.bg_b,
.bg_c,
.bg_grijs,
.bg_wit,
.bg_zwart {
	-webkit-border-radius		: 0.6rem;
	-moz-border-radius			: 0.6rem;
	border-radius				: 0.6rem;
}

p a {
    color					: rgb(67,197,229);
}

.bg_grijs p a {
    color					: rgb(39,114,133);
}

.bg_grijs p a:hover {
    color					: rgb(67,197,229);
}
iframe {
	width: 100%;	
}

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

	.logomenubalk .button:first-child {
		margin-bottom				: 0.6rem;
	}

	.logomenubalk .button {
		text-align					: center;
	}
}



@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					: 0.6rem6rem;
	}

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

	.hoofdnav li a {
		padding						: 0 0.6rem;
	}

	.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				: 0.6rem;
		padding						: 0.3rem;
		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;
		-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;
	}
	
	.div2-12 {
		flex						: 1 0 22%;
	}

}



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

	.logomenubalk {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
		
		-webkit-align-items			: center;
		align-items					: center;

		margin						: auto;
		width						: 100%;
	}

	.logomenubalk_logo {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;

		margin-left					: 1.25rem;
	}
	
	.div2-12 {
		flex						: 1 0 31%;
	}

	.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:750px) {

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

	.logomenubalk .button:first-child {
		margin-bottom				: 0.6rem;
	}

	.logomenubalk .button {
		text-align					: center;
	}

}



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

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

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

	.header_buttons {
		display						: none;
	}

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

	.logomenubalk_logo {
		margin-right				: 1.25rem;
	}

	.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:1000px) {

	.hoofdnav li a {
		font-size				: 1.1rem;
	}
		
	.intro-kop {
		font-size				: 6.8rem;
	}
	
	.intro-section {
		align-items				: flex-start;
		padding					: 0 2rem !important ;
	}
	
	.img_home {
		margin-top				: 3rem;
		min-width				: 350px;
	}
		
	.prlx-3 {
		top						: 500px;
	}
		
}



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

	.hoofdnav-logo {
		position					: absolute;
		top						: 0.3rem;
		left						: 2rem;
	}
		
	.intro-kop {
		font-size				: 6rem;
	}
	
	.margin-kop {
		top						: 6rem;
	}
	
	div .intro-tekst {
		margin-top				: 20rem;
	}

	.dienst {
		flex							: 1 0 48%;
		padding						: 1.5rem;
		margin						: 0.6rem 1%;
	}
		
	.footer-contact {
		margin						: auto;
		text-align					: center;
	}
	
	.portfolio-visual-container {
		display						: flex;
		flex-direction				: column;
	}

}



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

	.hoofdnav-logo {
		left						: 2rem;
	}

	.intro-section,
	.intro-kop,
	.introductie h1,
	.introductie h2,
	.introductie p,
	.introductie span {
		text-align				: center;
		text-shadow				: none;
	}

	.intro-kop .display_flex_row {
		justify-content			: center;
	}
	
	.intro-section {
		display					: block;
	}
		
	.kop-small {
		font-size				: 4.3rem;
		font-weight				: normal;
	}

	.margin-kop {
		position					: relative;
		top						: initial;
	}
	
	div .intro-tekst,
	.img_home {
		margin-top				: 0;
	}
	
	.img_home {
		max-width				: 500px;
		min-height				: 650px;
		margin					: auto;
	}
	
	.introductie #contactformulier {
		text-align				: left;
	}

	.filter-buttons-container {
		text-align				: center;
	}
	
	.filter-button {
		margin					: 0.3rem 0.1rem;
	}
}



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

	P, p {
		font-size					: 1rem;
		line-height					: 1.4;
	}

	.main-content {
		overflow					: hidden;
	}
	
	.site-content.content-met-submenu .main-content {
		padding: 0;
	}

	.bovenbalk-inhoud a {
		font-size					: 1.1rem;
		padding						: 0 0.3rem;
	}
			
	.hoofdnav-section {
		margin-top					: 1.3rem;
	}		
			
	.hoofdnav-logo {
		position						: static;
		margin						: auto;
	}
	
	.hoofdnav-logo img {
		width						: 110px;
		height						: auto;
	}
	
	.intro-section {
		display						: flex;
		padding						: 0 !important;
	}
	
	.margin-kop {
	}

	.kop-small {
		font-size					: 3.4rem;
		line-height					: 1.2;
	}

	div .img_home {
		order						: 1;
		padding						: 0 1rem 0 0 !important;
	}
			
	div .intro-tekst {
		order						: 2;
		padding						: 0 2rem 0 2rem !important;
	}

	.prlx-mobilenietzichtbaar {
		display: none;
	}
	
	.prlx-mobilewelzichtbaar {
		display: block;
	}
			
	.img_home {
		min-height					: 520px;
		margin						: auto;
		max-width					: 400px;
		min-width					: 400px;
	}
	
	.prlx-2 {
		top							: 250px;
	}

	.prlx-3 {
		top							: 400px;
	}
	
	.intro-tekst p {
		color						: rgb(70,73,77);
		font-size					: 1.075rem;
		line-height					: 1.4;
		margin-bottom				: 0.6rem;
	}

	.footer-copyright {
		height						: auto;
		flex-direction				: column;
		line-height					: 2rem;
	}
	
	.dienst {
		flex							: 1 0 96%;
	}
	
	div .dienst-icon:before {
		font-size					: 6rem;
	}
	
	.dienst h2,
	.menu-infoblok h2 {
		margin						: 0.8rem 0;
	}
	
	.banner h1,
	.banner h2 {
		font-size					: 2rem;
		padding						: 0;
	}
	
	.introductie {
		padding						: 0 1.25rem;
	}
	
	.intro-kop,
	.introductie h1 {
		margin						: 0;
		font-size					: 3.5rem;
	}
	
	.site-content.content-met-submenu .introductie h1 {
		font-size: 2rem;
	}
	
	div .menu-infoblok-icon {
		width						: 7.5rem;
		height						: 7.5rem;
	}
	
	.menu-infoblok-icon:before {
		font-size					: 5rem;
	}
	
	.portfolio {
		justify-content				: center;
		-webkit-justify-content		: center;
	}

	.portfolio-slide-preload {
		height						: 250px;
	}
	
	section.hoofdstukken .div12-12,
	section.hoofdstukken .div6-12,
	section.hoofdstukken .div4-12 {
		flex							: 1 0 96%;
		margin						: 1% 2%; 
	}
	
	.hoofdstukken {
		text-align: center;
	}
}


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

	.bovenbalk-inhoud {
		display						: inline-block;
		text-align					: center;
	}
	
	.intro-kop,
	.introductie h1 {
		font-size					: 3rem;
	}
	
	.introductie {
		padding						: 0 0.75rem;
	}
	
	
	.kop-small {
		font-size					: 2.5rem;
		line-height					: 1.2;
	}
	
	.site-footer section {
		padding: 0;
	}
	
}



