.navbar {
  width: 100%;
  padding: 12px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #ffffff;

  position: fixed;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.logo {
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar nav {
  display: flex;
  gap: 35px;
}

.navbar nav a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
  position: relative;
}

.navbar nav a:hover {
  color: #E31B23;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #E31B23;
  transition: .3s;
}

.navbar nav a:hover::after {
  width: 100%;
}

.navbar {
  width: 100%;
  padding: 12px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #ffffff;

  position: fixed;
  top: 0;
  z-index: 1000;

  box-shadow:
    0 2px 20px rgba(0,0,0,.08),
    0 0 12px rgba(0,87,184,.25);

  border-bottom: 2px solid #0057B8;
}

.navbar {
  border-bottom: 2px solid #0057B8;

  box-shadow:
    0 0 5px #0057B8,
    0 0 10px rgba(0,87,184,.5),
    0 0 20px rgba(0,87,184,.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #0057B8;
}

@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
    display: flex;
    flex-wrap: wrap;
  }

  .logo img {
    height: 45px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .navbar nav.active {
    display: flex;
  }


}

