@charset "UTF-8";

/* CSS Document */

@media screen and (min-width: 769px) {
    #hum {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #hum,
    #hum span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
    }
    #hum {
        position: fixed;
        width: 56px;
        height: 55px;
        cursor: pointer;
        right: 0;
        top: 0;
        z-index: 5;
        background: #000;
    }
    #hum span {
        position: absolute;
        width: 35%;
        left: 32.5%;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transition-timing-function: ease-in-out;
    }
    #hum span:nth-of-type(1) {
        top: 32%;
    }
    #hum span:nth-of-type(2) {
        top: 47%;
    }
    #hum span:nth-of-type(3) {
        top: 62%;
    }
    #hum.open span:nth-of-type(1) {
        width: 50%;
        left: 25%;
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }
    #hum.open span:nth-of-type(2) {
        opacity: 0;
    }
    #hum.open span:nth-of-type(3) {
        width: 50%;
        left: 25%;
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
}
