// fade on banner image on home//
#block-570a4502b08ca80813cd img {
display: block;
-webkit-mask-image: linear-gradient(
to bottom,
rgba(0,0,0,0) 0%, /* fully transparent at very top */
rgba(0,0,0,1) 40%, /* fade in to fully visible */
rgba(0,0,0,1) 80%, /* stay visible through most of the middle */
rgba(0,0,0,0) 100% /* fade back out at the bottom */
);
-webkit-mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-image: linear-gradient(
to bottom,
rgba(0,0,0,0) 0%,
rgba(0,0,0,1) 10%,
rgba(0,0,0,1) 90%,
rgba(0,0,0,0) 100%
);
mask-repeat: no-repeat;
mask-size: 100% 100%;
}