.gallery-block .gallery-item {
    display: flex;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
}
.gallery-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-block .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width:996px) {
    .gallery-block .gallery-item {
        width: calc(50% - 5px) !important;
    }
}