.header ul {
  margin: 0;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999999;
}

.header__inner {
  display: flex;
  flex-direction: column;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 0 20px;
}

.header__list ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.header__link-scroll {
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 48px;
  color: #fff;
  transition: all .3s;
}

.header__link-scroll:hover {
  opacity: 1;
  color: #fff
}

.header__search a img {
  opacity: 0.6;
}

.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #23283c;
}

.header__logo {
  max-width: 170px;
  width: 100%;
  padding: 25px 20px;
  position: relative;
  z-index: 1;
}

.header__logo::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: all .3s;
  z-index: -1;
}

.header__bottom._active .header__logo::before {
  width: 100%;
}

.logo-w {
  display: block;
}

.logo-b {
  display: none;
}

.header__bottom._active .logo-w {
  display: none;
}

.header__bottom._active .logo-b {
  display: block;
}


.header__logo a img {
  width: 100%;
  object-fit: contain;
}

.header__center {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.header__ul ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__link {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  transition: all .3s;
}

.header__link:hover {
  opacity: 0.6;
  color: #fff;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 15px;
  border-left: 1px solid #fff;
  height: 100%;
}

.header__burger span {
  width: 20px;
  height: 1px;
  background-color: #fff;
}

@media(max-width: 800px) {
  .header__bg {
    height: 70px;
  }

  .header__top {
    display: none;
  }

  .header__center {
    display: none;
  }
}