/* Styles for All devices screens */
body{
	font-family: "proxima-nova-regular", Arial, "Times New Roman", sans-serif, Serif;
}
header{
	min-height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--indigo-color);
}
header > nav{
	min-height: 50px;
	border: 1px solid #005cbf;
	display: flex;
	flex-direction: row;
	background-color: var(--white-color);
	font-family: proxima-nova-bold, Arial, "Times New Roman", sans-serif, Serif;
	font-size: 16pt;
}
header > nav > div{
	border: 1px solid #59D8D1;
	width: 33.333%;
	text-align: center;
	height: 50px;
	line-height: 50px;
}
header > nav > div > a {
	display: inline-block;
	vertical-align: middle;
	color: inherit;
}
main{
	background-color: var(--off-white-color, #F1F5F8);
}

/* Styles for small devices screens */
@media (min-width: 576px) {}

/* Styles for medium devices screens */
@media (min-width: 768px) {}

/* Styles for large devices screens */
@media (min-width: 992px) {}

/* Styles for extra-large devices screens */
@media (min-width: 1200px) {}
