.main-nav{
    display: table;
    z-index: 1000;
    width: 100%;
    z-index: 100;
    
}
.nav-bar{
    width: 100%;
    background: #fff; 
    padding: 10px;
    color:#999;
    cursor: pointer;
    font-size: 16px;
    display: table;
    text-align: center;
}
.menu, .submenu{
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}
.menu{
    background: rgb(225,125,0,0.5);
    width: 100%;
    transition: all 1s;
    z-index: 1000;
    height: 0px;
}
.menu__link{
    display: table;
    color: white; 
    font-size: 1em;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none; 
    text-align: center;
}
.menu__link:hover{
}
.submenu{
    height: 0;
    overflow: hidden;
    transition: all 0.3s;

}
._color{
    font-weight: bold;
}
.submenu .menu__link{
    background: #0075C5;
    padding-left: 50px;
        text-align: left;
    width: 90%;

}
.submenu .menu__link:hover{
        background: #71C4EB;

}
.mostrar{
   height: auto;
}
@media(min-width:1024px){
    .nav-bar{
        display:none;
    }
    .menu{
        margin-left: 0;
        display: flex;
        background: #fff;
    }
    .menu__link{
        color:#0075C5;
        font-weight: bold;
        font-size: 
        
    }
    .submenu .menu__link:hover{
        color:#000;  

}

    .submenu .menu__link{
        color:#fff;
    }
    .container-submenu{
        position:relative;
        width: auto;
    }    
    .submenu{
        position: absolute;
        width: 400px;
        top:58px;
        overflow: visible;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }   
    .container-submenu:hover .submenu{
        opacity: 1;
        visibility: visible;
    }
    

    
}