/* start 0 lijn */
html, body, div, table, tr, td, th, h1, h2, h3, h4, h5, h6, ul, li, ol, p, span, a, img
{
	margin: 0;
	padding: 0;
	border: none;
}
/* einde 0 lijn */

* {
	box-sizing: border-box;
}

body {
	color:#000;
	font-family: "Josefin Slab", sans-serif;
	font-size: 16px;
}

body.overflow {
	overflow: hidden;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	width: 100%;
	height: auto;
}

.wrapper {
	max-width: 1130px;
	width: 95%;
	margin: auto;
}

.header {
	background-color: #000;
	color:#fff;
	font-weight: 700;
	padding: 30px 0;
}

.header a {
	color:#fff;
}

.logo {
	float: left;
	font-size: 24px;
}

.menu {
	float: right;
	padding-top: 7px;
}

.header .menu ul {
	list-style: none;
}

.header .menu li {
	margin-left: 30px;
	display: inline;
}

.content {
	margin-top: 50px;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

.content .box {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 15px;
}

.index {
	margin-top: 150px;
}

.index .box-outer {
	padding:0 35px;
}

.index a.box {
	display: block;
	padding: 40px;
	border: 1px solid #000;
	text-align: center;
}

.index a.box:hover {
	background-color: #eee;
	text-decoration: none;
}

.index .box .box-title {
	margin-top: 40px;
	color:#000;
}

.content .box .box-title {
	display: none;
}


/*Lightbox*/


.lb-container {
	position: fixed;

	width: 100%;
	height: 100%;
	top:50%;
	left: 50%;
	z-index: 100;
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.lb-container img {
	max-height: 90%;
	max-width: 90%;
	width: auto;
	height: auto;
	position: absolute;
	top:50%;
	left: 50%;
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.lb-container .box-title {
	display: block;
	position: fixed;
	font-weight: 700;
	left: 50%;
	bottom:10px;
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.lb-wrapper {
	display: none;
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.95);
	z-index: 10;
}

.lb-button {
	position:fixed;
	z-index: 200;
	top: 50%;
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-o-user-select:none;
	-ms-user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}

.lb-button:hover {
	cursor: pointer;
}

.lb-close {
	top:20px;
	right: 20px;
	font-size: 24px;
}

.lb-prev {
	left:20px;
}

.lb-next {
	right: 20px;
}




/*Responsive w3schools*/

.row::after {
	content: "";
	clear: both;
	display: table;
}
/* For mobile phones: */
[class*="col-"] {
	float: left;
}

	/* For desktop: */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
