.swiper-slide {
    flex-shrink: 0;
    width: auto;
}
.swiper {
    overflow: hidden;
    width: 100%;
}
.swiper-buttons {
    display: none;
    visibility: hidden;
}
.swiper-button {
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button svg {
    opacity: 40%;
}
.swiper-button svg:hover {
    opacity: 100%;
    color: #0332AD;
}
.swiper-wrapper {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition-property: transform;
    box-sizing: content-box;
    will-change: transform;
}
.swiper-slide {
    flex-shrink: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 992px) {
    .swiper-buttons {
        display: flex;
        visibility: visible;
        padding: 1em 0;
        justify-content: center;
        gap: 1em;
    }
}