/*
Nur Änderungen kommen hier rein
*/

:root {
	--textColorH1: rgb(41, 72, 93);
	--linkColor: rgb(41, 72, 93);
	--textColorBold: rgb(41, 72, 93)
}

header > div {
	padding: 5%;
	padding-top: 0;
	padding-bottom: 0;
}

header {
	min-height: 107px
}

header a {
	top: 0;
	display: flex;
	justify-content: flex-start;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

header a img {
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: 33px;
	height: 90px;
}

#introduction {
	background-color: #fff;
	padding: 0;
}

main {
	padding: 5% 5% 0;
}

main > div {
	padding: 0;
}

main {
	display: grid;
	grid-template-columns: 1fr .5fr;
	grid-template-rows: 1fr;
	grid-column-gap: 5%;
	grid-row-gap: 0px;
}

#main {
	margin-bottom: 10px;
}

h2 {
	text-transform: uppercase;
}

li::marker {
	color: rgb(41, 72, 93);
}

#aside {
	padding-top: 0;
}

#auditWrapper {
	position: absolute; 
	right: 5%;
	bottom: 10px;
}

footer {
	background-color: rgb(0, 102, 153);
}

footer #spacer {
	height: 100px;
}

footer #end {
	background-color: rgb(41, 72, 93);
}

footer #apply {
	background-color: rgb(41, 72, 93);
}

@media screen and (max-width: 700px) {
	main {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
	
	#aside {
		padding-top: 3%;
	}
	
	footer #spacer {
		height: 120px;
	}
}

@media screen and (max-width: 480px) {
	header a img {
		height: 70px;
	}
}

@media screen and (max-width: 420px) {
	header a img {
		height: 50px;
	}
}