.image1-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image1-container img {
    width: 100%;
    object-fit: cover;
}
.zoom-img .zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.zoom-img img {
    width: 100%;
    transition: transform 0.35s ease;
    cursor: zoom-in;
}


@media (max-width: 990px) {
    .image1-container img.desktop {
        display: none;
    }

    .image1-container img.mobile {
        display: block;
    }
}