#facts {
  background-color: #00a5ff;
  color: white;
  padding: 60px 0;
}

.facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.facts-container {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.happy-clients,
.successful,
.feedback {
  border-radius: 20px 0 20px 0;
  padding: 30px;
  width: 280px;
}

.facts-grid h4 {
  text-align: left;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0;
  margin-bottom: 10px;
}

.facts-grid p {
  font-weight: 350;
  font-size: 2.5rem;
  margin: 0;
}

.happy-clients {
  background-color: #003552;
}

.successful {
  background-color: #00679f;
}

.feedback {
  background-color: #fff;
}

.feedback h4,
.feedback p {
  color: #003552;
}

@media (max-width: 768px) {
  .facts-grid p {
    font-size: 2rem;
  }
}
@media (max-width: 425px) {
  .happy-clients,
  .successful,
  .feedback {
    width: 70%;
  }
}
