@keyframes primary {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes secondary {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-0%);
    }
}

.primary {
    animation: primary 20s linear infinite;
    
}

.secondary {
    animation: secondary 20s linear infinite;
}

.companies {
    position: relative;
    padding: 0 20px;
}

.wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 156px;
    border-radius: 24px;

    overflow-x: hidden;
    background-color: #101010;
    /* margin-bottom: 16px; */
}

.wrapper_el {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.wrapper_el img {
    height: 80px;
}



.wrapper-super-el {

    width: inherit;
    height: 100%;

    position: absolute;
    left: 0%;
    top: 0%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 200%;
    padding-left: 120px;
    padding-right: 120px;
}





@media (max-width: 600px) {
    .wrap {
        height: 150px;

        overflow-x: hidden;
    }

    .wrapper-super-el {
        width: 550%;
        padding-left: 90px;
        padding-right: 90px;
    }
}

@media (min-width: 600px) {
    .wrap {

    }
    .wrapper-super-el {
        width: 400%;
        padding-left: 130px;
        padding-right: 130px;
    }
}

@media (min-width: 1000px) {
    .wrapper-super-el {
        width: 250%;
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (min-width: 1500px) {
    .wrap {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 176px;
        border-radius: 24px;
    
        overflow-x: hidden;
        background-color: #101010;
        /* margin-bottom: 16px; */
    }
    
    .wrapper_el {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    
    .wrapper_el img {
        height: 100px;
    }
}


