/*-------------------- ALGEMEEN -------------------- */
*, *:before, *:after{
	box-sizing:border-box;
}

html, body{
	width:100%;
	padding:0px;
	margin:0px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size:1em;
	line-height:28px;
	font-weight:300;
	color:#403F3F;
	background: #f0f0f0;
}

@media screen and (max-width: 1300px) {
	body {
		font-size: 14px;
		line-height: 22px;
	}
}

a{
	color:#2c2c2c;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

p{
	margin-top:0px;
}

h1, .title {
    color: #333333;
    display: inline-block;
    font-size: 2.5em;
    font-weight: 600;
    margin: 0 0 10px 0;
	display: inline;
    line-height: 1em;
}

h2, .subTitle {
	color: #333333;
    display: inline-block;
    font-size: 1.25em;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 30px;
}

h3, .smallTitle {
	color: #333333;
	display: inline-block;
	font-size: 1em;
	font-weight: 400;
	margin: 0 0 10px 0;
	line-height: 22px;
}

.w50 {
	float: left;
	width: 50%;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.minHeight {
    min-height: 550px;
}

.w50Block {
	float: left;
	width: 50%;
	height: 50%;
}

.w50Block:nth-of-type(2n) {
	float: left;
	border-left: 1px solid #e0e0e0;	
}

.w50Block:nth-of-type(1),
.w50Block:nth-of-type(2) {
	border-bottom: 1px solid #e0e0e0;	
}

.displayFlex {
	display: flex;
}

.mainContent {
    float: left;
    width: 100%;
    overflow-y: auto;
    padding: 105px 300px 0 130px;
}

.wrapper{
	float: left;
	width: 100%;
}

.centerElement {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: translate(-50%, -50%);
}

.btn {
    display: inline-block;
    line-height: 100%;
    font-size: 1em;
	border-radius: 3px;
    padding: 10px 20px;
	font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.0);
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	position: relative;
	top: 0;
}

.btn.darkblue {
	background: #357494;
	color: #fff;
}

.btn.darkblue:hover {
	background: #357494;
}


.container{
	max-width: 1200px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
    padding: 0 20px;
}

.readMore{
	color:#FFF;
	background:#4CA1CD;
    padding: 10px 20px;
	font-size:15px;
	font-weight:400;
	float:left;
}

.readMore:hover{
	text-decoration:none;
}

.bx-wrapper{
	float:left !important;
	width:100% !important;
}

/* INPUTS */
.fancyInputs span {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}

.formRow {
    float: left;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px
}

.fullWidthForm .container {
    max-width: 800px
}

.formRow input {
    margin-bottom: 20px
}

.formRow input:last-of-type {
    margin-bottom: 0
}

.content {
    padding-top: 50px!important;
    padding-bottom: 50px!important;
}

label {
    cursor: pointer;
    line-height: 24px;
    padding: 7px 0;
    margin: 0 20px 0 0
}

label:first-of-type {
    font-weight: 700
}

input[type="text"],input[type="password"],input[type="number"] {
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 15px;
    font-size: 1em;
    color: #8f9199;
    border-radius: 5px;
    border: 1px solid #d5d6d8;
    outline: none;
    font-family: 'Muli',sans-serif;
    background: #ffffff;
    box-shadow: 0 0 1px -1px rgba(20,171,244,.4);
    transition: box-shadow 0.3s;
    -webkit-transition: box-shadow 0.3s
}

textarea {
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 15px;
    font-size: 1em;
    color: #8f9199;
    border-radius: 5px;
    border: 1px solid #d5d6d8;
    outline: none;
    font-family: 'Muli',sans-serif;
    background: #ffffff;
    box-shadow: 0 0 1px -1px rgba(20,171,244,.4);
    transition: box-shadow 0.3s;
    -webkit-transition: box-shadow 0.3s
}

textarea:focus,select:focus,input[type="text"]:focus,,input[type="number"]:focus {
    box-shadow: 0 0 1px 1px rgba(20,171,244,.4)
}

select {
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 15px;
    font-size: 1em;
    font-family: 'Muli',sans-serif;
    color: #8f9199;
    border-radius: 5px;
    border: 1px solid #d5d6d8;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 1px -1px rgba(20,171,244,.4);
    transition: box-shadow 0.3s;
    -webkit-transition: box-shadow 0.3s;
    cursor: pointer
}

input[type="checkbox"] {
    outline: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 1px solid #d5d6d8;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: -4px 0 0 0;
    border-radius: 5px;
    position: relative;
    top: 4px;
    cursor: pointer
}

input[type="checkbox"]:hover {
    background: #e2e2e2
}

input[type="checkbox"]:before {
    content: '\f00c';
    font-family: fontAwesome;
    position: absolute;
    top: 0;
    left: 1px;
    display: none;
    font-size: 1em;
    color: #573992;
    cursor: pointer
}

input[type="checkbox"]:checked:before {
    display: block
}

.radioLabel {
    display: inline-block;
    margin: 0 20px 0 0
}

input[type="radio"] {
    -webkit-appearance: none;
    width: 20px;
    margin: 4px 5px 0 0;
    height: 20px;
    position: relative;
    top: 5px;
    border: 1px solid #d5d6d8;
    outline: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer
}

input[type="radio"]:hover {
    background: #e2e2e2
}

input[type="radio"]:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    top: 4px;
    left: 4px;
    position: absolute;
    display: none
}

