      .clientes{
        display:flex;
        width:100%;
        padding:40px 0px 0px 0px;
        /*background-color:green;*/
        justify-content:center;
        align-items: center;
        flex-direction: column;
        background-color: rgb(229, 229, 229);
      }
      
      .clientes .container{
        display:flex;
        flex-direction:column;
        gap:33px;
        /*background-color:lightblue;*/
        width:100%;
        max-width:1000px;
        padding: 0 20px;
        justify-content: center;
      }
      
      .clientes h2{
        font-size:36px;
        line-height:27.3px;
      }
      
      .clientes .panel{
        display:flex;
        width:100%;
        /*background-color:darkblue;*/
        justify-content:space-between;
        gap:30px;
        flex-wrap:wrap;
      }
      
      .clientes img{
        height:66px;
        width:auto;
        min-width:20px;
        object-position:center;
        object-fit:cover;
        flex-shrink:0;
        mix-blend-mode: multiply;
      }

      .clientes .line{
        width:100%;
        height:1px;
        background-color:#c9c9c9;
        display:flex;
        margin-top:40px;
      }


      @media(max-width:1000px){

            .clientes .panel{
              justify-content: center;
              gap:20px;
            }



      }



      @media(max-width:800px){

            .clientes .panel{
              max-width: 500px;
            }

            .clientes .container{
              justify-content: center ;
              align-items: center;
            }



      }