.our-partners-wrapper-acee5f61 {
    width: 100%;
}

.our-partners-title-acee5f61 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDownIn-acee5f61 0.8s forwards ease-out;
}

@keyframes fadeDownIn-acee5f61 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-partners-container-acee5f61 {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background: transparent;
}

.our-partners-container-acee5f61.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.our-partners-container-acee5f61::before,
.our-partners-container-acee5f61::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.our-partners-container-acee5f61::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.our-partners-container-acee5f61::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.our-partners-track-acee5f61 {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: marquee-acee5f61 30s linear infinite;
    will-change: transform;
}

.our-partners-container-acee5f61.pause-on-hover:hover .our-partners-track-acee5f61 {
    animation-play-state: paused;
}

.our-partners-card-acee5f61 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.our-partners-card-acee5f61:hover {
    transform: scale(1.1) rotate(2deg) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.our-partners-card-acee5f61 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Removed grayscale to keep them in color */
    transition: transform 0.4s ease;
}

.our-partners-card-acee5f61:hover img {
    transform: scale(1.05);
}

.our-partners-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

@keyframes marquee-acee5f61 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@media (max-width: 767px) {
    .our-partners-card-acee5f61 {
        width: 150px;
        height: 100px;
        padding: 20px;
    }
    .our-partners-container-acee5f61::before,
    .our-partners-container-acee5f61::after {
        width: 60px;
    }
    .our-partners-title-acee5f61 {
        font-size: 1.5rem;
    }
}
