:root{
	--superBlue: #11396c;
	--superBlueAlpha: rgba(17, 57, 108, 0.65);
	--superRed: #c20707;
	--superGreen: #123a2d;
	--navHeightColl: 56px;
	--navHeightExp: 66px;
	--superGradient: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
}
.bg-dark.bgSuperBlueA{
	background-color: var(--superBlueAlpha)!important;
}
.bgSuperBlueA{
	background-color: var(--superBlueAlpha);
}
.bgSuperGradient{
	background: var(--superGradient);
}
.topBand{
	width: 100%;
	height:4px;
	position:absolute;
	top:0px;
	background-color: var(--superRed);
}
.navbar-brand {
	height: 50px;
}
.navbar-brand img {
	max-width: 72px;
	height: auto;
	transition: all .3s;
}
.navbar-brand img.smaller{
	height: 60px;
	width: auto;
	transition: all .3s;
}
button.navbar-toggler {
	border: none;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0;
}
li .nav-link {
	color: rgba(255,255,255,.80);
	font-family:ethnocentricitalic;
	font-size: 17px;
	border-bottom: 2px solid transparent;
	padding-top: 8px;
	padding-bottom: 3px;
	transition: all .3s;
}
li .nav-link:hover {
	color: rgba(255,255,255,.95);
	border-bottom: 2px solid var(--superRed);
}




/*
*
*
*
	LG & Up Styles
*
*
*
*/
@media (min-width: 992px) {
	.navbar-brand img {
		max-width: 100px;
	}
	li.nav-item {
		margin-right: 15px;
	}
	li.nav-item:last-of-type{
		margin-right: 0px;
	}
}