.gallery_block .common-title.title_align_center {
    text-align: center;
}
.gallery_block .title_wrap {
    padding-bottom: 30px;
}
.gallery-lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    padding: 12px 0;
    gap: 10px;
}
.galler-img {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    /*height: 700px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 3 / 2;*/
}
.galler-img img {
    /*height: 100%;*/
    width: 100%;
    /*object-fit: cover;*/
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
    display: block;
}
.galler-img:hover img {
    transform: scale(1.1);
}

body.noscroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}
.prev { left: 20px; }
.next { right: 20px; }

@media(max-width:1200px) {
    .gallery-lists {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 800px) {
    .gallery-lists {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .gallery-lists {
        grid-template-columns: 1fr;
    }
}