
#btn-menu-mobile{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    background-color: transparent;
    border: none;
    /* height: 40px; */
    font-size: 40px;
    color: #F05336;
}
/*#btn-menu-mobile hr{
    border: 3px solid #F05336;
    width: 40px;
    margin: 0;
    opacity: 1;
}*/
#btn-menu-mobile.hide{
    display: none;
}
#btn-close-menu-mobile{
    color: #F05336;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding: 5px;
    background-color: transparent;
    border: none;
    height: 50px;
    font-size: 40px;
    width: 40px;
    line-height: 1;
}
#btn-close-menu-mobile.hide{
    display: none;
}
#menu-mobile{
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: white;
    transform: translateX(-100%);
    transition: ease 1s;
    top: 88px;
}
#menu-mobile ul{
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    list-style: none;
    padding: 0 !important;  
    border-top: 1px solid #F05336
}
#menu-mobile.open{
    transform: translateX(0);
}
#menu-mobile li {
    width: 50%;
    border-right: 1px solid #F05336
}
@media (max-width: 700px) and (orientation: portrait){
    #menu-mobile li {
        width: 100%;
        border-right: 0;    
    }
}
#menu-mobile li a{
    border-bottom: 1px solid #F05336;
    width: 100%;
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: #F05336;
}
@media (min-width: 1200px){
    #btn-menu-mobile, #menu-mobile, #btn-close-menu-mobile{
        display: none !important;
    }
}
