.hamburger-container {
  align-items: center;
  display: none;
  height: 50px;
  aspect-ratio: 1/1;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  background: transparent;
  border-radius: 5px;
}
.hamburger-container > svg {
  color: black;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ham > path {
  pointer-events: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: white;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham7.active .bottom {
  stroke-dashoffset: -83px;
}

@media screen and (max-width: 640px) {
  .hamburger-container {
    display: flex;
  }
    
}