.team {
  padding: 30px 0;
  background: var(--primary-color);
  margin-bottom: 0;
}
.team .team-header {
  text-align: center;
  margin-bottom: 50px;
}
.team .team-header .team-title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
}
.team .team-members .team-member {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 73px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .team .team-members .team-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.team .team-members .team-member:last-child {
  margin-bottom: 0;
}
.team .team-members .team-member .member-photo {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .team .team-members .team-member .member-photo {
    text-align: left;
    margin-bottom: 0;
  }
}
.team .team-members .team-member .member-photo img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
}
.team .team-members .team-member .member-info .member-name {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.2;
}
.team .team-members .team-member .member-info .member-role {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.team .team-members .team-member .member-info .member-description p {
  font-size: 16px;
  line-height: 1.5;
}