.menu.active {
  right: 0;
}

@media (max-width: 1024px) {
  .hamburguer {
    display: block;
    margin-top: 12px;
    float: right;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    cursor: pointer;
  }
  .hamburguer span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin-bottom: 8px;
    margin-top: 8px;
  }
  .hamburguer span:last-child {
    background: #f5a623;
  }
  .menu {
    position: fixed;
    right: -300px;
    height: 100%;
    background: black;
    top: 0;
    width: unset !important;
    padding-top: 20px;
  }
  .menu a {
    display: block;
  }
  .menu .right, .menu .left {
    display: block !important;
    float: unset !important;
  }
}