.clientes-wrapper {
  width: 100%;
  background: linear-gradient(180deg, rgba(99, 99, 99, 0.6) 0%, #262626 100%);

  padding-top: 150px;
  padding-bottom: 150px;
}

#clientsComponent {
  position: relative;
}

    .swiper-container {
      width: 100%;
      max-width: 1300px;
      height: fit-content;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;

      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

    .slide-card {
        height: fit-content;
        width: 70%;
        max-width: 350px;
        max-height: 600px;
        margin-right: 0px;
        margin-left: 0px;
        background-color: var(--lightGray);
        border-radius: 15px;
    }

    .card-head {
        height: 130px;
        width: 100%;
        border-radius: 15px 15px 0px 0px;
    }

    .card-head-img {
      height: 100%;
      width: auto;
    }

    .card-head-img-wide {
      height: auto;
      width: 90%;
    }

    .card-body {
        padding: 15px 25px 5px 25px;
        color: var(--black);
        height: 70%;
        min-height: 300px;
        width: 100%;
        background-color: var(--white);
        border-radius: 0px 0px 15px 15px;
    }

    .card-body p {
      padding-top: 10px;
        font-size: 14px;
        max-height: 200px;
        overflow-y: auto;
    }

    .card-body h3 {
        color: var(--yellow);
        font-size: 20px;
    }

    .swiper-pagination {
        position: absolute;
        bottom: 10px;
    }

    .swiper-pagination-bullet-active {
      background-color: var(--white);
    }

    .clients-component-divider {
        position: absolute;
        width: 100%;
        height: 50%;
        bottom: 30px;
        background-color: #eee;
        border-bottom: 1px solid #262626;
    }

    .resume-cards-wrapper .container {
      width: 80%;
    }

    .col-card {
      padding-left: 20px;
      padding-right: 20px;
    }

    .resume-card {
      color: var(--black);
      height: 250px;
      background-color: var(--white);
      border-radius: 15px;
    }

    .info {
      padding-left: 20px;
      padding-right: 20px;
    }

    .clientes-icon {
      height: 60px;
      width: 60px;
      margin: 0px auto;
      margin-top: 30px;

      background-size: cover;
      background-position: center;
    }

    .icon-1 {
      background-image: url('../img/icons/time-management.png');
    }

    .icon-2 {
      background-image: url('../img/icons/clock.png');
    }

    .icon-3 {
      background-image: url('../img/icons/concert.png');
    }

    @media(max-width:992px) {
      .clientes-card-3 {
        margin-top: 30px;
      }
    }

    @media(max-width: 768px) {
      .clientes-card-2,
        .clientes-card-3 {
          margin-top: 30px;
      }
  }