/* @group Example
------------------------------------ */



.image-grow {
    position: relative;
}

.image-grow .img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    overflow: hidden;
    z-index: 1;
}

.image-grow .bp-multimedia {
    width: 100%;
    height: 100%;
}

.storyline-grid.animating {
    max-height: none !important;
    height: 100% !important;
}



@media only screen and (min-width : 961px) {

    .image-grow {
        height: var(--image-grow-height, calc(100svh - var(--navHeight, 0px)));
    }

    .image-grow .img-wrapper {
        width: 56.6rem;
        height: 35.3rem;
    }

    .image-grow .img-wrapper {
        will-change: width, height;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}


@media only screen and (min-width : 0) and (max-width : 960px) {
    .image-grow {
        height: 25rem;
    }

    .image-grow .img-wrapper {
        height: 100%;
        width: 100%;
    }
}

/* @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;
}