/* Start custom CSS */.image-wrap {
    width: 400px;
    height: 300px;
    overflow: hidden;
}
.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 1s ease-in-out;
}
.image-wrap:hover img {
    object-position: bottom center;
}/* End custom CSS */