.footer {
	width:100%;
	float:left;
	height:100vh;
	background-color:rgb(var(--whiteColor));
	color:rgb(var(--darkColor));
	position: relative;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	background-image:url('../../media/global/logoGrey.svg');
	background-size:auto 90vh;
	background-position:center center;
	background-repeat: no-repeat;
	line-height:1.5em;

	font-size:0.85em;
}

.footer h3 {
	margin-bottom:0.5em;
}

.footer a {
	color:rgb(var(--darkColor));
	text-decoration-thickness: 1px!important;
	text-underline-offset: 2px;
	text-decoration: underline;
	margin:0 0.75em;
}

.footer a:hover {
	color:rgb(var(--primaryColor));
}

.endOfPageLine {
	position: absolute;
	bottom:0;
	left:0;
	width:100vw;
	height:0.2em;
	background-color:rgb(var(--primaryColor));
}

.copyright {
	position:absolute;
	bottom:10em;
	left:15%;
	color:rgb(var(--blackColor));
}

.copyright a {
	color:rgb(var(--primaryColor));
	margin:0 0.5em;
	text-decoration: none;
}

.copyright a:hover {
	color:rgb(var(--darkColor));
	text-decoration: underline;
}

.smallerText {
	font-size: 0.7em;
}

.footerDisclaimer {
	position:absolute;
	bottom:10em;
	right:15%;
}

.footerDisclaimer a {
	color:rgb(var(--darkColor));
	margin:0 0.5em;
	text-decoration: none;
}

.footerDisclaimer a:hover {
	color:rgb(var(--primaryColor));
	text-decoration: underline;
}