.providers{
    display: flex;
    flex-direction: column;
    background-color: #d9d9d9;
    height: 50vh;
    justify-content: center;
}

.providers-title{
    display: flex;
    text-align: center;
    padding: 20px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.providers-title h4{
    font-family: 'Anta';
    font-size: 35px;
}
.providers-list{
    height: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
}

.providers-list p{
    display: flex;
    white-space: nowrap;
    animation: right-movement 12s linear infinite;
    justify-self: center;
}


@keyframes right-movement {
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100vw);
    }
}