@charset "utf-8";
/* Navigation */

#navigation {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
}
.nav {
    border-bottom: 2px solid #02275E !important;
    text-transform: uppercase;
}
ul.nav > li > a {
    height: 3rem;
    width: auto;
    padding: 0.8rem;
    border-radius: 0 !important;
    border: none !important;
    text-decoration: none;
    /*color: #0074AD;*/
    color: #02275E;
    font-weight: 900;
}
ul.nav > li > a:hover {
    background: #02275E;
    color: #ffffff;
    -webkit-animation: pulse-nav 3s infinite;
	animation: pulse-nav 3s infinite;
}
ul.nav > li.active > a {
  color: #ffffff;
  background: #02275E;
}
ul.nav > li.active > a:hover {
  color: #ffffff;
  background: #0074AD;
}
ul.nav > li > a > text {
    bottom: 0;
}
ul.nav > li.dark-data {
    min-width: 15rem !important;
}
