.nav-link {
  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-link:hover {
  opacity: 1;
}

.nav-link::before {
  transition: 300ms;
  height: 5px;
  content: "";
  position: absolute;
  background-color: #031d44;
}

.nav-link-grow-up::before {
  height: 0%;
  width: 100%;
  bottom: 0px;
  margin-left: -7px;
}

.nav-link-grow-up:hover::before {
  height: 5px;
}

.nav-link.active::before {
  height: 5px;
}

.nav-link.active:hover::before {
  height: 5px;
}

@media only screen and (max-width: 991px) {
  .nav-link-grow-up::before {
    margin-left: 0px;
  }
}

a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
