    /* on banner hover, change play button color */
    #index_hype_container #ctaPlay {
        transition: opacity .25s ease-out;
        opacity: 0 !important;
    }
    
    #index_hype_container:hover #ctaPlay {
        opacity: 1 !important;
    }

    /* on banner hover, change play button background color */
    #index_hype_container #ctaBackground {
        transition: background .25s ease-out;
        background: transparent !important;
    }

    #index_hype_container:hover #ctaBackground {
        background: #ffffff !important;
        background: rgba(255,255,255,.7) !important;
    }



    #ctaButton:hover #ctaBackground {
        background: #ffffff !important;
        background: rgba(255,255,255,1) !important;
    }
