.img-hover-jump-animate:hover img {
    transform: translate(0, -10%);
}
.img-hover-jump-animate img{
    transition: all .3s ease-in-out;
}

.img-hover-scale-animate {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.img-hover-scale-animate::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}
.img-hover-scale-animate img{
    transition: all 1s ease-in-out;
}
.img-hover-scale-animate:hover img {
    transform: scale(1.1);
}
.img-hover-scale-animate:hover::after {
    background: rgba(0,0,0,0.2);
}



