.clients {
  max-width: 800px;
  margin: 0 auto;
}
.clients-hd {
  font-size: 2rem;
  font-weight: 600;
  color: #5491c2;
  text-align: center;
  margin: 0;
  padding-bottom: 1rem;
}
.clients-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
.clients-logos {
  position: relative;
  width: 100%;
}
.clients-logos img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s linear, opacity 0.5s linear;
}
img.clients-hide {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s linear 0.6s, opacity 0.5s linear 0.6s;
}
.clients-left,
.clients-right {
  font-size: 6rem;
  color: #d9d9d9;
  cursor: pointer;
}
