.ia-image { position: relative; border-radius: 20px; overflow: hidden; }
.ia-mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://www.market8.net/hubfs/2023/mask.jpg');     background-position: center;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all .4s ease-in;
  }

.reveal { animation: image_anim .6s ease 0s 1 normal forwards; }


@keyframes image_anim {
	0% {
		opacity: 1;
		transform: rotate(0) scale(1.1);
	}

	100% {
		opacity: 0;
		transform: rotate(-540deg) scale(0);
	}
}