.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 103px;
  height: 55px;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 44px;
  color: var(--secondary-color);
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  color: var(--text-color);
  text-decoration: none;
  text-underline-offset: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var( --primary-color);
  text-decoration: underline;
}

.user-menu {
  display: flex;
  gap: 34px;
}

.user-menu-item {
  width: 36px;
  height: 36px;
}

.user-menu-item::before {
  content: none;
}

.user-menu-item svg {
  color: black;
  transition: color 0.3s ease;
}

.user-menu-item:hover svg {
  color: var( --primary-color);
}