.menu_page{
    position: relative;
}
.menu_page_list{
    position: absolute;
    z-index: 1;
    width: 160px;
    background-color: rgb(231, 231, 231);
    list-style: none;
    padding: 0px;
    height: 0;
    transition: all .5s ease;
    overflow: hidden;
    margin-top: 1px;
    .menu_page_item{
        a{
            transition: all .5s ease;
            text-transform: uppercase;
            color: #000;
            font-size: 14px;
            font-weight: 700;
            &:hover{
                color: #00bd56;
            }
        }
    }
}