.navbar {
    background-color: rgba(5,1,49);
    transition: background-color 0.5s ease;
}

.dropdown-item {
  font-size: 17px !important;
}

.dropdown-item:hover {
  background-color: rgba(5, 1, 49, 0.8) !important;
  color: #fff !important;
}

.dropdown-item:active {
  background-color: rgba(5, 1, 49) !important;
  color: #fff !important;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
      animation: fadeDropdown 0.15s ease-in-out;
    }
  }
  
@keyframes fadeDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-width: 250px;
    height: auto;
  }
}