.clients-section {
  height: 300px;
  background-color: var(--primary-color);


  h1 {
    font-size: 40px;
    font-weight: 700;
    direction: rtl;
    color: var(--secondary-color);

    @media (max-width: 768px) {
      font-size: 32px;
      padding-right: 10px;

    }
  }
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.clients-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.clients-swiper .swiper-slide img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
  cursor: pointer;
}

.clients-swiper .swiper-slide img:hover {
  filter: grayscale(0%);
}