
*{
  padding:0;
  margin:0;
  box-sizing: border-box;
}

.item-about{
 width: 100%; 
 /* height: 100vh; */
 display: grid;
 place-items: center;
}

.client-wrap{
width: 100%;
height: auto;
text-align: left;
}

.client-in{
  width: 100%;
  height: auto;
}

.client-in ul{
  padding:0;
  margin:0;
}

.client-in ul li{
  list-style: none;
  display: inline-block;
  width: 150px;
  height: 50px;
  position: relative;
  overflow: hidden;
  transition: .5s;
  padding-right: 20%;
}

.client-in ul li img{   
  width: 150px;
  height: 50px;
}


.client-in ul li img:nth-child(1){   
  transform: translateY(0);
  transition: .5s;
}


.client-in ul li img:nth-child(2){   
  transform: translateY(0);
  transition: .5s;
}


/*Hover Section*/

.client-in ul li:hover img:nth-child(1){   
  transform: translateY(-100%);
  transition: .5s;
}

.client-in ul li:hover img:nth-child(2){   
  transform: translateY(-100%);
  transition: .5s;
}