.textAlignRight {
  text-align: right;
}

html {
  height: max-content;
  background: linear-gradient(to right bottom, rgb(21, 30, 45), rgb(131, 201, 90) 70%);
  font-family: Poppins, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  overflow-x: hidden;
}

.buttonIcon {
  width: 100%;
  min-width: 40px;
  max-width: 60px;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.filterInvertColor {
  transition: filter 0.5s;
  filter: invert(1);
}
.filterInvertColor:hover {
  filter: invert(0);
}

.sectionEquipe {
  padding: 2% 10%;
  min-height: 450px;
  transition: all 0.3s;
  background-color: transparent;
  color: rgb(236, 235, 228);
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 1150px) {
  .sectionEquipe {
    padding: 5% 5%;
  }
}
@media screen and (max-width: 850px) {
  .sectionEquipe {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 300px) {
  .sectionEquipe {
    padding: 15% 10%;
  }
}

.equipeTitle {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 2%;
  transition: all 0.5s;
}
.equipeTitle:hover {
  color: rgb(131, 201, 90);
}
@media (max-width: 1150px) {
  .equipeTitle {
    font-size: 5vw;
    margin: 5%;
  }
}
@media (max-width: 850px) {
  .equipeTitle {
    font-size: 6vw;
    margin: 10%;
  }
}
@media (max-width: 600px) {
  .equipeTitle {
    font-size: 8vw;
  }
}
@media (max-width: 300px) {
  .equipeTitle {
    font-size: 20vw;
    margin: 15% 0;
  }
}

.membersList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 600px) {
  .membersList {
    flex-direction: column;
  }
}

.memberBox {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(4, 0.5fr);
  justify-items: center;
  align-items: center;
  min-width: 360px;
  padding: 2%;
}
.memberBox > div {
  margin: 5%;
}
@media screen and (max-width: 600px) {
  .memberBox {
    min-width: unset;
  }
}

.memberPicture {
  width: 160px;
  border-radius: 20px;
}
@media screen and (max-width: 300px) {
  .memberPicture {
    width: 90%;
  }
}

.memberImg {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 100%;
}

.memberName {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.memberDesc {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.sectionTechno {
  padding: 2% 10%;
  min-height: 450px;
  transition: all 0.3s;
  background-color: rgb(229, 229, 223);
  color: rgb(12, 1, 22);
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 1150px) {
  .sectionTechno {
    padding: 5% 5%;
  }
}
@media screen and (max-width: 850px) {
  .sectionTechno {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 300px) {
  .sectionTechno {
    padding: 15% 10%;
  }
}

.technoTitle {
  font-size: 2.5vw;
  font-weight: bold;
  margin: 2%;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .technoTitle {
    font-size: 3vw;
    margin: 5%;
  }
}
@media screen and (max-width: 850px) {
  .technoTitle {
    font-size: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .technoTitle {
    font-size: 10vw;
  }
}
@media screen and (max-width: 300px) {
  .technoTitle {
    font-size: 15vw;
    margin: 10% 0;
  }
}

.technoList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 300px) {
  .technoList {
    flex-direction: column;
  }
}

.technoBox {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(2, 0.5fr);
  justify-items: center;
  align-items: center;
  min-width: 125px;
  padding: 1%;
}
.technoBox > div {
  margin: 5%;
}
@media screen and (max-width: 300px) {
  .technoBox {
    margin: 5%;
    min-width: unset;
  }
}

.technoPicture {
  width: 120px;
}
@media screen and (max-width: 300px) {
  .technoPicture {
    width: 90%;
  }
}

.technoImg {
  width: 100%;
  aspect-ratio: auto;
}

.technoDesc {
  font-size: 1vw;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .technoDesc {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 850px) {
  .technoDesc {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 600px) {
  .technoDesc {
    font-size: 4vw;
  }
}
@media screen and (max-width: 300px) {
  .technoDesc {
    font-size: 10vw;
  }
}

.avatarsMovements {
  padding: 2% 10%;
  min-height: 450px;
  transition: all 0.3s;
  padding: unset;
  min-height: unset;
  background-color: rgb(21, 30, 45);
}
@media screen and (max-width: 1150px) {
  .avatarsMovements {
    padding: 5% 5%;
  }
}
@media screen and (max-width: 850px) {
  .avatarsMovements {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 300px) {
  .avatarsMovements {
    padding: 15% 10%;
  }
}
.avatarsMovements > picture {
  width: 100%;
}
.avatarsMovements > picture > img {
  width: 100%;
  aspect-ratio: auto;
}

/*# sourceMappingURL=equipe.css.map */
