.all-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-container {
  display: flex;
  flex-direction: column;
}

.service-container-img img {
  width: 100%;
}

.service-container-content {
  width: 100%;
  padding: 1.3rem;
  background-color: #49b3ff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}
.service-heading {
  font-size: 20px;
  font-weight: 500;
}
.service-peragraph {
  font-size: 15px;
}
.service-readmore {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 18px;
  align-items: center;
}

@media (max-width: 580px) {
  .all-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .service-container-content {
    padding: 8px;
  }
  .service-heading {
    font-size: 16px;
    font-weight: 500;
  }
  .service-peragraph {
    font-size: 12px;
  }
  .service-readmore {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .all-service {
    gap: 0.8rem;
  }
  .service-container-content {
    padding: 10px;
  }
  .service-heading {
    font-size: 16px;
    font-weight: 500;
    height: 3rem;
  }
  .service-peragraph {
    font-size: 12px;
  }
  .service-readmore {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .all-service {
    gap: 12px;
  }
  .service-container-content {
    padding: 1rem;
  }
}
