@media print, screen and (max-width: 999px) {
  .head_menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 60px;
    left: 0;
    width: 100%;
    margin-top: -600px;
    background: #c1c1c1;
    z-index: 1;
    transition-duration: 0.5s;
    overflow: scroll;
  }
  #menu_toggle {
    opacity: 0;
  }
  #menu_toggle:checked ~ .menu_btn > span {
    transform: rotate(45deg);
  }
  #menu_toggle:checked ~ .menu_btn > span::before {
    top: 0;
    transform: rotate(0);
  }
  #menu_toggle:checked ~ .menu_btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu_toggle:checked ~ .head_menu {
    visibility: visible;
    left: 0;
    margin: 0;
  }
  .menu_btn {
    transition-duration: 0.25s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 2px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
  }
  .menu_btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #323232;
  }
  .menu_btn span::before {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #323232;
    content: "";
    top: -8px;
    transition-duration: 0.25s;
  }
  .menu_btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #323232;
    content: "";
    top: 8px;
    transition-duration: 0.25s;
  }
  .head_menu_bottom {
    height: 300px;
  }
}/*# sourceMappingURL=hamburger.css.map */