

.navbar {
  border-bottom: 1px solid #BBBBBB;
}

.nav-nav {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #031D44;
  padding: 20px 0px;
  margin: 0px 20px;
  display: inline-block;
  position: relative;
  opacity: 0.75;
}

.nav-nav:hover {
  opacity: 1;
}

.nav-nav::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #031D44;
}

.nav-nav-ltr::before {
  width: 0%;
  bottom: 10px;
}

.nav-nav-ltr:hover::before {
  width: 100%;
}

.nav-nav-fade-up::before {
  width: 100%;
  bottom: 5px;
  opacity: 0;
}

.nav-nav-fade-up:hover::before {
  bottom: 10px;
  opacity: 1;
}

.nav-nav-grow-up::before {
  height: 0%;
  width: 100%;
  bottom: 0px;
}

.nav-nav-grow-up:hover::before {
  height: 5px;
}
/*Media CSS*/

/*@media screen and (max-width: 992px) {
  body {
    background-color: blue;
    color: white;
  }
}*/

/* On screens that are 600px wide or less, the background color is olive */
/*@media screen and (max-width: 600px) {
  body {
    background-color: olive;
    color: white;
  }
}*/