/* @group reusable-full-video
------------------------------------ */
.reusable-full-video {
    position: relative;
}
.reusable-full-video :is(.video-box, .img-box) {
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
    background-blend-mode: soft-light;
    box-shadow: 0px 14px 36px 0px rgba(151, 71, 255, 0.25);
    height: 26.2rem;
}
/* FULL */
.reusable-full-video--full .row {
    max-width: 100% !important;
}
.reusable-full-video--full :is(.video-box, .img-box) {
    height: 36.26vh;
}
@media only screen 
and (min-width : 961px) {
    .reusable-full-video .row {
        max-width: 138rem;
    }
    .reusable-full-video :is(.video-box, .img-box) {
        height: 71.6vh;
        padding: 0;
    }
    /* FULL */
    .reusable-full-video--full .row {
        max-width: 100%!important;
    }
    .reusable-full-video--full :is(.video-box, .img-box) {
        height: max(71.6vh, 80rem);
    }
}
@media only screen 
and (min-width : 961px) 
and (max-width : 1440px) {

}
@media only screen 
and (min-width : 0) 
and (max-width : 960px) {

    .reusable-full-video :is(.video-box, .img-box) {
        padding: 0;
        max-width: calc(100% - 3.4rem);
        margin-left: 1.7rem;
    }
    .reusable-full-video--full :is(.video-box, .img-box) {
        margin: 0;
        max-width: 100%;
    }

}
/* @end */

/* @group page modifiers
------------------------------------ */

@media only screen
and (min-width : 961px) {
    .home .reusable-video {
        margin-top: 36rem;
        margin-bottom: 15rem;
    }
}

@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .home .reusable-video {
        margin-block: 16rem;
    }
}

/* @end */


.reusable-full-video :is(.video-box, .img-box) {
    opacity: 0;
}
:is(.reusable-full-video.animateActive, .pin-spacer) :is(.video-box, .img-box) {
    animation: fade var(--anim-duration) forwards;
    animation-delay: calc(var(--anim-delay) * var(--_delay));
}
:is(.reusable-full-video.animateActive, .pin-spacer) :is(.video-box, .img-box) {
    --_delay: 1;
}
