/* EDITABLE THROUGH BACKEND */
*{
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #000;
}

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

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

.menuBackground{
	float: left;
	width: 100%;
	background: #313131;
}

#logo{
	float: left;
	width: 100%;
	margin: 15px 0;
}

.menu{
	float: left;
	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: 15px 30px; /* MENU PADDING */
	font-size: 15px; /* MENU TEKST GROOTTE */
	color: #fff;
}

.menu ul li a:hover, .menu ul li a.active, .menu ul li a:active {
	background: #B72726;
}

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

.bannerText{
	float: left;
	width: 47%;
	border: 3px #fbe6c5 solid;
	padding: 10px;
	margin: 210px 0 90px 0;
	color: #fbe6c5;
	text-align: center;
	text-transform: uppercase;
}

.bannerText span:first-of-type{
	float: left;
	width: 100%;
	font-size: 25px;
	margin: 0 0 10px 0;
}

.bannerText span:nth-of-type(2){
	float: left;
	width: 100%;
	font-size: 40px;
	margin: 0 0 10px 0;
}

.content{
	float: left;
	width: 100%;
	margin-top: 20px;
	text-align: center;
	color: #B72726;
}

h1{
	font-size: 28px;
	margin-top: 0;
}

h2{
	font-size: 24px;
}

h3{
	font-size: 18px;
}

p{
	font-size: 14px;
	line-height: 22px;
	color: #313131!important;
}

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

.blog{
	float: left;
	width: 22%;
	margin-right: 4%;
	transition: all 0.3s;
}

.blogs .blog:last-of-type{
	margin-right: 0;
}

.blog:hover{
	opacity: 0.9;
}

.blog span{
	float: left;
	width: 100%;
	font-size: 14px;
	margin: 250px 0 25px 0;
	background: rgba(0,0,0,0.5);
	color: #fff;
	text-align: center;
	padding: 10px 0;
	text-transform: uppercase;
}

.footer{
	float: left;
	width: 100%;
	margin-top: 30px; /* SPACE BETWEEN FOOTER AND CONTENT */
	background: #313131; /* FOOTER COLOR */	
}

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

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

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

