.impressum{
	width: 100%;
	min-height: calc( 100vh - 119px );
	background-color: var(--color-white);
}

.impressum *{
	color: var(--color-blue-dark);
}

.impressum h2{
	font-weight: 500;
}

.impressum .boxes{
	display: flex;
	width: 100%;
}

@media screen and (max-width: 1000px){
	.impressum .boxes{
		display: block;
		width: 100%;
	}
}

.impressum .boxes .box{
	display: table;
	width: calc( ( 100% - ( 2 * 10px ) ) / 3 );
	background-color: #F2F2F2;
	float: left;
	margin-right: 10px;
	border-radius: 10px;
}

@media screen and (max-width: 1000px){
	.impressum .boxes .box{
		display: table;
		width: 100%;
		max-width: 400px;
		background-color: #F2F2F2;
		float: none;
		margin-right: auto;
		border-radius: 10px;
		margin-bottom: 20px;
		margin-left: auto;
	}
}

.impressum .boxes .box:last-child{
	margin-right: 0px;
}

@media screen and (max-width: 1000px){
	.impressum .boxes .box:last-child{
		margin-right: auto;
		margin-bottom: 0px;
	}
}

.impressum .boxes .box .wrapper{
	padding: 20px;
}

.impressum .boxes .box .wrapper h3{
	margin: 0px;
	font-weight: 500;
	text-align: center;
}

.impressum .boxes .box .wrapper p{
	margin: 0px;
	font-size: 0.8em;
	text-align: justify;
	margin-top: 20px;
}

.impressum .boxes .box .wrapper a{
	margin: 0px;
	font-size: 1em;
	text-align: justify;
	margin-top: 20px;
}