*{
    margin: 0;
    padding: 0;
}
body{
    background: #011826;
    
}
header{
    width: 100%;
    background: #fff;
}
header nav{
    z-index: 5000;
    background: #eee;
}
header nav .menu{
    text-decoration: none;
    list-style: none;
    font-family: sans-serif;
    background: #011826;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
}
header nav .menu li{
    width: 100%;
    flex: auto;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.2);
    position: relative;
}
header nav .menu li:last-child{
    border-right: none;
}
header nav .menu li:hover{
    border-bottom: 2px solid white;
    background: #E6344A;
}
header nav .menu a{
    text-decoration: none;
    color: #fff;
    line-height: 3;
    display: block;
    width: 100%;
    font-size: 1em;
    font-weight: bold;
}
header nav .menu a span{
    margin-right: 10px;
}
header nav .menu a .ca{
    margin-left: 10px;
}
/* *********************************************
************* CSS PARA EL SUB MENU *************
************************************************/
header nav .menu li:hover .children{
    display: block;
    width: 100%;
}
header nav .menu li .children{
    display: none;
    position: absolute;
    background: #011826;
    list-style: none;
    text-decoration: none;
    z-index: 5000;
}
header nav .menu li .children li{
    text-align: left;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.5);
}
header nav .menu li .children li span{
    margin-left: 10px;
}
/* *********************************************
************* CSS PARA EL INFORMACION***********
************************************************/
header #toggle-menu{
    //display: none;
    z-index: 5000;
}
header #toggle-menu img{
    width: 150px;
    height: 50px;
}
header #toggle-menu span{
    display: none;
}
header #toggle-menu #informacion{
    float: right;
    font-size: 1.4em;
    font-family: "Comic Sans MS";
    padding-top: 10px;
        padding-right: 5px;
}
@media (min-width:768px) and (max-width: 1024px){
    header #toggle-menu #informacion{
        font-size: 1em;
    }
}
/* *********************************************
************* CSS PARA MEDIA<768 *************
************************************************/
@media screen and (max-width: 767px){
    body{
        padding-top: 50px;
    }
    /* *********************************************
    ************* CSS TOOGLE MENU<768 **************
    ************************************************/
    header #toggle-menu{
        display: block;
        width: 100%;
        position: fixed;
        top: 0;
        line-height: 2;
        padding-left: 1em;
        font-size: 1.2em;
        border-bottom: 2px solid #011826;
        background:  #E6344A;
        cursor: pointer;
    }
    header #toggle-menu span{
        display: flex;
        float: right;
        padding-top: 10px;
        font-size: 1.9em;
        padding-right: 5px;
        color: #fff;
    }
    /* *********************************************
    ************* CSS PARA EL NAV MENU *************
    ************************************************/
    header nav{
        overflow-y: scroll;
        height: calc(100% -50px);
        right: 100%;
        position: fixed;
        margin: 0;
        width: 95%;
        
    }
     header nav .menu{
        display: block;
        
    }
    header nav .menu li{
        display: block;
        text-align: left;
        border-bottom: 1px solid white;
    }
    header nav .menu li:last-child{
        border-bottom: none;
    }
    header nav .menu li a{
        display: block;
        margin-left: 10px;
    }
    header nav .menu li:hover .children{
        display: none;
    }
    header nav .menu li .children{
        width: 100%;
        position: relative;
    }
    header nav .menu li a .ca{
        float: right;
        padding-right: 10px;
        padding-top: 15px;
    }
    #informacion{
        display: none;
        background: #E6344A;
    }
}
.fondo-blanco{
    background: #fff;
}