section.team {
  height: 100%;
  width: 100%;
}
section.team .teamContainer {
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 100%;
}
section.team .teamContainer .teamBoxLeft {
  width: 100%;
  border-radius: 25px;
  height: 600px;
}
section.team .teamContainer .teamBoxLeft .test {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.team .teamContainer .teamBoxLeft img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.team .teamContainer .teamBoxRight {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: #f9f9f9;
}
section.team .teamContainer .teamBoxRight .teamTitle {
  padding: 0 5%;
}
section.team .teamContainer .teamBoxRight .teamTitle .teamSocials {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
section.team .teamContainer .teamBoxRight .teamTitle h1 {
  font-size: 50px;
  color: #2b2e36;
}
section.team .teamContainer .teamBoxRight .teamTitle h2 {
  font-size: 20px;
  color: #7f7f7f;
}
section.team .teamContainer .teamBoxRight .teamTitle p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 25px;
  color: #2b2e36;
}
section.team .teamCards {
  padding: 100px 5%;
  background-color: #f9f9f9;
}
section.team .teamCards h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}
section.team .teamCards .teamCardsContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
section.team .teamCards .teamCardsContainer .teamCard {
  display: inline-block;
  transition: all 300ms ease-in-out;
  box-shadow: 0 10px 25px #e0e1e6;
  border-radius: 50px;
}
section.team .teamCards .teamCardsContainer .teamCard:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px #b0b1b6;
}
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/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: 1000px) {
  section.team .teamContainer {
    flex-direction: column-reverse;
  }
  section.team .teamContainer .teamBoxLeft {
    height: 400px;
    border-radius: 0;
  }
  section.team .teamContainer .teamBoxRight {
    padding: 50px 5%;
  }
  section.team .teamContainer .teamBoxRight .teamTitle {
    padding: 0;
  }
}
@media screen and (max-width: 1110px) {
  section.team .teamCards .teamCardsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@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=team1.css.map */