.header_menu {
    width: 80px;
    height: 80px;
    float: right;
    clear: both;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    background-color: rgba(60, 39, 24, 0.7);
    z-index: 480;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    z-index: 490;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0px;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0px;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu_text {
    margin-top: 63px;
    margin-left: 20px;
    text-align: center;
    z-index: 500;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    position: fixed;
}

@media(max-width:372px){
    .menu-btn {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        height: 50px;
        width: 50px;
        justify-content: center;
        align-items: center;
        background-color: rgba(60, 39, 24, 0.7);
        z-index: 480;
    }
    .menu_text {
        margin-top: 42px;
        margin-left: 41px;
        text-align: center;
        z-index: 500;
        display: flex;
        color: #ffffff;
        justify-content: center;
        align-items: center;
        position: fixed;
        font-size: 10px;
    }
}