.link-header{
    color: white;
}
.link-header:hover{
    color: silver;
    text-decoration: none;
}
.link-headerProfile{
    color: white;
}
.link-headerProfile:hover{
    color: silver;
    text-decoration: none;
}
.rowMenu{
    display: flex;
    justify-content: flex-end;
}
.rowMenu div{
    margin-top: auto;
    margin-bottom: auto;
}
.img-carousel{
    height: 600px;
}
.row-closeSession{
    margin-top: 12%;
}
.notification{
    position: absolute;
    right: 10px;
    top: 12%;
    width: 300px;
}
.bloque{
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #0D6EFD;
    color: white;
    border-radius: 10px;
    padding: 15px;
    animation-duration: 3s;
    animation-name: slidein;
    animation-iteration-count: 1;
    animation-direction: alternate;
    z-index: 10;
}
.hidden{
    display: none;
}
.MenuLateralItem{
    color: black;
    text-decoration: none;
    font-size: 13px;
    margin-left: 4%;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.collage-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Asegura que las imágenes cubran el área */
}
.collage-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: center;
}
.extraLarge {
    height: 450px;
}
.large {
    height: 300px;
}
.medium {
    height: 300px;
}
.small {
    height: 200px;
}

@keyframes slidein {
    from {
        width: 0%;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@media screen and (max-width:1000px) {
    .link-header{
        font-size: 26px
    }
    .rowMenu{
        margin-bottom: 2%;
    }
    .img-carousel{
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 550px;
    }
    .row-closeSession{
        margin-top: 0;
    }
    .imgLogo{
        width: 100%;
    }
}