
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100;0,200;0,400;0,700;0,800;0,900;1,100;1,200;1,400;1,700;1,800;1,900&display=swap');

.navbar-dark {
  background-color: #03256c;
}
.navbar-brand {
  color: #ffd300!important;
}

/* stroke */

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  font-family:'Exo';
  font-weight:400;
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}



nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
nav.stroke ul li a:hover:after{
  width: 100%;
}