.navbar-nav li {
	padding: 0px 10px 0px 10px;
}

.navbar-nav li a {
  position: relative;
  color: #757575;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.navbar-nav li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #aa0108;
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav li a:hover {
  color: #aa0108;
}

.navbar-nav li a:hover::after {
  width: 100%;
  left: 0;
}

.nav-active{
  color: #aa0108 !important;
  box-shadow: inset 0 -2.5px 0 0 #aa0108;
  transition: box-shadow 0.3s ease;
}
