﻿

/* Responsive adjustments for Companies Carousel */
@media (max-width: 768px) {
    .carousel-track {
        animation-duration: 60s !important;
    }

    .carousel-group {
        gap: 2.5rem;
        padding-right: 2.5rem;
    }

    .carousel-item {
        min-width: 80px;
        max-width: 150px;
        padding: 1rem;
    }

        .carousel-item img {
            max-height: 48px;
        }
}

@keyframes companies-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 2rem));
    }
}