.blockMain {
    display: flex;
    justify-content: center;
}

.slideshowContainer {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}

.slideshowWrapper {
    width: 100%;
    position: relative;
}

.imageSlideshow {
    width: 100%;
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    top: -25%; /* Adjust the percentage as needed */
    bottom: 0;
    right: 0;
    left: 0;
}

.imageSlideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
}
.imageSlideshow-uniform {
    right: 0;
}


.imageSlideshow-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.mobileWrapper {
    display: none;
    overflow: hidden;
    /*max-height: 400px;*/
}
.mobileSlideshow {
    max-height: 400px;
}
.mobileImage {
    border-radius: 20px;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .slideshowContainer {
        display: -ms-flex;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 1rem;
        grid-template-rows: unset;
        grid-template-columns: unset;
        grid-column-gap: unset;
        -webkit-column-gap: unset;
        -moz-column-gap: unset;
        column-gap: unset;
    }
    .slideshowWrapper {
        display: none;
    }
    .mobileWrapper {
        display: block;
    }
}