.galery-disply {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    width: 100%;

}
.galery-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.gallery-box {
    position: relative;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.galery-container .gallery-box .item-box {
    display: block;
    position: relative;
    width: 600px;
    height: 600px;
    margin: 5px;
}
.galery-container .gallery-box .item-box img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}


@media screen and (max-width: 480px) {
    .gallery-box {
        justify-content: center;
    }
    .galery-container {
        width: 100%;
    }
    .galery-container .gallery-box .item-box {
        width: 100%;
        height: 400px;
    }
}