html,body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
p{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #ffffff;
	box-shadow: 0 0 10px -5px rgba(0,0,0,0.2);
	z-index: 2
}
.header .header-warpper{
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	max-width: 1600px;
	height: 60px;
	box-sizing: border-box;
}
.footer{
	margin-top: 50px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #66666;
	font-size: 12px;
	text-align: center;
	background-color: #f0f0f0
}

.mobiel-nav-button{
	width: 50px;
	height: 50px;
	background-image: url(../image/nav_icon.svg);
	background-size: 33px 25px;
	background-position: center;
	background-repeat: no-repeat;
}


@media (max-width: 768px) {  
	.mobiel-nav-button{
		display: block;
	}
	.logo-container{
		margin: 0 auto;
		width: 200px;
		height: 60px;
	}
	.logo-container .img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.nav-container.show{
		display: block;
		position: absolute;
	}
	.nav-container{
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #ffffff;
	}
	.nav-item{
		display: block;
		padding: 0 20px;
		box-sizing: border-box;
		width: 100%;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		color: #333333;
		font-weight: bold;
		background: #f0f0f0
	}
}
@media (max-width: 992px) {  
	.mobiel-nav-button{
		display: block;
	}
	.logo-container{
		margin: 0 auto;
		width: 200px;
		height: 60px;
	}
	.logo-container .img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.nav-container.show{
		display: block;
		position: absolute;
	}
	.nav-container{
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #ffffff;
	}
	.nav-item{
		display: block;
		padding: 0 20px;
		box-sizing: border-box;
		width: 100%;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		color: #333333;
		font-weight: bold;
		background: #f0f0f0
	}
}


@media (min-width: 992px) { 
	.mobiel-nav-button{
		display: none;
	}
	.logo-container{
		width: 200px;
		height: 60px;
	}
	.logo-container .img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.nav-container{
		margin: 0 150px 0;
	}
	.nav-item{
		font-size: 14px;
		color: #333333;
		font-weight: bold;
	}
}
