section.team {
  height: 100%;
  width: 100%;
}
section.team .teamContainer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  height: 100%;
  width: 100%;
}
section.team .teamContainer .teamBoxLeft {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamContainer .teamBoxLeft img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.team .teamContainer .teamBoxRight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  padding: 0 10%;
}
section.team .teamContainer .teamBoxRight .teamTitle h1 {
  text-align: center;
  font-size: 50px;
  color: #2b2e36;
  font-weight: 600;
}
section.team .teamContainer .teamBoxRight .teamTitle p {
  margin-top: 25px;
  font-size: 15px;
  color: #2b2e36;
}
section.team .teamCards {
  padding: 100px 5%;
}
section.team .teamCards h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}
section.team .teamCards .teamCardsContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
section.team .teamCards .teamCardsContainer .teamCard {
  display: inline-block;
  transition: all 300ms ease-in-out;
  border-radius: 50px;
}
section.team .teamCards .teamCardsContainer .teamCard:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px #e0e1e6;
}
section.team .teamCards .teamCardsContainer .teamCard:hover .block {
  opacity: 1;
  max-height: 200px;
}
section.team .teamCards .teamCardsContainer .teamCard .figure1 {
  background-image: linear-gradient(rgba(0, 59, 119, 0.13), rgba(0, 59, 119, 0.2)), url("../../app/images/yvan-card.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamCards .teamCardsContainer .teamCard .figure2 {
  background-image: linear-gradient(rgba(0, 59, 119, 0.13), rgba(0, 59, 119, 0.2)), url("../../app/images/customer.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamCards .teamCardsContainer .teamCard .figure3 {
  background-image: linear-gradient(rgba(0, 59, 119, 0.13), rgba(0, 59, 119, 0.2)), url("../images/team-card/nafissa.png");
  background-image: linear-gradient(rgba(0, 59, 119, 0.13), rgba(0, 59, 119, 0.2)), url("../images/femme_ai6.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamCards .teamCardsContainer .teamCard .figure4 {
  background-image: linear-gradient(rgba(0, 59, 119, 0.13), rgba(0, 59, 119, 0.2)), url("../../app/images/team-card/lucas.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamCards .teamCardsContainer .teamCard figure {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 400px;
  width: 100%;
  padding: 20px;
  border-radius: 50px;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption {
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption h2, section.team .teamCards .teamCardsContainer .teamCard figure figcaption p {
  font-size: 15px;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption p {
  margin-top: 3px;
  color: #7f7f7f;
  font-weight: 600;
  font-size: 14px;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption .block {
  margin-top: 5px;
  opacity: 0;
  transition: all 450ms ease-in-out;
  max-height: 0;
  overflow: hidden;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption .block p {
  font-size: 14px;
  color: var(--colorBlack);
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption .figcaptionIcon {
  margin-top: 10px;
}
section.team .teamCards .teamCardsContainer .teamCard figure figcaption .figcaptionIcon i {
  font-size: 15px;
}

@media screen and (max-width: 1110px) {
  section.team .teamCards .teamCardsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  section.team .teamContainer {
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column-reverse;
    gap: 70px;
    margin-top: 50px;
  }
  section.team .teamContainer .teamBoxLeft {
    height: 400px;
    border-radius: 0;
    grid-row: 2;
    background-position: 0px -70px;
  }
  section.team .teamContainer .teamBoxRight {
    padding: 0 5%;
    grid-row: 1;
  }
}
@media screen and (max-width: 760px) {
  section.team .teamContainer .teamBoxLeft {
    height: 400px;
    border-radius: 0;
    grid-row: 2;
    background-position: center;
  }
}
@media screen and (max-width: 550px) {
  section.team .teamContainer .teamBoxRight .teamTitle h1 {
    font-size: 35px;
  }
  section.team .teamCards h1 {
    font-size: 35px;
  }
  section.team .teamCards .teamCardsContainer {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=team.css.map */