/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.all-services .heading {
  margin: 0 0 1.6rem;
  max-width: 90.8rem;
}
.all-services .text {
  max-width: 70.8rem;
}
.all-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin: 6.4rem 0 0;
}

@media (max-width: 1024px) {
  .all-services .servicess-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .all-services .services-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin: 2.8rem 0 0;
  }
}