.header {
  position: relative;
  padding: 100px 0 200px;
  color: #fff;
}

.header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.header__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__logo img {
  max-width: 200px;
}

.header__bear {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  transform: translateY(80px);
}

.header__bear img {
  height: 589px;
  width: auto;
  display: block;
}

.header__right {
  display: flex;
  flex-direction: column;
}

.header__menu {
  width: 100%;
}

.header__menu-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.header__menu-list a {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}

.header__menu-list a:hover {
  text-decoration: underline;
}

.header__menu-list a.disabled,
.header__menu-list a.disabled:hover {
  cursor: initial;
  text-decoration: initial;
}

.header__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 24px 0;
}

.header__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 78px;
}

.header__apps,
.header__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__links-text {
  font-size: 14px;
  color: #ffff;
}

.header__links-img {
  height: 40px;
  width: auto;
}

.header__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.header__title.header__title--tiny {
  font-weight: 300;
}

.header__date {
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
}

.header__bear-mobile {
  display: none;
}

.header__top-row {
  display: none;
}

.header__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -350px;
  width: 100%;
  z-index: 1;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1740px) {
  .header__bear {
    transform: translate(-100px, 80px);
  }

  .header__overlay {
    bottom: -330px;
  }
}

@media (max-width: 1600px) {

  .header__overlay {
    bottom: -300px;
  }
}

@media (max-width: 1500px) {
  .header__bear {
    transform: translate(-150px, 80px);
  }

  .header__overlay {
    bottom: -280px;
  }
}

@media (max-width: 1480px) {
  .header__overlay {
    bottom: -260px;
  }
}

@media (max-width: 1361px) {
  .header__bear {
    transform: translate(-280px, 80px);
  }

  .header__overlay {
    bottom: -230px;
  }
}

@media (max-width: 1128px) {
  .header__overlay {
    bottom: -200px;
  }
}

@media (max-width: 992px) {
  .header {
    padding: 30px 0 60px;
  }

  .header__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header__left {
    display: none;
  }

  .header__right {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .header__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    order: 0;
  }

  .header__logo-mobile img {
    max-width: 56px;
  }

  .header__hamburger {
    display: flex;
    position: static;
  }

  .header__menu {
    display: none;
    order: 2;
  }

  .header__divider {
    display: block;
    margin: 0;
    order: 1;
  }

  .header__apps,
  .header__socials {
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .header__links {
    display: none;
    order: 3;
  }

  .header__menu.open {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }

  .header__links.open {
    display: block;
    margin-top: 180px;
  }

  .header__left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header__bear {
    display: none;
  }

  .header__overlay {
    display: none;
  }

  .header__menu-list {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }

  .header__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header__links-text {
    width: 100%;
  }

  .header__title {
    margin-top: 32px;
    font-size: 24px;
    order: 4;
  }

  .header__date {
    font-size: 16px;
    order: 5;
  }

  .header__bear-mobile {
    display: block;
    margin-top: 20px;
    order: 6;
  }

  .header__bear-mobile img {
    width: 60%;
    margin: 0 auto 0 -16px;
  }
}