.head {
  height: 10vh;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--Bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* Logo & Text */
.Box-logo {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--Col);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--Ani);
  &:hover {
    color: var(--Kustom);
  }
}
.logo {
  height: 3rem;
  object-fit: cover;
}
.title {
  font-size: 1.5rem;
  font-weight: bold;
}
/* menu */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.menu-a {
  padding: 0.5em 0.7rem;
  text-decoration: none;
  color: var(--Col);
  position: relative;
  border-radius: 0.4rem;
}
.menu-a::after {
  content: '';
  height: 2px;
  width: 0%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--Kustom);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.menu-a:hover:after {
  width: 100%;
  left: 0;
}
.active {
  pointer-events: none;
  background-color: var(--Kustom);
}
.menu-btn,
.menuDrop-content {
  display: none;
}
@media only screen and (max-device-width: 430px) {
  .logo {
    height: 2rem;
  }
  .title {
    font-size: 1rem;
  }
  .menu-btn {
    display: flex;
    background: none;
    border: none;
  }
  .btn-icon {
    padding: 0.2rem;
    font-size: 1.5rem;
    color: var(--Col);
  }
  .menu-ul {
    display: none;
  }
  /* Dropdown */
  .menu {
    position: relative;
  }
  .menuDrop-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 3rem;
    z-index: 1;
    background: var(--Bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menuDrop-content.show {
    display: flex;
  }
}
