.section-team .container-fluid {
  position: relative;
}
.section-team .container-fluid::before {
  content: "";
  position: absolute;
  left: 118px;
  top: 100px;
  height: 90%;
  width: 3px;
  background: #F16105;
  transform: translateX(20%);
  z-index: 0;
}
.section-team .container-fluid .titresection h2 {
  margin-bottom: 6rem;
}
.section-team .container-fluid .team-wrapper {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.section-team .container-fluid .team-wrapper .membre {
  display: flex;
  flex-direction: row;
  gap: 5.5rem;
  align-items: center;
}
.section-team .container-fluid .team-wrapper .membre .imgcropCtn {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  flex-shrink: 0;
}
.section-team .container-fluid .team-wrapper .membre .content {
  width: 873px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}
.section-team .container-fluid .team-wrapper .membre .content h3.nom {
  font-family: 'Newsreader', sans-serif;
  font-style: italic;
  font-size: 4.9rem;
  font-weight: 400;
}
.section-team .container-fluid .team-wrapper .membre .content .fonction {
  color: #F16105;
  font-weight: 600;
  font-size: 2.4rem;
  margin: 1rem 0 3rem 0;
}
.section-team .container-fluid .team-wrapper .membre .content .description {
  line-height: 1.7;
}
@media (max-width: 600px) {
  .section-team .container-fluid::before {
    left: 50%;
    top: 70px;
    height: 100%;
    transform: translateX(-50%);
  }
  .section-team .container-fluid .team-wrapper .membre {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-team .container-fluid .team-wrapper .membre .content {
    width: 100%;
    background-color: #000000;
    z-index: 1;
    padding: 1rem 1rem 3rem;
  }
}
