/* logo-marquee-style.css */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    min-height: 150px;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 150px;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #FAF6F1, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #FAF6F1, transparent);
}

.logo-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.logo-marquee .swiper-slide {
    width: auto;
    height: 150px;
    display: flex;
    align-items: center;
}

.logo-marquee a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
}

.logo-marquee img {
    max-height: 110px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .logo-marquee,
    .logo-marquee .swiper-slide {
        min-height: 100px;
        height: 100px;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 50px;
    }

    .logo-marquee img {
        max-height: 80px;
        max-width: 200px;
    }
}
