.clients{
    width: 100%;
    padding: 80px 20px;
    background-color: rgb(71, 71, 71);
    color: #FFFF;
    display: flex ; 
    flex-direction: column;
    align-items: center;
}
.clients_title{
    text-align: center;
    margin: 0;
    margin-bottom: 80px;
    font-size: 2.2rem;
}
.client_logos_container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.client_logos_container img{
    object-fit: contain;
    width: 120px;
    height: 120px;
}
