/* EDITABLE THROUGH BACKEND */
.customBannerPerPage{
	background-attachment: fixed !important;
    float: left;
    margin: 0;
    width: 100%;
}

/* ---------------------- BASIC HTML SETTINGS ---------------------- */

*{
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 25px;
	color: #343434;
}

a{
	text-decoration: none;
	color: #343434;
}

/* ---------------------- BASIC SITE SETTINGS ---------------------- */

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

.whiteBg{
	background-color: #fff;
}

.container{
	margin: 0 auto;
	width: 1000px;
}

/* ---------------------- HEADER ---------------------- */

.banner{
	float: left;
	width: 100%;
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: cover;
}

#logo{
	float: left;
	width: 100%;
	margin: 15px 0 10px 0;
	text-align: center;
}

#logo img{
	padding: 20px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.5);
}

.menu{
	float: left;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
}

.menu ul{
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu ul li{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu ul li a{
	float: left;
	padding: 20px 30px; /* MENU PADDING */
	font-size: 16px; /* MENU TEKST GROOTTE */
	color: #fff;
	text-transform: uppercase;
}

.menu ul li a:hover, .menu ul li a.active, .menu ul li a:active{
	background-color: rgba(58,182,83,0.7);
}

/* ---------------------- CONTENT ---------------------- */

.content{
	float: left;
	width: 100%;
	padding: 30px 0;
	position: relative;
}

.backgroundLogo{
	float: left;
	width: 20%;
	height: 375px;
	background-image: url("../images/backgroundLogo.png");
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

/* ---------------------- BLOGS ---------------------- */

.blogs{
	float: left;
	width: 100%;
	margin: 0 0 20px 0;
}

.blogs a{
	float: left;
	width: 22%;
}

.blogs a:nth-of-type(1), .blogs a:nth-of-type(2), .blogs a:nth-of-type(3){
	margin: 0 4% 0 0;
}

.blogs a img{
	max-width: 100%;
	height: 100%;
	border-radius: 50%;
}

.blogs a span{
	float: left;
	width: 100%;
	text-align: center;
}

.blogs a span:first-of-type{
	font-weight: bold;
	font-size: 16px;
	margin: 10px 0;
}

/* ---------------------- TEXT ---------------------- */

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

h1{
	font-size: 26px;
	color: #3ab653;
}

h2{
	font-size: 22px;
	color: #3ab653;
}

h3{
	font-size: 18px;
	color: #3ab653;
}

/* ---------------------- FOOTER ---------------------- */

.footer{
	float: left;
	width: 100%;
	background-image: url("../images/banner.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.footer span{
	float: left;
	padding: 20px;
	font-size: 14px;
	text-align: center;
	width: 100%;
	color: #fff; /* FOOTER TEXT COLOR */
	background: rgba(0,0,0,0.8);
}

.footer span a{
	color: #fff; /* FOOTER SITEMAP TEXT COLOR */
}

.footer span a:hover{
	text-decoration: underline;
}