.swiper.image-slider {
    width: 100%;
    height: 100%;

    >.swiper-wrapper {
        display: flex;
        align-items: center;
        transition-timing-function: linear;


        >.swiper-slide {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;

            >img {
                max-width: 200px;
                max-height: 100px;
                width: auto;
                height: auto;
                object-fit: contain;
            }
        }
    }
}