.team-section {
  background-color: #f9fafe;
  padding: 50px 0;
}
.team-section .intro-paragraph {
  margin-bottom: 2rem; /* Increase space between paragraph and hr */
}
.team-section .custom-hr {
  border: none;
  height: 5px; /* Increase the thickness of the hr */
  background: linear-gradient(to right, #416e51, rgb(83.9428571429, 142.0571428571, 104.6057142857)); /* Gradient effect */
  margin-bottom: 2rem; /* Adjust space below the hr if needed */
}
.team-section .card {
  background-color: #f9fafe;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(73, 76, 82, 0.2), 0 6px 20px 0 rgba(73, 76, 82, 0.19);
}
.team-section .card img {
  max-width: 100%;
  border-radius: 0.25rem;
  transition: filter 0.3s ease;
}
.team-section .card img:hover {
  filter: brightness(1.05);
}
.team-section .card .card-body {
  padding: 1.5rem;
  text-align: center;
  color: #494c52;
}

@media screen and (max-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}

/*# sourceMappingURL=team.css.map */
