.soft-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soft-zoom:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 786px) {
    .zpsection-video {
        display: inherit !important;
    }
}

.img-hover{
    transition: all 0.3s ease-in;
	transform-style: preserve-3d;
}
.img-hover:hover {
	transform: scale3d(1.05, 1.05, 1.05);
}