.burger {
  display: none
}
@media (max-width:1023px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-right: 32px
  }
  .burger span {
    height: 2px;
    background-color: #090000;
    transition: .25s;
    opacity: 1
  }
  .burger span:nth-child(1) {
    width: 25.6px;
    margin-bottom: 8px
  }
  .burger span:nth-child(2) {
    margin-bottom: 8px;
    width: 16px
  }
  .burger span:nth-child(3) {
    width: 20.8px
  }
  .burger_active span {
    opacity: .4
  }
  .burger_active span:nth-child(1) {
    transform: rotate(45deg);
    margin-bottom: 0;
    width: 25.6px
  }
  .burger_active span:nth-child(2) {
    transform: rotate(-45deg);
    margin-bottom: 0;
    margin-top: -2px;
    width: 25.6px
  }
  .burger_active span:nth-child(3) {
    display: none
  }
}
@media (max-width:375px) {
  .burger {
    margin-right: 0
  }
}