I have removed the code for the header-bg's zoom animation, but it is still active on my site and showing up in the console:
/*
@keyframes bg-zoom {
0% {
transform: scale(1);
-webkit-transform: scale(1);
}
100% {
transform: scale(1.3);
-webkit-transform: scale(1.3);
}
}
*/
.home-header-wrapper-bg {
content: "";
background: #fff url("...") center center no-repeat fixed;
background-size: cover;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: 0;
/*
animation: bg-zoom 30s infinite alternate ease-in-out;
-webkit-animation: bg-zoom 30s infinite alternate ease-in-out;
*/
}
I have also cleared my cache. Check out the demo: here