 .random-gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-items: center;
    align-items: flex-end;
    align-content: stretch;
    height: 200vh;

    width: 100%;
}

.random-gallery-item {
    flex: 0 0 calc(33% - 10px);
    transition: transform 0.5s ease-out;
    will-change: transform;

}


.random-gallery-item img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    }

.random-gallery-container-mobile{
    display: none;
}
  .random-gallery-mobile{
        display: none;
    }
    
    
@media (max-width: 768px) {
    .random-gallery-container{
        display: none;
    }

    .random-gallery-mobile{
        display: block;
        width: 100%;;
    }
     .random-gallery-container-mobile {
        aspect-ratio: 1/1;
        height: auto;
        width: 100%;
     }
     .random-gallery-item-mobile{
        width: 100%;
        height: 100%;
     }

    .random-gallery-item {
        flex: 0 0 100%;
        will-change: none;

    }

     .random-gallery-container-mobile  img {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
     }

    /*  .random-gallery-container-mobile .owl-nav{
        background: red;
        position: absolute;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: center;
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
        top: calc(50%);
     } */

}