

.menu{
    position: fixed; /* fijo en toda la pagina */
    /* z-index: 10; */
    top: 30px;
    left: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer; /* para que se ponga la manita */
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.menu-navegacion{
    position: fixed;
    top: 0;
    left: 0; /* Menu fijado a la derecha */
    width: 18vw;
    height: 100%;
    background-color: #1c152c; 
    background: #fff;
    display: flex;
    flex-direction: column; /* Letras en columna */
    /* justify-content: space-evenly; */
    align-items: left;
    transition: transform .3s initial;
    transform: translate(1110%);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.5);
    z-index: 13;
}

.spread{
    transform: translate(0);
}

.menu-navegacion a{
    color: #000;
    text-decoration: none;
    padding-left: 15px;
    padding-top: 6px;
    padding-bottom : 6px;
}
.menu-navegacion a:hover{
    background-color: #1779ba;
    color: #fff !important;
    padding-top: 6px;
    padding-bottom : 6px;
}
.is-active{
    background-color: #1779ba;
    padding-top: 6px;
    padding-bottom : 6px;
    color: #fff !important;
}

.imgmenu{
    max-width: 80%;
    height: 100px;
    
}

.header{
    background-color: #fff;
    max-height: 100px;
}

.titulo{
    margin-top: 9%;
    /*text-align: center;*/
   /*  display: flex; */
    align-items: center;
    justify-content: center;
}

.icono{
    position: sticky;
    top: 30px;
    left: 30px;
    cursor: pointer; 
    font-size: 40px;
   
}
.icono:hover {
    color: #1779ba;
   
}
.icono-color {
    color: #1779ba;
   
}

.menu-navegacion-dropdown{
    position: fixed;
    top: 0;
    left: 0; /* Menu fijado a la derecha */
    width: 20vw;
    height: 55%;
    margin-top: 80px;
    background: #fff;
    display: flex;
    flex-direction: column; /* Letras en columna */
    justify-content: space-evenly;
    align-items: left;
    transition: transform .3s initial;
    transform: translate(1100%);
    box-shadow: 0 0 0 2px rgb(0, 0, 0);
    z-index: 13;
}
.spread2 {
    transform: translate(380%);
}
.spread3 {
    transform: translate(440%);
    height: 17%;
    width: 18vw;

}


.menu-navegacion-dropdown a, b{
    color: #000;
    text-decoration: none;
    padding-left: 15px;
    padding-top: 6px;
    padding-bottom : 6px;
}

.menu-navegacion-dropdown a:hover{
    background-color: #1779ba;
    color: #fff !important;
    padding-top: 6px;
    padding-bottom : 6px;
}

