
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
  }
  
  .clients .client-logo {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    background: #fff;
    height: 120px;
  }
  
  .clients .client-logo img {
    height: auto;
    max-width: 150px;
  /*  -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    transition: 0.3s;
  }
  
  .clients .client-logo:hover img {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.2);
  }
  
  .clients img {
    transition: all 0.4s ease-in-out;
  }
  