/** Swiper Common **/ 

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;

        background-size: cover;
        background-position: center;

        /* aspect-ratio: 1 / 1; */
    }

        .swiper-slide img {
            display: block;
            width: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

