.swiper-slide .swipe-card {
    display: flex;
    flex-direction: column;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swipe-btn-wrapper {
    position: relative;
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.swipe-btn-wrapper .swiper-button-prev,
.swipe-btn-wrapper .swiper-button-next {
    position: static;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0;
    background-color: var(--bs-secondary-light);
    text-align: center;
    border: 0;
    border-radius: 50%;
    transition: all .3s ease;
}

.swiper-button-prev:before,
.swiper-button-next:before {
    font-family: "bootstrap-icons";
    font-size: 20px;
    color: var(--bs-primary);
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.swiper-button-prev:before {
    content: "\f284";
}

.swiper-button-next:before {
    content: "\f285";
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background-color: var(--bs-success);
}

.swiper-wrapper {
    padding-bottom: 50px;
}

.swiper-content {
    background-color: var(--bs-secondary-light);
}

.swiper-content blockquote {
    font-size: 20px;
    line-height: normal;
    font-style: italic;
}

.swiper-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 0;
}

@media (min-width: 1100px) {
    .swiper-content blockquote {
        font-size: 24px;
    }
}