/* ==================================================
   NX HEADING REVEAL
================================================== */

.nx-heading-reveal{
    overflow:visible !important;
}

.nx-heading-reveal .nx-word{
    display:inline-block !important;
    white-space:nowrap !important;
}

.nx-heading-reveal .nx-char{
    display:inline-block !important;

    opacity:0;

    transform:translate3d(0,1.25rem,0);

    filter:blur(.35rem);

    will-change:
        transform,
        opacity,
        filter;
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion:reduce){

    .nx-heading-reveal .nx-char{
        opacity:1 !important;
        transform:none !important;
        filter:none !important;
    }

}