.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
}

.navbar-brand {
  color: var(--primary-color);
}

.nav-item {
  color: var(--primary-color);
}

.nav-link {
  margin-right: 12px;
}
.nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color);
  font-weight: 800;
  transform: 0.5 all;
}

.fw-bold {
  font-weight: 800 !important;
}
.nav-link:hover {
  color: var(--primary-color);
}

.dropdown-menu {
  border-radius: 4px;
  color: #000000a6;
}
.dropdown-item {
  margin-bottom: 12px;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding: 10px 30px;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.dropdown-item:focus {
  background-color: var(--primary-color);
  color: #fff;
}
