﻿.companies {
    margin-top: 60px;
    margin-bottom: 50px;
    height: 303px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .companies h1 {
        height: 149px;
        width: 329px;
        font-size: 2rem;
        font-weight: 700;
        line-height: 37.5px;
        text-align: center;
    }

.logo-carousel {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: scroll 140s linear infinite;
    background-color: var(--greyish-color);
    height: 87px;
}

    .logo-track img {
        height: 50px;
        width: 120px;
        margin-right: 20px;
        object-fit: contain;
        pointer-events: none;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 576px) {
    .companies {
        margin-top: 100px;
        height: 316px;
    }

        .companies h1 {
            height: 100px;
            width: 571px;
            font-size: 2.5rem;
            line-height: 40px;
        }

    .logo-track {
        height: 87px;
        animation: scroll 160s linear infinite;
        margin-bottom: 50px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .logo-track img {
        height: 50px;
        width: 120px;
        margin-right: 30px;
    }
}

@media (min-width: 992px) {
    .companies {
        height: 347px;
    }

        .companies h1 {
            height: 100px;
            width: 571px;
            margin-top: 40px;
            font-size: 1.875rem;
            line-height: 37.5px;
        }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .logo-track {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .companies {
        margin-top: 0px;
        height: 458px;
        justify-content: center;
    }

        .companies h1 {
            height: 100px;
            width: 590px;
            margin-top: 0px;
            margin-bottom: 50px;
            font-size: 1.875rem;
        }
}

@media (min-width: 2000px) {
    .companies {
        height: 491px;
        justify-content: space-evenly;
        margin-bottom: 50px;
    }

        .companies h1 {
            height: 38px;
            width: 1396px;
            margin-top: 0px;
            margin-bottom: 0px;
            font-size: 3.5rem;
        }

    .logo-track img {
        height: 86px;
        width: 272px;
    }
}
