.navbar-toggle {
  position: relative;
  width: 100%;
  height: 95px;
  padding: 0 30px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  box-shadow: 0 0 4px 0 rgba(var(--bs-secondary-rgb), 0.3);
}

.navbar-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(var(--bs-secondary-rgb), 0.7);
}

.navbar-toggle .logo {
  height: 70px;
  margin: auto 0;
}

.burger {
  width: 32px;
  height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--bs-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 576px) {
  .navbar-toggle {
    height: 87px;
  }
  .navbar-toggle .logo {
    height: 60px;
  }
}