/* Стили для секции "С нами работают" */
.slider-container {
    padding: 40px 0;
    background: #f2f6ff;
}

.slider-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #062c47;
    font-family: "Montserrat", sans-serif;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .slide {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    .slide img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .slider-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .slide {
        width: 120px;
        height: 70px;
    }
    
    .slide img {
        max-height: 40px;
    }
}

