header img {
  width: 30px;
}



header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 .2px 10px rgb(171, 255, 171);
  padding: .7rem .5rem;
  background: var(--bg-primary);
  color: var(--text-secondary);
}

header nav,
header .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

header .logo {
  display: flex;
  align-items: center;
  font-size: var(--font-xxl);
  font-weight: var(--font-weight);
  color: var(--text-primary);
}

header li a {
  font-size: var(--font-x);
}


header .buttons .btn {
  border: 2px solid var(--text-primary);
  padding: .5rem 1rem;
  border-radius: var(--border-radius);
}

.buttons .login {
  background: var(--text-primary);
}

header .buttons .mart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

header .buttons .mart img {
  width: 1rem;
}

.menu-icon {
  display: none;
}

header .menu {
  position: fixed;
  height: 100vh;
  width: 250px;
  top: 0;
  right: -250px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: .5rem 2rem;
  transition: all .3s ease-in-out;
  z-index: 20;
}

.menu .nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu .btn-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

header .menu .in-btn {
  width: 10rem;
  text-align: center;
  border: 2px solid var(--text-primary);
  padding: .5rem 1rem;
  border-radius: var(--border-radius);
}

.menu .login {
  background: var(--text-primary);
}

header .menu .mart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

header .menu.active {
  right: 0;
}

@media screen and (max-width: 975px) {

  header .btn,
  nav li {
    display: none !important;
  }


  .menu-icon {
    display: initial;
  }
}