input[type="radio"]:checked:before {
    display: block
}

.radioLabel {
    margin-right: 20px;
    display: inline-block
}

input[type="submit"] {`
    -webkit-appearance: none;
    border: none;
    cursor: pointer
}

/* INPUTS END */
/*-------------------- HEADER -------------------- */
#logo {
	float: left;
}

#logoContainer {
	float: left;
	width: 100%;
	position: absolute;
    top: 0;
    left: 0;
    background: #fafafa;
    display: inline-block;
    padding: 10px 300px 10px 150px;
}

#header{
    width: 130px;
	float:left;
	position: fixed;
	height: 100%;
	border-right: 1px solid #e0e0e0;
	background: #fff;
}

#header ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px;
    list-style-type: none;
}

#header ul li {
	float: left;
    width: 100%;
}

#header ul li a {
	float: left;
    width: 100%;
    text-align: center;
    font-size: 1.3em;
    color: #d6d6d6;
    padding: 15px 0;
    line-height: 100%;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
}

#header ul li a span {
    float: left;
    width: 100%;
    text-align: center;
    color: #2e2523;
    font-size: 12px;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
}

#header ul li a:hover,
#header ul li a:hover span {
    color: #48a1ce;
}

/*-------------------- BANNER -------------------- */
#banner{
    float: left;
    width: 100%;
    height: 270px;
    margin-bottom: 50px;
    background: #000;
	background-size: cover;
	background-position: center;
}

#banner .bannerContent{
	width:100%;
	float:left;
}

#banner .bannerTitle {
    float: left;
    width: 100%;
    position: relative;
    top: 60%;
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    box-shadow: 0 0 black;
    text-shadow: 0 0 20px black;
}

/*-------------------- ARTIKELEN -------------------- */
#artikelen{
	width:100%;
	float:left;
}

.artikelenHome{
	margin:50px 0px 0px 0px;
}

.artikelenHome .artikelenElement .artikelImage{
	height:150px !important;
}

.artikelenBottom{
	margin:0px 0px 50px 0px;
}

#artikelen .artikelenElement{
	float:left;
	width:32%;
}

#artikelen .artikelenElement:nth-of-type(2n){
	margin:0px 2% 0px 2%;
}

#artikelen .artikelenElement .artikelImage{
	float:left;
	width:100%;
	height:250px;
	margin:0px 0px 10px 0px;
	background-size:cover !important;
	background-repeat:no-repeat !important;
	background-position:center !important;
}

#artikelen .artikelenElement span{
	font-size:24px;
	color:#2c2c2c;
	font-weight:400;
	width:100%;
	float:left;
	margin:0px 0px 10px 0px;
	height:25px;
	overflow:hidden;
}

#artikelen .artikelenElement p{
	height:50px;
	overflow:hidden;
	float:left;
	width:100%;
}

/*-------------------- OVER -------------------- */
#over{
	float:left;
	width:100%;
	background:#EFEFEF;
	padding:50px 20px;
	margin:50px 0px;
}

#over p:last-child{
	margin:0px;
}

/*-------------------- FOOTER -------------------- */
#footer{
	background:#EFEFEF;
	width:100%;
	float:left;
	text-align:center;
	padding:10px;
	font-size:12px;
}

#footer a{
	color:#434343;
}

/*-------------------- RESPONSIVE -------------------- */
#menuToggle{
    cursor: pointer;
    display: none;
    float: right;
    padding: 12px;
    width: 100%;
	background: #2c2c2c;
}

#menuToggle span.linecont{
    float: right;
    max-width: 25px;
    padding: 5px 0 0;
    width: 100%;
}

#menuToggle span.nav{
    color: #fff;
    display: none;
    float: left;
    font-weight: bold;
    padding: 1px 0 0;
    text-align: left;
    text-transform: uppercase;
    width: 80%;
}

#menuToggle span.linecont span{
    background: #FFF none repeat scroll 0 0;
    float: left;
    height: 2px;
    margin: 0 0 5px;
    width: 100%;
}

#nav span.nav{
    color: #fff;
    cursor: pointer;
    display: none;
    float: left;
    font-size: 18px;
    font-weight: 300;
    padding: 12px 0;
    text-align: left;
    text-transform: uppercase;
    width: 80%;
}

#headerNav.mobile-menu ul{
   border-left: 0px;
	float: left;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0px;
	background: #2c2c2c;
	padding: 0px;
	display: none;
	z-index: 999;
}
#headerNav.mobile-menu ul li{
    border-top: 1px solid rgba(255,255,255,0.5);
    float: left;
    width: 100%;
	margin: 0px;
}

#headerNav.mobile-menu ul li ul{
	top:0 !important;
	position:relative;
}

#headerNav.mobile-menu ul li a{
    float: left;
	width: 100%;
	border-left: 0 none;
	border-right: 0 none;
	padding: 10px;
	margin: 0px !important;
	border-top: 1px solid #FFF !important;
}

#headerNav.mobile-menu ul li a{
	padding:10px 0 !important;
	text-align:center;
}

#headerNav.mobile-menu ul li:hover ul{
    display: none;
}

#left-menu-main-container {
    float: left;
    padding: 0 0 0 300px;
    width: 100%;
	box-sizing: border-box;
}

.blogsContainer a {
	color: #2c2c2c;
}

.blogImage {
    float: right;
	width: 300px;
    max-width: 100%;
    margin: 0 0 20px 20px;
}

.rightCol {
    display: block;
    width: 300px;
    height: 100vh;
    border-left: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
}

@media screen and (max-width: 1300px) {
	.rightCol {
		width: 240px;
	}
	
	.mainContent {
		padding-right: 240px;
	}
}

/*Bedrijven home*/
#homeBedrijven {
	display: flex;
    margin-top: 25px;
	flex-wrap: wrap;
}

.bedrijfBlock {
    float: left;
    width: 23.5%;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    background: #fff;
	position: relative;
    padding: 20px;
    margin-right: 2%;
    min-height: 200px;
    margin-bottom: 25px;
    text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bedrijfBlock:nth-of-type(4n) {
	margin-right: 0%;
}

.bedrijfBlock span {
	position: absolute;
	display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: #4ba1cd;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    border-radius: 0 0 5px 5px;
    text-align: left;
}

@media screen and (max-width: 1300px) {
	.bedrijfBlock {
		width: 49%;
	}
	
	.bedrijfBlock:nth-of-type(4n),
	.bedrijfBlock:nth-of-type(2n) {
		margin-right: 0%;
	}
}

.contactModule {
	float: left;
	background: #ff5858;
	padding: 30px 20px;
	margin-bottom: 30px;
	width: 100%;
	text-align: center;
}

.contactModule .contactImage {
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: #000;
}

.contactModule span {
	float: left;
	width: 100%;
	color: #fff;
	text-align: center; 
}

.rightBottomLogo {
    position: absolute;
    bottom: 0;
    background: #4ba1cd;
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translatex(-50%);
}

#toggle {
	display: none;
}

@media screen and (max-width: 940px) {
	#logo img {
		max-width: 180px;
	}
	
	#toggle {
		display: inline-block;
		position: absolute;
		top: 30px;
		right: 20px;
		padding: 9px;
		font-size: 25px;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}
	
	#logoContainer {
		float: left;
		width: 100%;
		position: fixed;
		z-index: 39;
		top: 0;
		left: 0;
		background: #fafafa;
		display: inline-block;
		padding: 20px;
	}
	
	.mainContent {
		float: left;
		width: 100%;
		overflow-y: auto;
		padding: 100px 240px 0px 0;
	}
	
	#header {
		width: 100%;
		float: left;
		position: fixed;
		z-index: 40;
		overflow-y: auto;
		top: 98px;
		height: 100%;
		max-height: 0px;
		border-right: 1px solid #e0e0e0;
		background: #fff;
		transition: max-height 0.3s;
		-webkit-transition: max-height 0.3s;
	}
	
	#header.active {
		max-height: 100vh;
	}
	
	#header ul li {
		float: left;
		width: 100%;
	}
	
	#header ul li a {
		float: left;
		width: 100%;
		text-align: center;
		font-size: 1.3em;
		color: #d6d6d6;
		padding: 15px 0;
		line-height: 100%;
		transition: color 0.3s;
		-webkit-transition: color 0.3s;
	}
	
	#header ul li a i {
		float: left;
		margin-right: 10px;
	}
	
	#header ul li a span {
		float: left;
		width: auto;
		text-align: -webkit-auto;
		color: #2e2523;
		font-size: 12px;
		transition: color 0.3s;
		-webkit-transition: color 0.3s;
	}
	
	.rightCol {
		display: block;
		height: calc(100vh - 100px);
		border-left: 1px solid #e0e0e0;
		position: fixed;
		z-index: 39;
		top: 100px;
		right: 0;
		background: #fff;
	}
}

.mainText {
	float: left;
	width: 100%;
}

.mainText img {
	display: inline-block;
	max-width: 100%;
	width: 300px!important;
}