Adding parallax to new page template

I’ve successfully added widgets to my other page template, but it’s missing the parallax effect on some. I added this code into my functions.php (my other template is full-width.php). Is there another place to call in the js for parallax?

if ( is_page_template( 'full-width.php' ) ) {
        wp_enqueue_script( 'shapely-parallax', get_template_directory_uri() . '/js/parallax.min.js', array('jquery'), '20160115', true );
    }

The page I’m working on: https://techmedicrva.com/partners

Thanks