.tilda-zoom-shape {
    position: relative;
    overflow: hidden;
}

.tilda-zoom-shape::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
}

.tilda-zoom-shape:hover::after {
    transform: scale(1.2);
}