@import url("https://fonts.googleapis.com/css2?family=Arvo&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,700;1,200;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,200;0,300;1,100;1,200;1,300&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.client-wrap {
  background-color: #fff;
  display: grid;
  align-items: center;
}
.client-wrap h1 {
  font-size: 40px;
  color: #332549;
  text-align: center;
}
.client-wrap h1::after {
  content: "";
  height: 5px;
  width: 100px;
  background-color: #332549;
  border-radius: 25px;
  display: block;
  margin: auto;
}
.our-clients {
  width: 100%;
  height: auto;
  text-align: center;
}
.our-clients ul {
  padding: 0;
  margin: 0;
}
.our-clients ul li {
  list-style: none;
  display: inline-block;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.our-clients ul li::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0;
  background: #000;
  top: auto;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
}
.our-clients ul li::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 0;
  background: #000;
  top: 0;
  bottom: auto;
  z-index: -1;
  transition: 0.5s;
}
.our-clients ul li img {
  width: 216px;
  height: 185px;
  cursor: pointer;
}
