/* .clients-section {
  padding: 140px 0 80px;

  background: #fff;
}

.clients-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #e5e7eb;

  border-left: 1px solid #e5e7eb;

  margin-top: 50px;
}

.client-box {
  height: 180px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 30px;

  border-right: 1px solid #e5e7eb;

  border-bottom: 1px solid #e5e7eb;

  transition: all 0.35s ease;

  background: #fff;
}

.client-box:hover {
  background: #fafafa;

  transform: translateY(-4px);
}

.client-box img {
  max-width: 170px;

  max-height: 90px;

  width: auto;

  height: auto;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.7;

  transition: 0.35s ease;
}

.client-box:hover img {
  filter: grayscale(0);

  opacity: 1;

  transform: scale(1.05);
} */

.clients-section {
  padding: 140px 0 80px;
  background: #fff;
}

.client-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.clienteyebrow {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(240, 253, 250, 0.9);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-header h1 {
  margin: 20px 0;
}

.client-header p {
  color: var(--muted);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.client-box {
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;

  transition: all 0.35s ease;

  background: #fff;
}

.client-box:hover {
  background: #fafafa;
}

.client-box img {
  max-width: 170px;
  max-height: 90px;

  width: auto;
  height: auto;

  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: all 0.35s ease;
}

.client-box:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================
   REMOVE OUTER RIGHT BORDER
========================== */

.client-box:nth-child(4n) {
  border-right: none;
}

/* ==========================
   REMOVE OUTER BOTTOM BORDER
========================== */

.client-box:nth-last-child(-n + 4) {
  border-bottom: none;
}

@media (max-width: 980px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-box {
    height: 150px;
  }

  /* Reset */

  .client-box {
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  /* Last Column */

  .client-box:nth-child(3n) {
    border-right: none;
  }

  /* Last Row */

  .client-box:nth-last-child(-n + 3) {
    border-bottom: none;
  }
}

@media (max-width: 680px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-box {
    height: 120px;

    padding: 20px;

    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .client-box img {
    max-width: 120px;
  }

  /* Last Column */

  .client-box:nth-child(2n) {
    border-right: none;
  }

  /* Last Row */

  .client-box:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
