.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bgDark);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid var(--borderDark);
}

.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__list {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.header__item {
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.header__item h4 {
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* .header__item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--colorAccent);
  transition: width 0.3s ease;
} */

@media (hover: hover) {
  .header__item:hover {
    color: var(--colorAccent);
    transform: translateY(-2px);
  }
  /* .header__item:hover::after {
    width: 100%;
  } */
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 15px 0;
  }

  .header__list {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 15px 0;
  }

  .header__content {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 720px) {
  .header {
    display: none;
  }
}
