$(document).on("click", ".hero-block-player-button", function() {
$('#player-video .elementor-custom-embed-image-overlay').click()
})
+
+ const homeBanner = $("#home-banner");
+ if(homeBanner.length > 0) {
+ const bottomHomeBanner = homeBanner.get(0).getBoundingClientRect().bottom
+
+ $(window).on("scroll", function (e) {
+ if ($(window).scrollTop() + 150 > bottomHomeBanner) {
+ $('header.site .inner').css({
+ "background": "#fff",
+ "color": "#1c1c1c"
+ })
+ } else {
+ $('header.site .inner').css({
+ "background": "transparent",
+ "color": "#fff"
+ })
+ }
+ })
+ }
})(jQuery)
</script>