.header__burger {
    display: none;
}

.logoImg {
  display: none;
  margin-left: 10px;
}

@media (max-width: 1365px) {
  body.lock {
    overflow: hidden;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 25px;
    height: 20px;
    z-index: 10060;
    cursor: pointer;
  }

  .header__burger span {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    height: 2px;
    transition: all 0.3s ease 0s;
    top: 9px;
  }

  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    width: 100%;
    height: 1.85px;
    left: 0;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active span {
    transform: scale(0);
  }

  .header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }

  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__menu {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    background-color: #0f172a;
    flex-direction: column;
    overflow: auto;
    z-index: 10050;
    padding: 95px 24px 32px;
    margin-left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    display: none;
  }

  .header__menu.active {
    display: flex;
  }

  body.menu-open .header__menu {
    display: flex;
  }

  .header__menu .menu__item,
  .header__menu .header__social {
    opacity: 1;
    visibility: visible;
  }

  .header__social {
      padding-left: 0px;
      width: auto;
      justify-content: space-between;
      margin-top: 20px;
      margin-bottom: 0;
      gap: 10px;
  }

  .menu__item + .menu__item {
    margin-left: 0;
  }

  .header__social img {
      width: 18px;
      height: 18px;
      padding-left: 0px;
      object-fit: contain;
  }

  .header__social-link {
    margin-left: 0px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: grid;
    place-items: center;
  }

  .logoImg {
    display: block;
    width: 190px;
    height: auto;
    margin: 0 0 26px 0;
  }
  .menu__item {
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
    width: 100%;
  }

  .menu__link {
    display: block;
    width: 100%;
    font-size: 22px;
    line-height: 1.25;
  }
}
