nav{
    display: block;
   
}
.menu{
   
    display: flex;
    align-items: flex-start;
    position: relative;
    flex: 1;
    
}
.menu li{
    padding: 5px;
    margin-right: 7px;
}

.sub-menus{
background-color: rgb(236, 234, 234);
left: 0;
position: absolute;
width: 100%;
height: 250px;
transition: ease-in-out 0.9s;
z-index: 1;
border-bottom: 2px solid #ccc;
display: none;
margin-bottom: 3px;
box-shadow: 0px 3px 2px 0px purple;

}
.sub-menus-sin{
    display: block;
    display: none;
    position: absolute;
    z-index: 1;
    background-color: white;
    left: 0;
}
.sub-item:hover>.sub-menus{
    display: flex;
    
    width: 100%;
    position: absolute;
    padding: 5px;
}
.sub-item:hover>.sub-menus-sin{
    display: block;
    
    transition: all 0.9s;
}
.segundo-item{
    position: relative;
    padding: 5px;
   
}
.sociales{
    
    display:block;
    width: 100%;
    height: auto;
}
.scrolled{
    background-color:#ccc;
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    transition: ease-in-out 0.9s;
    height: 30px;
    align-items: center;
    display: flex;
    box-shadow: 0px 1px 6px 1px;
    
}

.logox{
    position: relative;
    display: block;
    height: 100%;
    width: 100px;
   
}
.logox img{
    width: 100px;
    height: 80px;
    position: absolute;
    top: 10px;
    display: none;
    margin: 10px;
    transition: flex ease-in-out 0.9s;
    transition-property:opacity;
    transform: scale(0);
    
   
}

.menu_scroll_x{
    
   
    width: 30%;
    overflow-y: scroll;
    box-shadow: 0px 1px 6px 1px;
    flex-direction: column;
  
    
}
.menu_scroll_x li{
    border-bottom: 1px solid #222222;
   margin: 1px;
    display: flex;
    padding: 0.5px;
    color: #222222;
    
}
.menu_scroll_x li a{
    font-size: 11px;
}

.contenido_menu{
    background: #f1f2f3;
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;
    
}

/* Estilos para las notas */
.nota {
    background-color: #f9f9f9;
    border: 1px solid #acacac;
    border-radius: 5px;
    padding: 10px;
    margin:10px;
    height: 200px;
    flex: 1;
    width: 150px;

}

/* Estilos para la paginaci贸n */
.pagination {
    margin-top: 20px;
}

.pagination button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
}

.pagination button:hover {
    background-color: #0056b3;
}
.nota a{
    font-size: 8px;
    color: #222222;
    text-align: center;
}

.imagen{
    width: 100%;
    height: 120px;
    background-color: red;
}
.imagen img{
    width: inherit;
    height: inherit;
    object-fit: cover;
    object-position: 20% 0%;
}
.load{
    width: 80px;
}