.clientes-slider {
  position: relative;
  z-index: 1;
  padding-top: 2rem;

  &:before {
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }

  &:after {
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }

  h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .slide {
    padding: 0 40px;

    i {
      color: #0795FE;
      font-size: 2rem;
      margin-bottom: 2rem;
      display: inline-block;
    }

    .quote-text {
      font-size: 18px;
      line-height: 30px;
      color: #000;
      margin-bottom: 41px;
      font-style: italic;
    }

    .quote-name {
      margin-bottom: 2px;
      font-size: 18px;
      color: #0e0e0e;
      font-weight: 700;
    }
  }

  .swiper-pagination {
    position: relative;
    margin-top: 20px;
  }
}