.burger-icon {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: .5s ease-in-out;
  transform: rotate(0deg); }
  .burger-icon span {
    position: absolute;
    left: 2px;
    height: 2px;
    display: block;
    opacity: 1;
    transition: .25s ease-in-out;
    transform: rotate(0deg);
    transform-origin: center;
    border-radius: 1px;
    background: #fff; }
    @media (min-width: 1100px) {
      .burger-icon span {
        background: #333333; } }
    .burger-icon span:nth-child(1) {
      top: 5px;
      width: 20px; }
    .burger-icon span:nth-child(2) {
      top: 11px;
      width: 10px; }
    .burger-icon span:nth-child(3) {
      top: 17px;
      width: 16px; }
  .burger-icon.active span:nth-child(1) {
    top: 11px;
    width: 20px;
    transform: rotate(45deg); }
  .burger-icon.active span:nth-child(2) {
    opacity: 0; }
  .burger-icon.active span:nth-child(3) {
    top: 11px;
    width: 20px;
    transform: rotate(-45deg); }
