:root {
    --swiper-navigation-size: 2rem;
    --swiper-pagination-bullet-width: 3rem;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-color: #c00d1e;
}

.swiper {
    position: static;
}

.swiper-wrapper {
    box-sizing: border-box;
}

.swiper-container {
    position: relative;
}

.swiper-container--carousel {
    margin: 0;
    padding: 0;
}

.swiper-slide {
    height: auto;
}

.swiper:not(.swiper-initialized) :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
}

.swiper-button-prev {
    left: -0.25rem;
}

.swiper-button-next {
    right: -0.25rem;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: "icomoon";
    color: #b6b4b4;
    transition: color 0.3s;
}

.swiper-button-prev:after {
    content: "\e900";
}

.swiper-button-next:after {
    content: "\e90c";
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #c00d1e;
}

.swiper-pagination {
    --swiper-pagination-bullet-width: 0.5rem;
    --swiper-pagination-bullet-height: 0.5rem;
    --swiper-pagination-bottom: 0;
    margin-top: 0.5rem;
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
    border-radius: 0.25rem;
    border: 1px solid #c00d1e;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: #fff;
}

@media (min-width: 600px) {}

@media (min-width: 1025px) {
    .swiper-container--carousel {
        margin: 0 -1rem;
        padding: 0 3rem;
    }
}