header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 1rem;
  z-index: 2;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 64px;
    width: 100%;
    background: #00000081;
    z-index: -1;
  }
}
header .logo {
  width: 176px;
  height: 77px;
}

@media (min-width: 1920px) {
  header {
    width: 1920px;
  }
}
