
/* Team */
.team .title-wrapper {
  max-width: 670px;
  margin: auto;
  text-align: center;
}

.team .grid {
  gap: 20px;
}

.team .team-item {
  border: 1px solid var(--clr-blue-opacity);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}

.team .team-item .img-wrapper {
  height: 325px;
  width: 100%;
}

.team .team-item .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .team .grid {
    column-gap: 0;
  }
}