.gallery_images{
    position: relative;
}

.gallery_images_wrap{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
}
.gallery_images_wrap .gallery_images_item{
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    width: calc(33.33% - 30px);
    /*height: 406.667px;
     aspect-ratio: 406.67/406.67; */
    border-radius: 20px;
    overflow: hidden;
}
.gallery_images_wrap .gallery_images_item img{    
    width: 100%;
    /* aspect-ratio: 406.67/406.67; */
    object-fit: cover;
    border-radius: 20px;
}


@media only screen and (max-width: 1400px) {
    /* .gallery_images_wrap .gallery_images_item {
        height: 349.95px;
        aspect-ratio: 349.95 / 349.95;
    } */
}
@media only screen and (max-width: 1200px) {
    /* .gallery_images_wrap .gallery_images_item {
        height: 289.95px;
        aspect-ratio: 289.95 / 289.95;
    } */
}

@media only screen and (max-width: 991px) {
    .gallery_images_wrap .gallery_images_item{
        width: calc(50% - 30px);
        /* height: 330px;
        aspect-ratio: 330 / 330; */
    }
}
@media only screen and (max-width: 767px) {
    .gallery_images_wrap .gallery_images_item{
        width: 100%;
        height: auto;
        aspect-ratio: unset;
    }
}