.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: 2;
  }

  .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;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 58, 58, 1);
    flex-direction: column;
    overflow: auto;
    z-index: 2;
    padding-top: 55px;
    transition: all 0.3s ease 0s;
    margin-left: 0;
    justify-content: flex-start;
  }

  .header__menu.active {
    top: 0;
  }

  .header__social {
      padding-left: 0px;
      width: 138px;
      justify-content: space-between;
      margin-bottom: 30px;
  }

  .menu__item + .menu__item {
    margin-left: 0;
  }

  .header__social img {
      width: 54px;
      padding-left: 0px;
  }

  .header__social-link {
    margin-left: 0px;
  }

  .logoImg {
    display: block;
  }
  .menu__item {
    margin-bottom: 30px;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 24px;
  }
}
