* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.civil-hero-section {
  /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 50px;
}

.civil-solution-section {
  background-color: #1EA59AF2;
  color: #ffffff;
}

.civil-content-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
}

/* RESPONSIVE  */
@media (max-width: 768px) {
  .civil-hero-section {
    height: 200px;
    width: 95%;
    border-radius: 10px;
  }

  .civil-content-container {
    max-width: 100%;
    padding: 10px;
  }
}