.header__top {
  display: none;
  background-color: #cc0000;
  color: #fff;
}

.header__top-wrapper {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.header__top-left {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.burger {
  position: relative;
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
}

.burger>span,
.burger>span::before,
.burger>span::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.burger>span::before {
  content: "";
  top: -8px;
}

.burger>span::after {
  content: "";
  top: 8px;
}

.header__top-logo {
  display: block;
}

.header__top-logo-svg {
  width: 177px;
  height: 34px;
  fill: #fff;
}

.header__top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subscribe {
  padding: 3px 8px;
  margin-right: 5px;
  display: inline-block;
  background: #ffffff;
  border-radius: 2px;
  line-height: 1;
  color: #cc0000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  font-family: sans-serif;
}

.login {
  color: #fff;
}

.login__svg {
  width: 18px;
  height: 20px;
}

/* ----------------------------------HEADET MAIN---------------------------------- */
.header__logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__logo .back {
  fill: #e0081d;
}

.header__logo:not(.back) {
  fill: #fff;
}

.header__main {
  padding-left: 10px;
  background-color: #cc0000;
  color: #fff;
}

.header__logo {
  width: 205px;
  height: 105px;
}

.header__menu {}

.menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu__item {
  padding-right: 5px;
  padding-left: 5px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.6px;
  border-right: 1px solid #e65757;
  font-weight: 700;
  font-family: sans-serif;
}

.menu__link {}

.menu__link--first {
  color: #000;
}

/* ----------------------------- HEADER BOT ----------------------------- */
.header__bot {
  background-color: #f4f4f4;
  height: 45px;
  white-space: nowrap;
}

@media screen and (max-width: 893px) {
  .header__bot {
    overflow-x: scroll;
  }
}

.header__bot-nav {
  padding: 0 25px;
  text-align: center;
  font-style: italic;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1008px) {
  .header__bot-nav img {
    display: none;
  }

  .header__bot-nav {
    justify-content: stretch;
  }
}

.header__bot-link {
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 45px;
}

/* -------------------------------- MEDIA -------------------------------- */
@media (max-width: 720px) {
  .header__top {
    display: block;
  }

  .header__logo-wrapper {
    display: none;
  }

  .header__main {
    display: none;
  }
}

@media (max-width: 390px) {

  .header__top-left,
  .header__top-right {
    gap: 5px;
  }

  .header__top-logo-svg {
    width: 140px;
    height: 25px;
  }

  .subscribe {
    font-size: 10px;
  }
}