/*========================

    ¿A QUIÉN AYUDAMOS?

=========================*/

.clients {
  background: #f8f9fb;
}

.client-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.client-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.client-card i {
  width: 90px;

  height: 90px;

  margin: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: rgba(75, 31, 111, 0.08);

  color: var(--primary);

  font-size: 34px;

  margin-bottom: 25px;
}

.client-card h4 {
  font-weight: 600;

  margin-bottom: 15px;
}

.client-card p {
  color: var(--gray);

  line-height: 1.8;

  margin: 0;
}
