.img-gallery-preview__slider{
    display: flex;
}

.img-gallery-preview__list:not(.lightSlider) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
@media (max-width: 991px) {
    .awc-landing__block-photo-gallery{
        overflow: hidden;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .img-gallery-preview__list:not(.lightSlider) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .img-gallery-preview__list:not(.lightSlider) {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1600px) {
    .img-gallery-preview__list:not(.lightSlider) {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
.img-gallery-preview__item__inner{
    display: block;
}
.img-gallery-preview__item__img__box{
    display: block;
    position: relative;
}
.img-gallery-preview__item__mask svg path{
    fill: #fff;
}
.img-gallery-preview__item__img{
    aspect-ratio: 308 / 303;
}
.img-gallery-preview__item__img,
.img-gallery-preview__item__mask{
    aspect-ratio: 573/378;
    border-radius: 10px;
}
.img-gallery-preview__item__mask{
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /*height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease opacity;
}
.img-gallery-preview__item__inner:hover .img-gallery-preview__item__mask{
    opacity: 1;
}
.img-gallery__wrapper.is-slider-visible .lSSlideOuter{
    padding-right: 60px;
}