/*Navigation CSS*/
.navbar {
    -moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius:0;
	margin-bottom:0px;
	padding:10px 20px;
	background-color: #002E6B;
}
.navbar-default {

  	-moz-border:none;
	-webkit-border:none;
	border:none;
}
.navbar-default .navbar-brand {
	color:#35bcf1;
	display: none;
}
.navbar-default .navbar-brand span {
	font-size:24px;
}
.navbar-default .navbar-brand:hover {
	color:#35bcf1;
}

.navbar-nav a.nav-item.nav-link {
    color: #ffffff;
	line-height: 3rem;
	margin-right: 1rem;
	margin-left: 1rem;
	padding: 0;
}
a.nav-item.nav-link::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #4DC7EB;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a.nav-item.nav-link:hover:not(.btn, .no-transition)::before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.navbar-nav a.nav-item.nav-link:last-of-type {
	border: none;
}

.navbar-light .navbar-nav .nav-link.active {
	border-bottom:4px solid #4DC7EB;
}
.navbar-light .navbar-toggler {
    background-color: #FFEB3B;
}

@media (max-width: 991px) {
	.navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
		margin-top: 10px;
		text-align:left;
    }	
}
@media (max-width: 767px) {
	.navbar-toggler {
		margin-top: -50px;
	}
}