.companies__title {
    font-weight: 400;
    letter-spacing: normal;
    margin-bottom: 60px;
}

.companies__item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.companies__items-track {
    display: flex;
}

#track-one {
    animation: scrollCardsOne 50s linear infinite;
}

.companies__items-container {
    overflow: hidden;
    max-width: 1175px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 70%, transparent 100%);
}

@keyframes scrollCardsOne {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--x));
    }
}

@media (max-width: 850px) {
    .companies__title {
        margin-bottom: 30px;
    }
}

@media (max-width: 650px) {
    .companies__item svg {
        width: 100px;
    }
}