a {
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a:active {
  color: rgb(255,255,255);
}

.bg-dark {
  /*margin-bottom: 50px;*/
  background-image: linear-gradient(rgb(0,94,152), rgb(20,61,111));
}

.navbar-brand {
  background-position: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: auto;
  background-image: url("../../assets/img/logo.svg");
}

.nav-link {
  font-size: 18px;
  font-family: 'Roboto Slab';
}

.dropdown-item {
  font-size: 14px;
  font-family: 'Roboto Slab';
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.35);
  -webkit-transition: color 0.5s ease-out;
  -moz-transition: color 0.5s ease-out;
  -o-transition: color 0.5s ease-out;
  -ms-transition: color 0.5s ease-out;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgb(255,255,255);
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

