.team-article {
  background: #f1f1f1 !important;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-img-section {
  display: flex;
  /*flex: 1 1 45rem;*/
  margin: auto !important;
  justify-content: center;
  align-items: center;
}

.team-img-section img {
  width: 90%;
  display: flex;
  margin: auto;
}

@media only screen and (min-width: 1400px) {
  .team-img-section img {
    width: 50%;
  }
}

.our-team-content {
  display: flex;
  /*flex: 1 1 45rem;*/
  justify-content: center;
  align-items: center;
}

.our-team-slogan {
  font-size: 27px !important;
  text-align: center;
  font-weight: 700!important;
  text-align: center;
  margin: auto;
}

.card-body {
  background: rgb(241,241,241) !important;
}

.our-team-grid {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  border-radius: 35px;
}

.our-team-grid h5 {
  color: #09b9b4 !important;
}

@media only screen and (min-width: 768px) {
  .our-team-grid > div:last-child {
    /*grid-column-start: 2;*/
  }
}

@media only screen and (max-width: 768px) {
  .our-team-grid {
    grid-template-columns: 1fr;
  }
}

