section.menu-button
{
  display: none;
  position: absolute;
  z-index: 1000;
  /* top: 40px; */
  right: 20px;
}

.menu-burger-line
{
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 50px;
  width: 50px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-burger-line span
{
  position: absolute;
  height: 5px;
  width: 32px;
  background-color: var(--color-six);

  border-radius: 4px;
  transition: .5s;
}
.menu-burger-line span:nth-child(2)
{
  left: 9px;
  width: 22px;
  transform: translateY(-13px);
}
.menu-burger-line span:nth-child(3)
{
  left: 9px;
  width: 15px;
  transform: translateY(13px);
}


/* .menu-burger-line.active span:nth-child(1)
{
  opacity: 0;
  transform: translateX(40px);
}
.menu-burger-line.active span:nth-child(2)
{
  width: 32px;
  transform: rotate(45deg);
  background-color: red;
}
.menu-burger-line.active span:nth-child(3)
{
  width: 32px;
  transform: rotate(-45deg);
  background-color: red;
} */


.menu-button.active .menu-burger-line span:nth-child(1)
{
  opacity: 0;
  transform: translateX(40px);
}
.menu-button.active .menu-burger-line span:nth-child(2)
{
  width: 32px;
  /* transform-origin: left; */
  transform: rotate(45deg);
  background-color: red;
}
.menu-button.active .menu-burger-line span:nth-child(3)
{
  width: 32px;
  transform: rotate(-45deg);
  background-color: red;
}




@media (max-width: 900px)
{
  section.menu-button
  {
    display: block;
  }

}