.products{ 
    width: 100%;
    background: var(--grey);
    padding-top: 2rem;
}
.products h2{
    font-size: 3rem;
    font-family: var(--ff-titles);
    color: white;
    text-align: center;
}
.products__wrapper{
    display: flex;
    flex-direction: row;
    gap: 4rem;
    overflow: auto;
    padding: 2rem;
}
.products__article{
    flex: 1 1 auto;
    min-width: 270px;
    max-width: 270px;
    /* animation: scroll 12s linear infinite; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.products__image{
    width: 250px;
    height: 250px;
    background: linear-gradient(to top, #a9b0b6, #ffffff);
    padding: 2rem;
    border-radius: 100%;
}
.products__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.products__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.5) 0px -20px 30px -40px;
}
.products__info h3{
    font-family: var(--ff-titles);
    font-size: 2rem;
    text-align: center;
    color: white;
}
.products__info a{
    background: var(--orange);
    margin: 0 auto;
    padding: 0.5rem;
    color: var(--grey);
    font-weight: 600;
}

/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    80% {
        transform: translateX(-100%);
    }
    81% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }

    
} */