.swiper {
    width: 100%;
}

@media (max-width: 720px) {
    .swiper {
        height: 120px;
    }
}


.swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}


.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}


/* Logo card */
.logo-card {
    /* width: 240px;
    height: 110px; 
    background: #ffffff; */
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-card img {
    max-width: 80%;
    max-height: 70%;
    filter: grayscale(1) brightness(.95);
    opacity: .85;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.logo-card:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.02);
}


/* Hide default UI */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    display: none !important;
}