.photosGallery .photosGallery__navigation .swiper-pagination-bullet{
    margin: 0;
    height: 8px;
    width: 8px;
    background-color: var(--alter);
    opacity: .3;
}
.photosGallery .photosGallery__navigation .swiper-pagination-bullet-active{
    background-color: var(--alter);
    opacity: .9;
}
.photosGallery .photosGallery__navigation .swiper-pagination-bullet:hover{
    background-color: var(--accent);
}
.photosGallery__navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.photosGallery__footer{
    margin-top: 40px;
    text-align: center;
}
.photosGallery{
    margin-top: 120px;
}
.photosGallery__body{
    margin-top: 40px;
    position: relative;
}
.photosGallery__slider {
    width: 100%;
    height: 610px;
}
.photosGallery__slider  .swiper-wrapper{
    align-items: flex-start;
}

.swiper-slide.photosGallery__slide {
    transition: all 0.5s ease;
    overflow: hidden;
    flex-shrink: 0;
}


/* Активный слайд */
.swiper-slide-active.photosGallery__slide {
    /* width: 955px !important; */
    width: 75% !important;
    height: 610px !important;
}

/* Следующий слайд */
.swiper-slide-next.photosGallery__slide {
    /* width: 308px !important; */
    width: calc(25% - 40px) !important;
    height: 280px !important;
    margin-left: 20px;
}
.swiper-slide.photosGallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide-next.photosGallery__slide img {
    object-position: top;
    object-fit: contain;
}


@media screen and (max-width: 992px) {
    .photosGallery__slider {
        height: auto;
    }
    .swiper-slide-active.photosGallery__slide {
        width: 100% !important;
        height: 100% !important;
    }
    .swiper-slide-next.photosGallery__slide {
        width: 100% !important;
        height: auto !important;
        margin-left: 0px;
    }
}


@media screen and (max-width: 576px) {
    .photosGallery {
        margin-top: 100px;
    }
    .photosGallery__slider {
        height: 340px;
    }
    .photosGallery__item {
        display: block;
        width: 100%;
        height: 100%;
    }
}