/*
File: animation.css
Site-wide animation styles
*/

/* DELAYED BLURB ENTRY */
#rf-body img {
    animation-fill-mode: both;
}

/* Progressive animation delays for column images - Desktop only */
@media only screen and (min-width: 980.02px) {
    #rf-body .et_pb_column:nth-child(2) img {
        animation-delay: 0.25s;
    }
    
    #rf-body .et_pb_column:nth-child(3) img {
        animation-delay: 0.5s;
    }
    
    #rf-body .et_pb_column:nth-child(4) img {
        animation-delay: 0.75s;
    }
    
    #rf-body .et_pb_column:nth-child(5) img {
        animation-delay: 1s;
    }
    
    #rf-body .et_pb_column:nth-child(6) img {
        animation-delay: 1.25s;
    }
}
