Site URL: https://www.52launch.com/our-work-2
I am trying to get the zoom on hover working properly in the gallery section on this page (first 2 images). I can get it to zoom, but I want the sides to be hidden and using "overflow: hidden" is not working. I have it working perfectly underneath on plain image blocks, but I cannot get it to work properly with a gallery section. If anyone has any ideas how to fix this, thank you!!
Here is the code I have for it so far:
section[data-section-id="66f41ba1b526f6338e68ff24"] {
.gallery-grid-item img {
transform: scale(1);
transition: 400ms;
overflow:hidden !important;
}
.gallery-grid-item:hover img {
transform: scale(1.1);
transition: 400ms;
overflow: hidden !important;
}}