.swiper {
    width: 100%;
    height: 260px;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:2rem;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev, .swiper-button-next {
    padding:8px 32px;
    border-radius:2rem;
    border:0;
    font-size: 1.5rem;
    color: var(--color-fog);
    background:var(--color-sageDarker);
    transition: all 0.3s ease;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size:1.25rem;
}
