hr{ // Zorgt ervoor dat hr lines niet tonen op MVS pagina
	display: none;
}

.mission_top{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	padding-top: 60px;
}

.mission_subcontent{
	width: 100%;
	height: auto;
	text-align: justify;
}

.mission_row{
	width: 100%;
	height: auto;
	display: flex;
	margin-top: 60px;
	gap: 30px;
	align-items: stretch;
}

.mission_box{
	width: 35%;
	height: 100%;
}

.mission_box > img{
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
	border-radius: 20px;
}

.mission_block{
	width: 65%;
	height: auto;
}

.mission_row h2, .mission_block_bottom h2 {
	width: 100%;
	height: auto;
	color: #d91724;
	font-weight: 700;
	text-align: left;
	padding-bottom: 30px;
	font-size: 25px;
}

.mission_contentbox{
	display: flex;
	flex-direction: column;
	gap: 30px;
	text-align: justify;
}

.mission_row_bottom > .mission_box{
	overflow: hidden;
	border-radius: 10px;
}

.mission_row_bottom > .mission_box > img{
	transform: scale(1.4);
}

/* onderste */
.mission_row_bottom{
	width: 100%;
	height: auto;
	display: flex;
	margin-top: 60px;
	gap: 30px;
}

.mission_block_bottom{
	width: 65%;
	height: auto;
	display: flex;
	flex-direction: column;
}

/* Queries */
@media screen and (max-width: 768px){
	.mission_row{
		flex-direction: column;
	}
	
	.mission_box{
		width: 100%;
	}
	
	.mission_block{
		width: 100%;
	}
	
	.mission_box > img{
		max-height: 300px;
		max-width: none;
		border-radius: 10px;
	}
	
	.mission_switch{
		flex-direction: column-reverse;
	}
	
	.mission_row_bottom{
		flex-direction: column;
	}
	
	.mission_block_bottom{
		width: 100%;
		text-align: justify;
	}
}

@media screen and (max-width: 500px){
	.mission_box > img{
		max-height: 200px;
	}
}