.menu__btn {
  width: 40px;
  display: none;
}

.menu__list {
  display: flex;
  justify-content: space-between;
}

.menu__item {
  margin-right: 30px;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__btn div {
  height: 5px;
  background-color: #a3a3a3;
  margin-bottom: 5px;
}

.header {
  background-color: #1c1c1c;
  padding: 10px 0px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
}

/* Nav */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.nav__link {
  padding: 3.5px;
  text-decoration: none;
  color: #d6d6d6;
  margin-right: 20px;
  transition: .1s linear;
}

.nav__link-active {
  background: #fff;
  color: #000;
}

.nav__link:nth-child(6) {
  margin: 0;
}

.nav__link:last-child {
  margin: 0;
}

.nav__link:hover {
  background: #d6d6d6;
  color: #000;
}
