/* @group Content aside spaced
------------------------------------ */
.content-aside-floating-inverted {
    position: relative;
}
.content-aside-floating-inverted .first-column .bp-multimedia {
    height: 33.1rem;
}
.content-aside-floating-inverted .last-column .bp-multimedia {
    height: 35rem;
}
.content-aside-floating-inverted h4 {
    --fw: 500;
}
@media only screen 
and (min-width : 961px) {
    .content-aside-floating-inverted .first-column {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }
    .content-aside-floating-inverted .first-column .bp-multimedia {
        height: 33.1rem;
        max-width: 28.6rem;
    }
    .content-aside-floating-inverted .last-column .bp-multimedia {
        height: 64rem;
    }
}
@media only screen 
and (min-width : 0) 
and (max-width : 960px) {
    .content-aside-floating-inverted .first-column {
        margin: 0 0 8rem;
    }
}
/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
    opacity: 0;
    --duration: 1s;
}

:where(#wrapper) .contenedor.animateActive .elemento {
    animation: fade var(--duration) forwards;
    animation-delay: var(--delay, 0);
}

:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}