* {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f7;
}

.top-menu {
  background: #ffffff;
  width: 100%;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

.logo {
  color: #000;
  font-size: 22px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 1px;
}

.nav a {
  color: #3f3f3f;
  text-decoration: none;
  font-size: 18px;
  margin: 0px 7px;

  padding: 10px 15px;
  border-radius: 8px;

  transition: 0.4s;
}

.nav a:hover {
  background: #f5f5f7;
  color: #3f3f3f;
}

/* Кнопка */

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;

  position: relative;
}

/* Палочки */

.menu-toggle span {
  position: absolute;
  left: 5px;

  width: 30px;
  height: 3px;

  background: #000;
  border-radius: 5px;

  transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

/* Анимация в X */

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

.menu-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 17px;
}

/* Адаптив */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;

    position: absolute;
    top: 70px;
    left: 0;

    width: 100%;
    background: #ffffff;

    flex-direction: column;
    text-align: left;

    padding: 20px 0;
    gap: 10px;
  }

  .nav.active {
    display: flex;
  }

}