.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0.5;
    background-color: transparent;
}
.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1; 
}
.swiper-button-next, .swiper-button-prev {
    background: rgba(13, 17, 23, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: .7px solid rgba(255, 255, 255, 0.2);
    padding: .8rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 44, 95, 0.85);
    border-color: var(--color-secondary);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    content: '';
    width: 25px;
    height: 25px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}
.swiper-button-next { right: -10px; }
.swiper-button-prev { left: -10px; }
.swiper-button-next:after { background-image: url(../img/arrow-right.svg) !important; }
.swiper-button-prev:after { background-image: url(../img/arrow-left.svg) !important; }

@media screen and (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev { width: 30px; height: 30px; }
}
@media screen and (max-width: 576px) {
    .swiper-button-next, .swiper-button-prev { width: 26px; height: 26px; }
    .swiper-button-next { right: 0; }
    .swiper-button-prev { left: 0; }
}
