#gallery .gallery-swiper {
    padding-left: 50px;
    padding-right: 50px;
}

.gallery-swiper .swiper-slide {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #2c2c2c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s;
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-swiper .swiper-button-prev { left: 10px; }
.gallery-swiper .swiper-button-next { right: 10px; }



.gallery-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #CE1212; 
}