.custom-navbar {
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar-brand img {
    width: 170px;
    height: 80px;
    object-fit: fill;
    display: block;
}

@media (max-width: 991px) {
    .navbar-brand img {
        height: 45px;
    }
}

.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: var(--text);
  margin-left: 25px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--silver);
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--silver);
}