@charset "utf-8";

:root {
	--main-width: 1285px;

	}

/* Global Colors
/* -----------------------------------------------*/
/* Dark Grey */
.c2 {
	color: var(--c2);
}
.shadow {
	filter: drop-shadow(2px 4px 7px #727269);
}
/* html / body */
/* -----------------------------------------------*/
*{
	margin: 0;
	padding: 0;
}
*:focus {
    outline: none;
}
html {
	height: 100%;
}
body{
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #e4e2e2;
	font-size: 14px;
	font-family: 'inter';
}
a {
	color: #172c50;
	outline: none;
	text-decoration: none;
}
a:hover	{
	color: #4699d3;
}
#container {
	width: 100%;
	margin-top: 180px;
	flex-grow: 1;
}
#footer	{
	width: 100%;
	height: 80px;
	margin-top: auto;
	padding: 0px 0 10px 0;
	background-image: linear-gradient(#e4e2e2, #9f9898);
	/*border-top: 1px solid #858585;*/
	font-size: 16px;
	letter-spacing: 2px;
	flex-shrink: 0;
}
#footer .copyright {
	width: 400px;
	margin: 35px 30px 0;
	color: #6d6c6c;
	text-align: right;
	float: right;
}
#splash-info {
	width: 100%;
	height: 400px;
}
#splash-info .logo {
	width: 550px;
	margin: 0 auto;
	padding: 20px 0 20px 0;
	text-align: center;
}
#splash-info .info {
	width: 550px;
	margin: 0 auto;
	padding-top: 20px;
	color: #5d5d5d;
	font-size: 18px;
	text-align: center;
}
.coming-soon {
	color: #959595;
	font-size: 32px;
	margin-bottom: 15px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 4px;
}