﻿/* ================================
         Partner Widget
   ================================ */


.partners-section {
    background: linear-gradient(to bottom, var(--primary-bg) 0%, #000 100%);   
}
.logo-slider {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}
.logos-divider {
    width: 100%;
    max-width: 50%;
    height: 2px;
    background-color: #ffffff;
    margin: 100px auto 0 auto;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-item {
    padding: 0 40px;
    position: relative;
    margin-left: -11px;
}

    .logo-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height:100px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.4);
    }



