@charset "UTF-8";
/*----------KENZA: Variables de font-size telephone------------------------*/
/*----------KENZA: Variables de font-size desktop------------------------*/
/*KENZA: Note à parler avant remise: Mettre un padding dans les boutons +s'assurer que le font-weight soit le même en tout temps*/
/*Joshua*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background-color: white;
  margin-top: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  text-decoration: none;
  z-index: 1000;
}
.navbar .logo img {
  position: relative;
  width: 150px;
}
.navbar ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar ul li {
  position: relative;
  list-style: none;
}
.navbar ul li a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
}

.nav-content {
  margin-top: 120px;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.btn {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.btn:hover {
  background-color: #E1E5F2;
  background-size: 120% 25%;
}

.btnBleu {
  padding: 10px;
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #022B3A;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
}
.btnBleu a {
  color: #ffffff;
  text-decoration: none;
}
.btnBleu:hover {
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
}
.btnBleu:hover a {
  color: #022B3A;
  text-decoration: none;
}

.btnB {
  padding: 10px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
  font-weight: bold;
}
.btnB a {
  color: #022B3A;
  text-decoration: none;
}
.btnB:hover {
  background-color: #022B3A;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btnB:hover a {
  color: #ffffff;
  text-decoration: none;
}

.burgerIcon {
  display: none;
}

.burgerBtn {
  display: none;
  position: absolute;
  top: 20px;
  right: 50px;
  width: 35px;
}

#logoBurger {
  display: none;
}

@media screen and (max-width: 1300px) {
  .navbar {
    margin-top: 120px;
  }
  .nav-content {
    margin-top: 0;
    position: absolute;
    background-color: rgb(255, 255, 255);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: -100%;
  }
  .nav-content.mobile-menu {
    margin-left: 0;
  }
  .nav-content ul {
    display: flex;
    flex-direction: column;
  }
  .burgerBtn {
    display: block;
  }
  header ul li {
    margin: 25px 15px;
    font-size: 1.5em;
  }
  .btnN {
    padding: 8px;
    font-size: 0.8em;
  }
  .btnB {
    padding: 8px;
    font-size: 0.8em;
  }
  #logoBurger {
    display: block;
  }
  #logoNormal {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    margin-top: 205px;
  }
}
@media screen and (max-width: 467px) {
  .navbar {
    margin-top: 250px;
  }
}
@media screen and (max-width: 1300px) {
  .btnBleu {
    font-size: 18px;
  }
  .btnB {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .nav-content {
    width: 1400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1400px) {
  .nav-content {
    width: 1300px;
    margin: 0 auto;
  }
  .navbar {
    margin-top: 121px;
  }
}
.noMarginTop {
  margin-top: 0;
}

/* Code trouvé en ligne: https://www.sliderrevolution.com/resources/css-hamburger-menu/, modifié par Joshua*/
.boxBurger {
  border-radius: 2px;
  position: absolute;
  top: 20px;
  right: 50px;
  width: 35px;
  height: 35px;
}

.burgerBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  cursor: pointer;
}

.spanBurger {
  display: block;
  width: 50%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  height: 4px;
  background: #000;
  transition: all 0.3s;
  position: relative;
}

.spanBurger + .spanBurger {
  margin-top: 8px;
}

.active .spanBurger:nth-child(1) {
  animation: ease 0.7s top forwards;
}

.not-active .spanBurger:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}

.active .spanBurger:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}

.not-active .spanBurger:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}

.active .spanBurger:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}

.not-active .spanBurger:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 22px;
    transform: rotate(0);
  }
  100% {
    top: 5px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 22px;
    transform: rotate(45deg);
  }
  50% {
    top: 22px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 20px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* Fin du code en ligne burger */
/* Kenza */
/*-----------------KENZA: footer pour telephone !--------------------*/
footer {
  display: block;
  background-color: #E1E5F2;
  font-size: 16px;
  /*--------------KENZA: Styles Pour le logo du footer------------------------------*/
  /*--------------KENZA: Styles Pour le bloc partenaire du footer------------------------------*/
  /*--------------KENZA: Styles Pour le bloc réseaux sociaux du footer------------------------------*/
  /*--------------KENZA: Styles Pour le bloc des liens du footer------------------------------*/
  /*--------------KENZA: Éléments autres------------------------------*/
}
footer .svg__logo--complet {
  padding-top: 28px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 70%;
}
footer .footer__partenaire {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
footer .footer__partenaire .img__partenaire {
  margin-top: 0;
  width: 180px;
}
footer .footer__sociaux {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 28px;
}
footer .footer__sociaux .footer__link {
  margin: 10px;
}
footer .footer__group--link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
footer .footer__group--link .footer__list {
  margin-top: 28px;
  padding: 0;
}
footer .footer__group--link li {
  padding-top: 10px;
  opacity: 0.8;
}
footer .footer__group--link li:hover {
  opacity: 1;
}
footer .footer__group--link .footer__list--contact {
  width: 70%;
}
footer .footer__group--link .footer__list--info {
  width: 45%;
}
footer .footer__group--link .footer__list--flhlmq {
  width: 45%;
}
footer .footer__group--link .footer__title {
  font-size: 1.2em;
}
footer a {
  color: #2A2A2A;
  text-decoration: none;
}
footer .footer__ligne {
  padding: none;
  margin-top: 28px;
  margin-bottom: 10px;
  height: 2px;
  width: 100%;
  background-color: #2A2A2A;
  opacity: 0.2;
}
footer .footer__link {
  font-weight: 500;
  text-decoration: none;
}
footer .copyright {
  margin-top: 28px;
  text-align: center;
}
footer .footer__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 28px;
}
footer .footer__btn button {
  font-size: 1.5em;
}

/*---------------KENZA: media queries tablette---------------*/
@media screen and (min-width: 768px) {
  footer .svg__logo--complet {
    margin-left: 30px;
    width: 25%;
    display: inline-block;
    margin: none;
  }
  footer .footer__partenaire {
    position: absolute;
    right: 0;
    display: inline-block;
    width: 60%;
    margin-top: 28px;
  }
  footer .footer__partenaire .img__partenaire {
    width: 29%;
  }
  footer .footer__ligne {
    margin-top: 56px;
  }
  footer .footer__sociaux {
    width: 15%;
    display: inline-block;
    margin-left: 20px;
  }
  footer .footer__group--link {
    display: inline-block;
    width: 90%;
    text-align: left;
    margin-left: 30px;
  }
  footer .footer__group--link .footer__list--contact {
    display: inline-block;
    width: 20%;
  }
  footer .footer__group--link .footer__list--info {
    vertical-align: top;
    margin-left: 42%;
    display: inline-block;
    width: 10%;
  }
  footer .footer__group--link .footer__list--flhlmq {
    vertical-align: top;
    display: inline-block;
    margin-left: 10%;
    width: 15%;
  }
  footer .footer__group--link .footer__title {
    font-size: 1em;
  }
  footer .copyright {
    display: inline-block;
    width: 50%;
    margin-top: 28px;
    margin-bottom: 28px;
    margin-left: 30px;
    text-align: left;
  }
  footer .footer__btn {
    position: absolute;
    display: inline-block;
    right: 30px;
  }
  footer .footer__btn button {
    font-size: 1em;
  }
}
/*---------------KENZA: media queries desktop---------------*/
@media screen and (min-width: 1400px) {
  footer {
    font-size: 24px;
  }
  footer .svg__logo--complet {
    display: inline-block;
  }
  footer .footer__partenaire {
    padding-top: 22px;
    margin-right: 120px;
    margin: 0;
    width: 55%;
  }
  footer .footer__partenaire .img__partenaire {
    width: 30%;
  }
  footer .footer__group--link .footer__list--info {
    margin-left: 49%;
  }
  footer .footer__group--link .footer__list--flhlmq {
    margin-left: 5%;
  }
  footer .footer__group--link .footer__title {
    font-size: 1em;
  }
  footer .footer__btn {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  footer .copyright {
    margin-top: 50px;
  }
}
/* Victor */
/*--Ajout code message Projet étudant--*/
.msgEtudantBG {
  background-color: #2A2A2A;
  box-shadow: 0 1px 5px #2A2A2A;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.messageProjetEtudant {
  padding: 2vw 0;
  margin: 0;
  height: auto;
  background-color: #2A2A2A;
  display: grid;
  grid-template-columns: 100vw;
  grid-template-rows: 40px auto 80px;
}
.messageProjetEtudant__msg {
  padding: 0 5vw;
  text-align: center;
  align-self: center;
  color: #ffffff;
  grid-row: 2;
}
.messageProjetEtudant__btn {
  grid-row: 3;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
  font-weight: bold;
  margin: 0 2vw;
  padding: 5px 10px;
  width: 100px;
  align-self: center;
  justify-self: center;
}
.messageProjetEtudant__btn a {
  color: #022B3A;
  text-decoration: none;
}
.messageProjetEtudant__btn:hover {
  background-color: #022B3A;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.messageProjetEtudant__btn:hover a {
  color: #ffffff;
  text-decoration: none;
}
.messageProjetEtudant__btn a {
  text-decoration: none;
  color: #2A2A2A;
}
.messageProjetEtudant__btn svg {
  margin-left: 5px;
  align-self: center;
  width: 2vh;
}
.messageProjetEtudant__btn svg path {
  fill: #2A2A2A;
}
.messageProjetEtudant__btn:hover {
  background-color: #2A2A2A;
  color: #ffffff;
}
.messageProjetEtudant__btn:hover a {
  color: #ffffff;
}
.messageProjetEtudant__btn:hover svg path {
  fill: #ffffff;
}
.messageProjetEtudant__closeBtn {
  margin-right: 25px;
  justify-self: end;
  grid-row: 1;
}
.messageProjetEtudant__closeBtn svg {
  width: 24px;
  aspect-ratio: 1/1;
}
.messageProjetEtudant__closeBtn svg path {
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.messageProjetEtudant__closeBtn svg:hover path {
  stroke: #D7E0FF;
}

@media screen and (min-width: 768px) {
  .msgEtudantBG {
    min-height: 120px;
    max-height: 160px;
  }
  .messageProjetEtudant {
    max-width: 95vw;
    margin: 0 auto;
    grid-template-columns: 50% auto 5%;
    grid-template-rows: none;
  }
  .messageProjetEtudant__msg {
    padding: 0;
    text-align: left;
    grid-row: none;
  }
  .messageProjetEtudant__btn {
    grid-row: none;
    justify-self: end;
  }
  .messageProjetEtudant__closeBtn {
    grid-row: none;
  }
}
@media screen and (min-width: 1400px) {
  .msgEtudantBG {
    max-height: 200px;
  }
  .messageProjetEtudant {
    max-width: 1400px;
    max-height: 120px;
    margin: 0 auto;
    grid-template-columns: 1000px auto auto;
    grid-template-rows: auto;
  }
  .messageProjetEtudant__msg {
    grid-row: 1;
    padding: 0;
    text-align: left;
  }
  .messageProjetEtudant__btn {
    grid-row: 1;
    justify-self: end;
  }
  .messageProjetEtudant__closeBtn {
    grid-row: 1;
    margin: 0;
  }
}
.displayNone {
  display: none;
}

/*--Fin Ajout code message Projet étudant--*/
/* Kenza */
.services {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.services h2 {
  margin-top: 50px;
  text-align: center;
}
.services p {
  width: 80%;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.services .services__background {
  border-radius: 30px;
  z-index: -1;
  position: absolute;
  width: 90vw;
  height: 70%;
  background: linear-gradient(#ffffff 5%, #E1E5F2 20%);
}
.services .services__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 95%;
  min-height: 350px;
  margin-top: 20px;
}
.services .services__cards .service {
  text-decoration: none;
  margin: 20px;
  padding: 25px;
  border-radius: 25px;
  width: 70%;
  height: auto;
  background-color: #2A2A2A;
  display: grid;
  gap: 10px 0;
  color: #ffffff;
  transition-duration: 0.2s;
}
.services .services__cards .service__titre {
  font-size: 20px;
  font-weight: bold;
  grid-column: span 2;
  grid-row: 1;
  color: #ffffff;
}
.services .services__cards .service__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  width: 30px;
  aspect-ratio: 1/1;
  background-color: #E1E5F2;
  border-radius: 5px;
}
.services .services__cards .service__icon svg {
  fill: #2A2A2A;
  width: 18px;
}
.services .services__cards .service__line {
  grid-column: span 3;
  grid-row: 2;
}
.services .services__cards .service__line hr {
  height: 1px;
  color: #ffffff;
  background-color: #ffffff;
  border: none;
}
.services .services__cards .service__info {
  grid-column: span 3;
  grid-row: 3;
  margin-bottom: 25px;
}
.services .services__cards .service__btn {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0em;
  padding-right: 2em;
  border-radius: 25px;
  background-color: #D7E0FF;
  color: #2A2A2A;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
  position: relative;
  padding-left: 0.5em;
  width: 120px;
  height: 35px;
  grid-column: 1;
  grid-row: 4;
  cursor: pointer;
}
.services .services__cards .service__btn a {
  color: #2A2A2A;
  text-decoration: none;
}
.services .services__cards .service__btn:hover {
  background-color: #2A2A2A;
  color: #D7E0FF;
  border: 1px solid #D7E0FF;
}
.services .services__cards .service__btn:hover a {
  color: #D7E0FF;
  text-decoration: none;
}
.services .services__cards .service__btn .btn__fleche {
  position: absolute;
  width: 16px;
  margin-left: 5px;
}
.services .services__cards .service:hover {
  transform: translateY(-30px);
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.5);
}

/*---------------KENZA: media queries tablette---------------*/
@media screen and (min-width: 768px) {
  .services h2 {
    margin-top: 100px;
  }
  .services p {
    font-size: 22px;
  }
  .services .services__cards {
    margin-top: 50px;
  }
  .services .services__cards .service {
    width: 40%;
  }
}
/*---------------KENZA: media queries desktop---------------*/
@media screen and (min-width: 1440px) {
  .services .services__background {
    height: 50%;
  }
  .services h2 {
    margin-top: 150px;
  }
  .services p {
    font-size: 36px;
  }
  .services .services__cards .service {
    width: 20%;
  }
}
/* Kenza avec l'aide de Victor */
.temoignages {
  /*Victor*/
  /*display: grid;
    grid-template-areas:
  "svg svg svg"
  "titre titre titre"
  "margeTem margeTem margeTem";*/
  /*fin Victor*/
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 150vh;
  max-height: 170vh;
  background: linear-gradient(#ffffff, #2A2A2A 1%, #2A2A2A 50%, #ffffff 100%);
}
.temoignages svg {
  position: absolute;
  top: 0;
  grid-area: svg;
  width: 100%;
  overflow-x: hidden;
}
.temoignages svg path {
  width: 110%;
}
.temoignages__titre {
  text-align: center;
  grid-area: titre;
  margin-top: 50px;
  color: #E1E5F2;
}
.temoignages .temoignage--un {
  grid-area: myArea1;
}
.temoignages .temoignage--deux {
  grid-area: myArea2;
}
.temoignages .temoignage--trois {
  grid-area: myArea3;
}
.temoignages .marge__tem {
  display: grid;
  grid-template-areas: "myArea1 myArea1 myArea1" "myArea2 myArea2 myArea2" "myArea3 myArea3 myArea3";
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.temoignages .marge__tem .temoignage {
  color: #ffffff;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 50px;
}
.temoignages .marge__tem .temoignage:nth-of-type() {
  background-color: #E1E5F2;
}
.temoignages .marge__tem .temoignage:nth-of-type(1) .tem__img {
  background-image: url("./medias/img/accueil_temoin_01.jpg");
}
.temoignages .marge__tem .temoignage:nth-of-type(2) .tem__img {
  background-image: url("./medias/img/accueil_temoin_02.jpg");
}
.temoignages .marge__tem .temoignage:nth-of-type(3) .tem__img {
  background-image: url("./medias/img/accueil_temoin_03.jpg");
}
.temoignages .marge__tem .temoignage__titre {
  grid-column: span 4;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
.temoignages .marge__tem .temoignage__titre p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 20px;
}
.temoignages .marge__tem .temoignage div.tem.cat {
  background-color: #D7E0FF;
}
.temoignages .marge__tem .temoignage .tem {
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 25px #000;
  border-radius: 0 25px 25px 25px;
  height: 20vh;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  color: #2A2A2A;
  display: grid;
  grid-template-rows: 20vh;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.temoignages .marge__tem .temoignage .tem__img {
  grid-column: 1;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
  height: 100%;
  width: 90%;
}
.temoignages .marge__tem .temoignage .tem__info {
  padding-left: 0;
  padding-right: 10px;
  width: 100%;
  font-style: italic;
  font-size: 14px;
  align-self: center;
  grid-column: 2/span 4;
}

@media screen and (min-width: 768px) {
  .temoignages {
    grid-template-areas: "svg svg svg" "titre titre titre";
  }
  .temoignages .marge__tem {
    width: 90%;
    grid-template-areas: "myArea1 myArea1 myArea1" "myArea2 myArea2 myArea2" "myArea3 myArea3 myArea3";
  }
  .temoignages .marge__tem .temoignage .tem__info {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .temoignages {
    grid-template-areas: "svg svg svg" "titre titre titre";
  }
  .temoignages .marge__tem {
    grid-template-areas: "myArea1 myArea1 ." ". myArea2 myArea2" "myArea3 myArea3 .";
  }
  .temoignages .marge__tem .temoignage .tem__img {
    background-position-y: 50%;
  }
  .temoignages .marge__tem .temoignage .tem__info {
    font-size: 24px;
  }
}
/* Victor */
.hero.marginNoMsg {
  margin-top: 10vh;
}

.hero {
  margin-top: 300px;
  width: 100%;
  padding: 0 20px;
  height: auto;
}
.hero__container {
  padding: 0 10px;
  margin: auto;
  height: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 100%;
}
.hero__container .info {
  font-family: "Raleway";
  padding: 25px;
  text-align: center;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto;
}
.hero__container .info__nomEntreprise {
  margin: 5vh 0;
  font-size: 20px;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
}
.hero__container .info__msgEntreprise {
  grid-row: 2;
  grid-column: 1;
  align-self: center;
  font-size: 64px;
}
.hero__container .info__msgEntreprise em {
  white-space: nowrap;
  font-style: normal;
  font-size: 100px;
  background-image: url(./medias/img/hero_background_svg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-family: "JustMe";
}
.hero__container .info__msgEntreprise em strong {
  font-weight: normal;
  font-family: "JustMe";
  color: #1F7A8C;
}
.hero__container .info__btn {
  width: 250px;
  margin: 2vh 0 0 0;
  align-self: center;
  font-size: 24px;
  padding: 1vh 3vw;
}
.hero__container .info__btn--un {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #2A2A2A;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0);
  font-weight: bold;
  justify-self: center;
  grid-row: 3;
}
.hero__container .info__btn--un a {
  color: #ffffff;
  text-decoration: none;
}
.hero__container .info__btn--un:hover {
  background-color: #ffffff;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.hero__container .info__btn--un:hover a {
  color: #022B3A;
  text-decoration: none;
}
.hero__container .info__btn--deux {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
  font-weight: bold;
  justify-self: center;
  grid-row: 4;
}
.hero__container .info__btn--deux a {
  color: #022B3A;
  text-decoration: none;
}
.hero__container .info__btn--deux:hover {
  background-color: #022B3A;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.hero__container .info__btn--deux:hover a {
  color: #ffffff;
  text-decoration: none;
}
.hero__container .info__btn--deux svg {
  margin-left: 10px;
  width: 25px;
}
.hero__container .info__btn--deux svg path {
  fill: #022B3A;
}
.hero__container .info__btn--deux:hover svg path {
  fill: #ffffff;
}
.hero__container .hero_swiper {
  z-index: 2;
  margin: 5vh 0;
  justify-self: center;
  width: 80%;
  aspect-ratio: 3/4;
  grid-column: 1;
  grid-row: 2;
}
.hero__container .hero_swiper .swiper-pagination {
  bottom: -2px;
  position: absolute;
}
.hero__container .hero_swiper .swiper-slide__img {
  width: 100%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 25px;
}

@media screen and (max-width: 450px) {
  .hero__container .info__msgEntreprise em {
    white-space: wrap;
  }
}
@media screen and (min-width: 768px) {
  .hero.marginNoMsg {
    margin-top: 6vh;
  }
  .hero {
    margin-top: 200px;
  }
  .hero__container .info {
    grid-template-rows: auto auto auto;
  }
  .hero__container .info__nomEntreprise {
    margin: 5vh 0;
    font-size: 24px;
    grid-column: span 2;
  }
  .hero__container .info__msgEntreprise {
    font-size: 70px;
    grid-column: span 2;
  }
  .hero__container .info__btn {
    grid-row: 4;
  }
  .hero__container .info__btn--un {
    margin-right: 2vw;
    grid-column: 1;
    justify-self: end;
  }
  .hero__container .info__btn--deux {
    justify-self: start;
    grid-column: 2;
  }
  .hero__container .swiper {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .hero.marginNoMsg {
    margin-top: 6vh;
  }
  .hero {
    margin-top: 150px;
  }
  .hero__container {
    grid-template-columns: 60% 40%;
  }
  .hero__container .info {
    text-align: left;
    grid-column: 1;
    grid-row: 1;
    grid-template-rows: none;
  }
  .hero__container .info__nomEntreprise {
    margin: 5vh 0;
    width: 90%;
    font-size: 24px;
    align-self: end;
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .hero__container .info__msgEntreprise {
    font-size: 70px;
    align-self: center;
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .hero__container .info__btn {
    grid-row: 4;
  }
  .hero__container .info__btn--un {
    justify-self: start;
  }
  .hero__container .info__btn--deux {
    justify-self: start;
    margin-right: 120px;
  }
  .hero__container .swiper {
    width: 100%;
    aspect-ratio: 3/5;
    align-self: center;
    grid-column: 2;
    grid-row: 1;
  }
}
/* Victor */
.actualites {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  height: 80vh;
  position: relative;
}
.actualites__titre {
  width: 100%;
  justify-self: center;
  color: #022B3A;
}

.swiper-nav {
  height: 5vh;
  position: relative;
  width: 100%;
  top: -8vh;
  margin: auto;
  display: flex;
  justify-content: end;
}
.swiper-nav button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  z-index: 10;
}
.swiper-nav svg {
  width: 40px;
  margin: 0 10px;
}
.swiper-nav svg path {
  fill: #022B3A;
}
.swiper-nav svg:hover path {
  fill: #1F7A8C;
}
.swiper-nav .btn-prev svg {
  transform: rotateY(-180deg);
}

.swiper {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  align-self: center;
  height: 60vh;
}
.swiper .swiper-slide {
  overflow-x: hidden;
  justify-content: center;
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
}
.swiper .swiper-slide--nouv1 .actualite__img {
  background-image: url("./medias/img/accueil_carte_01.jpg");
}
.swiper .swiper-slide--nouv2 .actualite__img {
  background-image: url("./medias/img/accueil_carte_01.jpg");
}
.swiper .swiper-slide--nouv3 .actualite__img {
  background-image: url("./medias/img/accueil_carte_02.jpg");
}
.swiper .swiper-slide--nouv4 .actualite__img {
  background-image: url("./medias/img/accueil_carte_03.jpg");
}

.actualite {
  font-family: "Raleway";
  width: 400px;
  padding: 0 20px;
  max-width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 20px 80px auto auto;
}
.actualite__date {
  margin-bottom: 20px;
  color: #022B3A;
  font-weight: 600;
  grid-row: 1;
  height: 100%;
}
.actualite__desc {
  font-size: 20px;
  grid-row: 2;
  padding: 10px 0;
}
.actualite__desc p {
  display: inline;
  line-height: 20px;
}
.actualite__desc p a {
  color: #2A2A2A;
  text-decoration: none;
}
.actualite__desc:hover p {
  background-color: #E1E5F2;
}
.actualite__img {
  position: relative;
  grid-row: 3/6;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.actualite__btn {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #022B3A;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
  margin-top: 10px;
  grid-row: 6;
  width: 100px;
  max-height: 40px;
}
.actualite__btn a {
  color: #ffffff;
  text-decoration: none;
}
.actualite__btn:hover {
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
}
.actualite__btn:hover a {
  color: #022B3A;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .swiper-nav {
    top: 0;
  }
  .swiper {
    height: 70%;
  }
  .actualite {
    width: 500px;
    grid-template-rows: minmax(20px, 40px) 100px minmax(200px, auto) auto;
  }
  .actualite__date {
    font-size: 20px;
  }
  .actualite__desc {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .actualites {
    height: auto;
    min-height: 60vh;
    position: relative;
  }
  .swiper-nav {
    top: 2vh;
    height: 10vh;
  }
  .swiper {
    height: 70%;
    overflow-x: hidden;
  }
  .actualite {
    grid-template-rows: minmax(20px, 40px) 100px minmax(200px, auto) auto;
  }
  .actualite__date {
    font-size: 20px;
  }
  .actualite__desc {
    font-size: 26px;
  }
}
@media screen and (max-height: 850px) {
  .actualites {
    margin-bottom: 10vh;
  }
}
/* Victor */
.membre {
  width: 100%;
  height: 100vh;
  max-height: 120vh;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.membre .appelAction {
  z-index: -1;
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  background-image: url(./medias/img/accueil_devenir_membre_montreal.jpg);
  width: 90%;
  height: 600px;
  background-size: 250%;
  background-position: center;
  border-radius: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Raleway";
}
.membre .appelAction--over {
  position: absolute;
  z-index: 1;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 600px;
  pointer-events: none;
}
.membre .appelAction__svgLine {
  position: absolute;
  bottom: -13vh;
  right: 10px;
}
.membre .appelAction__svgLine svg {
  width: 25px;
}
.membre .appelAction__titre {
  text-shadow: 2px 2px 5px rgb(12, 47, 54);
  font-size: 48px;
  margin-bottom: 25px;
}
.membre .appelAction__text {
  text-shadow: 2px 2px 2px rgb(12, 47, 54);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  color: #ffffff;
}
.membre .appelAction__btn {
  position: absolute;
  top: 60%;
  bottom: 0;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
  font-weight: bold;
  font-size: 2em;
  padding-top: 12px;
  height: 2em;
  border-radius: 100px;
}
.membre .appelAction__btn a {
  color: #022B3A;
  text-decoration: none;
}
.membre .appelAction__btn:hover {
  background-color: #022B3A;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.membre .appelAction__btn:hover a {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .membre .appelAction {
    background-size: 180%;
  }
}
@media screen and (min-width: 1200px) {
  .membre .appelAction {
    width: 100%;
    background-size: 180%;
  }
}
/* Joshua */
.apropos {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("./medias/img/accueil_a_propos.png");
  background-size: cover;
}
.apropos__text {
  color: white;
  font-size: 6vw;
  text-align: center;
  line-height: 20px;
  margin-bottom: 5px;
}
.apropos__content {
  z-index: 2;
  margin: 0 auto;
  width: 1400px;
}
.apropos__vector {
  position: absolute;
  width: 60vw;
  z-index: 1;
}
.apropos__btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}
.apropos__desc {
  width: 70%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 27%;
  font-size: 2vw;
  text-align: center;
  color: white;
  text-shadow: 4px 4px 10px rgb(0, 0, 0);
  font-weight: 500;
}

.btnBs {
  font-size: 2.5vmin;
  text-align: center;
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 50px;
  background-color: #ffffff;
  color: #1F7A8C;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
}
.btnBs a {
  color: #1F7A8C;
  text-decoration: none;
}
.btnBs:hover {
  background-color: #1F7A8C;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btnBs:hover a {
  color: #ffffff;
  text-decoration: none;
}

/* Joshua */
.recherchebar {
  width: 100%;
  background-color: #E1E5F2;
  padding: 50px;
}
.recherchebar__text {
  text-align: center;
  font-size: 1.5em;
}
.recherchebar__content {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 15px;
}

.search {
  --padding: 0.2vw;
  justify-self: end;
  width: 100%;
  display: flex;
  align-items: center;
  padding: var(--padding);
  border-radius: 28px;
  background-color: white;
}

.search-input {
  font-size: 3.5vw;
  margin-left: var(--padding);
  outline: none;
  border: none;
  background: transparent;
  width: 100%;
}

.search span {
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .recherchebar__content {
    grid-template-columns: 1fr 2fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .search {
    width: 45vw;
    justify-self: end;
    max-width: 700px;
  }
  .search-input {
    font-size: 16px;
    width: 45vw;
    max-width: 700px;
  }
}
@media screen and (min-width: 1400px) {
  .recherchebar__content {
    width: 1400px;
    margin: 0 auto;
  }
  .search {
    width: 45vw;
    justify-self: end;
    max-width: 700px;
  }
  .search-input {
    font-size: 16px;
    width: 45vw;
    max-width: 700px;
  }
}
/* Joshua */
.abonnement {
  width: 100%;
  padding: 50px 0;
}

.membership {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
}
.membership__form {
  width: 25vmin;
  display: flex;
  align-items: center;
  background-color: white;
  margin-right: 10px;
}
.membership__input {
  font-size: 16px;
  margin-left: var(--padding);
  outline: none;
  border-radius: 28px;
  background: transparent;
  width: 25vmin;
  padding: 1.3vmin;
  border: 1px solid #2A2A2A;
}
.membership__text {
  color: black;
  font-size: 32px;
  grid-column: span 2;
  text-align: center;
  margin-bottom: 10px;
}
.membership__btn {
  justify-self: center;
  font-size: 18px;
  padding: 1.3vmin;
}
.membership__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .membership__content {
    flex-direction: column;
  }
  .membership__form {
    width: 40vmin;
    margin: 10px 0px;
  }
  .membership__input {
    width: 40vmin;
  }
  .membership__btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .membership__form {
    width: 75vmin;
  }
  .membership__text {
    font-size: 4vw;
  }
  .membership__input {
    width: 75vmin;
    padding: 1.5vmin;
  }
  .membership__btn {
    font-size: 18px;
  }
}
.participations {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

.participations__alignement {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.participation {
  text-decoration: none;
  color: #2A2A2A;
  margin: 10px;
  overflow: hidden;
  position: relative;
  padding: 25px;
  border-radius: 25px;
  width: 90%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: grid;
  gap: 10px 0;
}
.participation:nth-of-type(1) {
  background-image: url("medias/img/services_participation_1.jpg");
}
.participation:nth-of-type(2) {
  background-image: url("medias/img/services_participation_2.jpg");
}
.participation:nth-of-type(3) {
  background-image: url("medias/img/services_participation_3.jpg");
}
.participation__bg--color {
  left: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 150%;
  background-color: #D7E0FF;
  transition: 0.5s;
}
.participation:hover .participation__bg--color {
  transition: 0.5s;
  opacity: 0.85;
}
.participation:hover .participation__titre {
  color: #2A2A2A;
}
.participation:hover .participation__icon {
  opacity: 1;
}
.participation:hover .participation__line {
  opacity: 1;
}
.participation:hover .participation__info {
  opacity: 1;
}
.participation:hover .participation__btn {
  opacity: 1;
}
.participation__titre {
  color: white;
  z-index: 2;
  font-size: 24px;
  font-weight: bold;
  grid-column: span 2;
  grid-row: 1;
}
.participation__icon {
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  width: 30px;
  aspect-ratio: 1/1;
  background-color: #2A2A2A;
  border-radius: 5px;
}
.participation__icon svg {
  fill: #E1E5F2;
  width: 18px;
}
.participation__line {
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  grid-column: span 3;
  grid-row: 2;
}
.participation__line hr {
  height: 1px;
  color: #2A2A2A;
  background-color: #2A2A2A;
  border: none;
}
.participation__info {
  font-size: 20px;
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  grid-column: span 3;
  grid-row: 3;
  margin-bottom: 25px;
}
.participation__btn {
  cursor: pointer;
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0em;
  padding-right: 2em;
  border-radius: 25px;
  background-color: #2A2A2A;
  color: #D7E0FF;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
  position: relative;
  padding-left: 0.5em;
  width: 120px;
  height: 35px;
  grid-column: 1;
  grid-row: 4;
}
.participation__btn a {
  color: #D7E0FF;
  text-decoration: none;
}
.participation__btn:hover {
  background-color: #D7E0FF;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.participation__btn:hover a {
  color: #2A2A2A;
  text-decoration: none;
}
.participation__btn .btn__fleche {
  position: absolute;
  width: 16px;
  margin-left: 5px;
}

.swiper-nav {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.positionSwiper {
  display: flex;
  justify-content: end;
}

.swiperPubli {
  max-width: 100%;
  margin: 0;
  height: 500px;
  margin-bottom: 100px;
}
.swiperPubli .swiper-slide {
  height: auto;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.swiperPubli .swiper-slide a {
  position: relative;
  min-width: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.swiperPubli .swiper-slide a .publication {
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  width: 90%;
  height: 450px;
  padding: 20px;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.swiperPubli .swiper-slide a .publication__bg--color {
  left: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 150%;
  background-color: #1F7A8C;
  transition: 0.5s;
}
.swiperPubli .swiper-slide a .publication__titre {
  color: #ffffff;
  z-index: 2;
  font-size: 19px;
  font-weight: bold;
}
.swiperPubli .swiper-slide a .publication__line {
  margin-top: 10px;
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  width: 100%;
}
.swiperPubli .swiper-slide a .publication__line hr {
  height: 1px;
  color: #ffffff;
  background-color: #ffffff;
  border: none;
}
.swiperPubli .swiper-slide a .publication__info {
  display: flex;
  align-items: center;
  min-height: 200px;
  max-height: 250px;
  margin-top: 10px;
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  color: #ffffff;
  font-weight: 500;
}
.swiperPubli .swiper-slide a .publication__btn {
  cursor: pointer;
  justify-self: end;
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0em;
  padding-right: 2em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #1F7A8C;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
  position: relative;
  padding-left: 0.5em;
  width: 120px;
  height: 35px;
}
.swiperPubli .swiper-slide a .publication__btn a {
  color: #1F7A8C;
  text-decoration: none;
}
.swiperPubli .swiper-slide a .publication__btn:hover {
  background-color: #1F7A8C;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.swiperPubli .swiper-slide a .publication__btn:hover a {
  color: #ffffff;
  text-decoration: none;
}
.swiperPubli .swiper-slide a .publication__btn .btn__fleche {
  position: absolute;
  width: 16px;
  margin-left: 5px;
}
.swiperPubli .swiper-slide a .publication:hover .publication__bg--color {
  transition: 0.5s;
  opacity: 0.8;
}
.swiperPubli .swiper-slide a .publication:hover .publication__titre {
  color: white;
}
.swiperPubli .swiper-slide a .publication:hover .publication__icon {
  opacity: 1;
}
.swiperPubli .swiper-slide a .publication:hover .publication__line {
  opacity: 1;
}
.swiperPubli .swiper-slide a .publication:hover .publication__info {
  opacity: 1;
}
.swiperPubli .swiper-slide a .publication:hover .publication__btn {
  opacity: 1;
}
.swiperPubli .swiper-slide--1 .publication {
  background-image: url("medias/img/services_publications_1.jpg");
}
.swiperPubli .swiper-slide--2 .publication {
  background-image: url("medias/img/services_publications_2.jpg");
}
.swiperPubli .swiper-slide--3 .publication {
  background-image: url("medias/img/services_publications_3.jpg");
}
.swiperPubli .swiper-slide--4 .publication {
  background-image: url("medias/img/services_publications_4.jpg");
}
.swiperPubli .swiper-slide--5 .publication {
  background-image: url("medias/img/services_publications_5.jpg");
}
.swiperPubli .swiper-slide--6 .publication {
  background-image: url("medias/img/services_publications_6.jpg");
}

.section__droits .link__droits {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}
.section__droits .link__droits a {
  color: #1F7A8C;
  font-weight: 600;
  font-size: 1.5em;
  transition: 0.5s;
}
.section__droits .link__droits a:hover {
  color: #2A2A2A;
}

.droits {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.droit {
  text-decoration: none;
  color: #2A2A2A;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: none;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  line-height: 30px;
}
.droit:nth-of-type(1) .droit__img {
  background-image: url("medias/img/services_participation_1.jpg");
}
.droit:nth-of-type(2) .droit__img {
  background-image: url("medias/img/services_participation_2.jpg");
}
.droit:nth-of-type(3) .droit__img {
  background-image: url("medias/img/services_participation_3.jpg");
}
.droit__titre {
  font-size: 1.5em;
  padding: 5px 0;
  color: #022B3A;
  font-weight: 500;
}
.droit__titre p {
  line-height: 30px;
}
.droit__titre p .surligne__droits {
  transition: 0.25s;
}
.droit__titre p .surligne__droits:hover {
  background-color: #E1E5F2;
}
.droit__desc {
  position: relative;
  height: 30%;
  padding: 10px 0;
  font-size: 1em;
}
.droit__img {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  max-height: 80%;
  border-radius: 25px;
}

/*Section hero*/
.servicesHub.marginNoMsg {
  margin-top: 10vh;
}

.servicesHub {
  margin-bottom: 100px;
  margin-top: 100px;
}
.servicesHub__titre {
  text-align: center;
  margin-top: 200px;
  font-size: 64px;
  margin-bottom: 69px;
  color: #022B3A;
  font-weight: 500;
}
.servicesHub__hero {
  margin-bottom: 52px;
  width: 100%;
  height: 80vh;
  background-image: url("medias/img/services_hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.servicesHub__hero--topLayer {
  width: 100%;
  height: 100%;
  z-index: 30;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 20%, #022B3A 150%);
}

.section__services {
  position: relative;
  width: 100%;
}

.servicesHub__text {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 50px;
}

.servicesHub__sousTitre {
  font-weight: 600;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.servicesHub__linktree--link {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  font-size: 1.5em;
  font-weight: 500;
}
.servicesHub__linktree--link a {
  color: #2A2A2A;
  transition: 0.5s;
}
.servicesHub__linktree--link a:hover {
  color: #1F7A8C;
}

/*Media queries*/
@media screen and (min-width: 768px) {
  .participations__alignement {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
  }
  .participation {
    width: 40%;
  }
  .swiperPubli .swiper-slide a .publication {
    width: 100%;
  }
  .droit {
    padding: 0 10px;
    width: 50%;
    justify-self: start;
  }
}
@media screen and (min-width: 1440px) {
  .participation {
    width: 25%;
  }
  .droit {
    width: 33%;
  }
  .servicesHub__sousTitre {
    width: 100%;
  }
  .servicesHub__text {
    width: 100%;
  }
}
/* Joshua */
.contact {
  margin-top: 10vh;
  min-height: 50vh;
  text-align: center;
  padding: 50px;
}
.contact__container {
  padding: 100px;
  background-color: #D7E0FF;
  border-radius: 25px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact__container h2 {
  margin-bottom: 40px;
}
.contact__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.contact__form {
  text-align: left;
}
.contact__form h3 {
  margin-bottom: 20px;
}
.contact__btn {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #2A2A2A;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0);
  font-weight: bold;
  display: inline-block;
}
.contact__btn a {
  color: #ffffff;
  text-decoration: none;
}
.contact__btn:hover {
  background-color: #ffffff;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.contact__btn:hover a {
  color: #022B3A;
  text-decoration: none;
}
.contact__info {
  text-align: left;
}
.contact__info h3 {
  margin-bottom: 20px;
}
.contact__info p {
  margin-bottom: 10px;
}
.contact__info i {
  margin-right: 10px;
}
.contact__title {
  font-weight: 500;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #bbb;
}

@media screen and (max-width: 768px) {
  .contact__container {
    padding: 20px;
  }
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}
/* Victor */
.titre {
  text-align: center;
  font-size: 64px;
}

.hero.equipe {
  margin-top: 230px;
}

.hero {
  width: 100%;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
.hero__titre {
  margin: 5vh auto;
  text-align: center;
  margin-top: 100px;
  font-size: 64px;
  margin-bottom: 69px;
  color: #022B3A;
  font-weight: 500;
  max-width: 1400px;
}
.hero__img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0;
  z-index: -1;
  position: relative;
}
.hero__bgHero {
  width: auto;
  height: 80vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 20%, #022B3A 150%);
  background-size: cover;
}
.hero__page {
  max-width: 1400px;
  width: 100%;
  margin: 5vh auto;
  margin-bottom: 10vh;
  font-size: 1.5em;
  font-weight: 500;
}
.hero__page a {
  transition-duration: 0.2s;
  color: #022B3A;
}
.hero__page a:hover {
  color: #1F7A8C;
}

.equipeConteneur {
  width: 95%;
  max-width: 1400px;
  margin: 100px auto;
  display: grid;
  text-align: center;
  grid-template-columns: repeat(auto-fill, minmax(300px, auto));
  grid-template-rows: repeat(auto-fill, minmax(600px, auto));
  -moz-column-gap: 1.5vw;
       column-gap: 1.5vw;
  row-gap: 5vh;
}
.equipeConteneur .membreEquipe {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.equipeConteneur .membreEquipe__img {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
  transition-duration: 0.2s;
  margin-bottom: 20px;
}
.equipeConteneur .membreEquipe__img:hover {
  transform: translateY(-0.5em);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.equipeConteneur .membreEquipe__nom {
  font-size: 32px;
  color: #000;
  text-transform: uppercase;
}
.equipeConteneur .membreEquipe__poste {
  font-size: 20px;
}

.modalMembreEquipe {
  z-index: 2000;
  display: none;
  padding: 2vw;
  border-radius: 50px;
  position: fixed;
  width: 80%;
  height: 80%;
  max-width: 1200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #022B3A;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: #fff;
}
.modalMembreEquipe::after {
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}
.modalMembreEquipe__btnFermer {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #2A2A2A;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0);
  font-weight: bold;
  cursor: pointer;
  align-self: end;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition-duration: 0.2s;
  padding: 15px;
  font-size: 20px;
  border: 1px solid #fff;
}
.modalMembreEquipe__btnFermer a {
  color: #ffffff;
  text-decoration: none;
}
.modalMembreEquipe__btnFermer:hover {
  background-color: #ffffff;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.modalMembreEquipe__btnFermer:hover a {
  color: #022B3A;
  text-decoration: none;
}
.modalMembreEquipe__img {
  justify-self: center;
  width: 35vh;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
}
.modalMembreEquipe__nom {
  font-size: 32px;
  text-transform: uppercase;
}
.modalMembreEquipe__poste {
  font-size: 24px;
  text-align: center;
}
.modalMembreEquipe p {
  width: 80%;
  text-align: center;
}

.modalVisible {
  display: flex;
}

@media screen and (max-width: 1400px) {
  .hero__page {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .hero.equipe {
    margin-top: 300px;
  }
  .hero.equipe.marginNoMsg {
    margin-top: 10vh;
  }
  .equipeConteneur {
    grid-template-columns: repeat(auto-fill, minmax(180px, auto));
    grid-template-rows: repeat(auto-fill, minmax(250px, auto));
  }
  .modalMembreEquipe {
    padding: 20px;
  }
  .modalMembreEquipe__img {
    width: 70%;
  }
  .modalMembreEquipe p {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .hero.equipe.marginNoMsg {
    margin-top: 12vh;
  }
}
@media screen and (min-width: 1200px) {
  .hero.equipe.marginNoMsg {
    margin-top: 15vh;
  }
}
/* Joshua */
.article {
  min-height: 100vh;
  margin: 0 auto;
  width: 1400px;
  font-size: 18px;
}
.article__content {
  margin-bottom: 100px;
}
.article__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: space-between;
}
.article__buttons :nth-child(2) {
  text-align: right;
}
.article__page {
  max-width: 1400px;
  width: 100%;
  margin: 5vh auto;
  margin-bottom: 10vh;
  font-size: 1.5em;
  font-weight: 500;
}
.article__page a {
  transition-duration: 0.2s;
  color: #022B3A;
}
.article__page a:hover {
  color: #1F7A8C;
}
.article__img {
  width: 100vw;
  height: 500px;
  background-image: url("../medias/img/petition_hlm.png");
  background-size: cover;
}
.article__preview {
  width: 100%;
  height: 30vh;
  background-color: red;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article__info {
  width: 100%;
  display: grid;
  justify-content: space-around;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0;
}
.article__tag {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #022B3A;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
}
.article__tag a {
  color: #ffffff;
  text-decoration: none;
}
.article__tag:hover {
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
}
.article__tag:hover a {
  color: #022B3A;
  text-decoration: none;
}
.article__time {
  text-align: right;
}
.article__img {
  width: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__content p, .article__content h3, .article__content cite, .article__content cite::after {
  margin-bottom: 2vw;
}
.article__link {
  text-decoration: none;
  color: #1F7A8C;
  transition-duration: 0.2s;
}
.article__link:hover {
  color: #022B3A;
}

.preview-title {
  max-width: 1400px;
  margin: auto;
}

.alt {
  color: #1F7A8C;
}

cite {
  position: relative;
  margin-left: 10px;
}
cite::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: -10px;
  top: 0;
  background-color: black;
}

@media screen and (max-width: 1400px) {
  .article {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .article__info {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .article__time {
    text-align: center;
  }
}
.noMorePadding {
  margin: 0 !important;
  width: 100% !important;
}

/* Victor */
/* Animation code original trouvé en ligne modifié: https://codepen.io/carolineartz/pen/rNaGQYo */
.pageErrorContainer {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20vh 0;
}

#move {
  z-index: 4000;
  background-color: rgba(0, 0, 0, 0);
  background-position: center;
  background-size: 120%;
  height: 2vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transform: translate(-50%, -20%);
  position: absolute;
}

.underMove {
  will-change: transform;
  position: absolute;
  border-radius: 50%;
}
.underMove .cirle-1 {
  animation-name: pointerAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  position: absolute;
  border-radius: 50%;
  background-color: #E1E5F2;
  width: 70vmin;
  height: 70vmin;
  margin: -35vmin 0 0 -35vmin;
}
.underMove .cirle-2 {
  animation-name: pointerAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  position: absolute;
  border-radius: 50%;
  background-color: #D7E0FF;
  width: 75vmin;
  height: 75vmin;
  margin: -37.5vmin 0 0 -37.5vmin;
}
.underMove .cirle-3 {
  animation-name: pointerAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  position: absolute;
  border-radius: 50%;
  background-color: #1F7A8C;
  width: 80vmin;
  height: 80vmin;
  margin: -40vmin 0 0 -40vmin;
}
.underMove .cirle-4 {
  animation-name: pointerAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: alternate;
  position: absolute;
  border-radius: 50%;
  background-color: #022B3A;
  width: 85vmin;
  height: 85vmin;
  margin: -42.5vmin 0 0 -42.5vmin;
}

.errorPage {
  z-index: 100;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
  background: #1F7A8C;
  width: 100%;
  height: 100%;
}
.errorPage div.textPageErreur {
  line-height: 55vmin;
  font-weight: 900;
  margin: 0;
  font-size: 55vmin;
  color: #2A2A2A;
}
.errorPage .text {
  text-align: center;
  color: #fff;
  margin: 2vh 0;
  font-size: 24px;
}
.errorPage button {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
  font-weight: bold;
  font-size: 24px;
}
.errorPage button a {
  color: #022B3A;
  text-decoration: none;
}
.errorPage button:hover {
  background-color: #022B3A;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.errorPage button:hover a {
  color: #ffffff;
  text-decoration: none;
}

@keyframes pointerAnimation {
  0% {
    border: 20px solid #022B3A;
    box-shadow: 0 0 10vw #022B3A;
    tansform: size(1);
  }
  90% {
    border: 0 solid #022B3A;
    tansform: size(0.8);
  }
  100% {
    border: 0 solid #022B3A;
    tansform: size(0.8);
  }
}
@media screen and (max-width: 768px) {
  .underMove .cirle-1 {
    animation-name: pointerAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    position: absolute;
    border-radius: 50%;
    background-color: #E1E5F2;
    width: 55vw;
    height: 55vw;
    margin: -27.5vw 0 0 -27.5vw;
  }
  .underMove .cirle-2 {
    animation-name: pointerAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    position: absolute;
    border-radius: 50%;
    background-color: #D7E0FF;
    width: 60vw;
    height: 60vw;
    margin: -30vw 0 0 -30vw;
  }
  .underMove .cirle-3 {
    animation-name: pointerAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    position: absolute;
    border-radius: 50%;
    background-color: #1F7A8C;
    width: 65vw;
    height: 65vw;
    margin: -32.5vw 0 0 -32.5vw;
  }
  .underMove .cirle-4 {
    animation-name: pointerAnimation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
    position: absolute;
    border-radius: 50%;
    background-color: #022B3A;
    width: 70vw;
    height: 70vw;
    margin: -35vw 0 0 -35vw;
  }
  .errorPage div.textPageErreur {
    line-height: 55vw;
    font-size: 55vw;
  }
  .errorPage .text {
    font-size: 24px;
  }
  .errorPage button {
    font-size: 24px;
    border-radius: 50px;
  }
}
.surligne {
  background-color: #E1E5F2;
  font-weight: 600;
  color: #1F7A8C;
}

.bold__font {
  font-family: "JustMe";
  font-size: 55px;
  color: #ffffff;
  line-height: 10px;
}

.about {
  margin-bottom: 100px;
  margin-top: 100px;
}
.about__titre {
  text-align: center;
  margin-top: 200px;
  font-size: 64px;
  margin-bottom: 69px;
  color: #022B3A;
  font-weight: 500;
}
.about__hero {
  margin-bottom: 52px;
  width: 100%;
  height: 80vh;
  background-image: url("medias/img/hero_a_propos.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about__hero--topLayer {
  width: 100%;
  height: 100%;
  z-index: 30;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 20%, #022B3A 150%);
}

.section__about {
  position: relative;
  width: 100%;
}

.about__linktree--link {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  font-size: 1.5em;
  font-weight: 500;
}
.about__linktree--link a {
  color: #2A2A2A;
  transition: 0.5s;
}
.about__linktree--link a:hover {
  color: #1F7A8C;
}

.intro {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.intro__alignement {
  width: 95%;
  margin-bottom: 100px;
  border: 2px solid #E1E5F2;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  height: 100%;
  row-gap: 2em;
  box-shadow: 0 0 30px 3px #E1E5F2;
  background-color: #ffffff;
}
.intro__alignement--img {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  grid-row: 2/3;
}
.intro__alignement--img img {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__alignement--titre {
  color: #2A2A2A;
  font-weight: 600;
  text-align: center;
}
.intro__alignement--text {
  line-height: 30px;
  text-align: left;
  font-size: 18px;
}

/*---Mission---*/
.mission__alignement--titre {
  font-weight: 600;
  margin-bottom: 0px;
}

.mission {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 150px;
  margin-top: 100px;
}
.mission .mission__grid {
  display: grid;
  margin-top: 30px;
  font-size: 18px;
}
.mission .mission__grid hr {
  border-top: 2px solid #1F7A8C;
}
.mission .mission__grid .card {
  row-gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
}
.mission .mission__grid .card__column {
  vertical-align: middle;
}
.mission .mission__grid .card__column h3 {
  margin-right: 20px;
  display: inline;
  color: #1F7A8C;
}
.mission .mission__grid .card__column svg {
  height: 37px;
}
.mission .mission__grid .card__column .svg__arrow {
  height: 20px;
  transform: rotate(-15deg);
}
.mission .mission__grid .card p.card__text {
  padding-top: 5px;
}

/*---groupes---*/
.groupes {
  width: 100%;
  background-color: #2A2A2A;
  padding-top: 50px;
  padding-bottom: 100px;
  color: #D7E0FF;
}
.groupes__alignement {
  width: 90%;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  margin-top: 50px;
  font-size: 1.5em;
}
.groupes__alignement .groupes__grid {
  display: grid;
}
.groupes__alignement .groupes__grid h2 {
  font-weight: 600;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
}
.groupes__alignement .groupes__grid .groupes__text {
  margin-top: 50px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .mission .mission__grid .card {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
  .mission .mission__grid .card__column svg {
    height: 47px;
  }
  .mission .mission__grid .card__column .svg__arrow {
    height: 30px;
  }
  .groupes__alignement .groupes__grid {
    grid-template-columns: repeat(repeat(auto-fit, 150px));
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .groupes__alignement .groupes__grid h2 {
    grid-row: 1;
    grid-column: 1/4;
  }
  .groupes__alignement .groupes__grid .groupes__text {
    font-size: 30px;
    grid-row: 2;
  }
}
@media screen and (min-width: 1080px) {
  .intro__alignement {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 3em;
         column-gap: 3em;
  }
  .intro__alignement--img {
    height: 99%;
    grid-row: 1/3;
  }
  .intro__alignement--titre {
    text-align: left;
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .intro__alignement--text {
    font-size: 18px;
    grid-row: 2/3;
  }
  .bold__font {
    font-size: 90px;
  }
  .groupes__alignement .groupes__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, auto));
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .groupes__alignement .groupes__grid h2 {
    grid-row: 1;
    grid-column: 1/4;
  }
  .groupes__alignement .groupes__grid .groupes__text {
    font-size: 30px;
    grid-row: 2;
  }
}
/*---------------KENZA: media queries desktop---------------*/
@media screen and (min-width: 1400px) {
  .intro__alignement {
    width: 100%;
  }
  .intro__alignement--img {
    height: 100%;
    grid-row: 1/3;
  }
  .intro__alignement--titre {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .intro__alignement--text {
    font-size: 20px;
    grid-row: 2/3;
  }
  .mission .mission__grid {
    font-size: 20px;
  }
  .mission .mission__grid .card {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
  .groupes__alignement .groupes__grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, auto));
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .groupes__alignement .groupes__grid h2 {
    grid-row: 1;
    grid-column: 1/4;
  }
  .groupes__alignement .groupes__grid .groupes__text {
    font-size: 30px;
    grid-row: 2;
  }
}
.newsHub {
  margin-bottom: 100px;
  margin-top: 100px;
}
.newsHub__titre {
  text-align: center;
  margin-top: 200px;
  font-size: 64px;
  margin-bottom: 69px;
  color: #022B3A;
  font-weight: 500;
}
.newsHub__hero {
  margin-bottom: 52px;
  width: 100%;
  height: 80vh;
  background-image: url("medias/img/newsHub_hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.newsHub__hero--topLayer {
  width: 100%;
  height: 100%;
  z-index: 30;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 20%, #022B3A 150%);
}

.newsHub__linktree--link {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  font-size: 1.5em;
  font-weight: 500;
}
.newsHub__linktree--link a {
  color: #2A2A2A;
  transition: 0.5s;
}
.newsHub__linktree--link a:hover {
  color: #1F7A8C;
}

/*Nouvelles*/
.actus__alignement {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.actualiteHub {
  text-decoration: none;
  margin-bottom: 50px;
  padding: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.actualiteHub__date {
  margin-bottom: 10px;
  color: #022B3A;
  font-weight: 600;
  grid-row: 1;
  height: 1%;
}
.actualiteHub:nth-of-type(1) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_1.jpg");
}
.actualiteHub:nth-of-type(2) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_2.jpg");
}
.actualiteHub:nth-of-type(3) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_3.jpg");
}
.actualiteHub:nth-of-type(4) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_4.jpg");
}
.actualiteHub:nth-of-type(5) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_5.jpg");
}
.actualiteHub:nth-of-type(6) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_6.jpg");
}
.actualiteHub:nth-of-type(7) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_7.jpg");
}
.actualiteHub:nth-of-type(8) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_8.jpg");
}
.actualiteHub:nth-of-type(9) .actualiteHub__img {
  background-image: url("medias/img/actualites_nouvelle_9.jpg");
}
.actualiteHub__desc {
  font-size: 20px;
  grid-row: 2;
  padding: 10px 0;
  color: #2A2A2A;
}
.actualiteHub__desc p {
  line-height: 30px;
}
.actualiteHub__desc p .surligne__droits {
  transition: 0.25s;
}
.actualiteHub__desc p .surligne__droits:hover {
  background-color: #E1E5F2;
}
.actualiteHub__img {
  position: relative;
  grid-row: 3/6;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 30vh;
  border-radius: 25px;
}
.actualiteHub__btn {
  border: none;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 25px;
  background-color: #022B3A;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0);
  margin-top: 10px;
  grid-row: 6;
  width: 100px;
  max-height: 40px;
  cursor: pointer;
}
.actualiteHub__btn a {
  color: #ffffff;
  text-decoration: none;
}
.actualiteHub__btn:hover {
  background-color: #ffffff;
  color: #022B3A;
  border: 1px solid #022B3A;
}
.actualiteHub__btn:hover a {
  color: #022B3A;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .actualiteHub {
    padding: 0 10px;
    width: 50%;
    justify-self: start;
  }
}
@media screen and (min-width: 1440px) {
  .actualiteHub {
    width: 33%;
  }
}
/* Victor */
.conteneurServicePage {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.servicePage {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 60vh;
}
.servicePage h2 {
  color: #022B3A;
}
.servicePage .text {
  line-height: 24px;
  font-size: 18px;
  color: #022B3A;
}
.servicePage__sectionUn {
  min-height: 350px;
  display: grid;
  grid-template-columns: auto;
  padding: 5vh 2vw;
}
.servicePage__sectionUn .img {
  align-self: center;
  justify-self: center;
  width: 95%;
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 25px;
}
.servicePage__sectionUn .contenuText {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.servicePage__sectionUn .contenuText h2 {
  color: #022B3A;
  margin-bottom: 25px;
}
.servicePage__sectionUn .contenuText .text {
  color: #022B3A;
}
.servicePage__sectionDeux {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vh 5vw;
  position: relative;
}
.servicePage__sectionDeux h2 {
  color: #ffffff;
  margin-bottom: 25px;
}
.servicePage__sectionDeux .text {
  color: #ffffff;
}
.servicePage__sectionDeux .text--servSectionDeuxParMargin {
  margin-bottom: 25px;
}
.servicePage__sectionDeux::before {
  content: "";
  position: absolute;
  left: -50vw;
  width: 200vw;
  height: 100%;
  background-color: #022B3A;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .servicePage__sectionUn {
    padding: 5vh 0;
    grid-template-columns: minmax(auto, 400px) auto;
  }
  .servicePage__sectionUn .img {
    width: 80%;
    aspect-ratio: 1/1;
  }
  .servicePage__sectionDeux {
    padding: 5vh 2vw;
  }
}
@font-face {
  font-family: "Raleway";
  src: url(./medias/fonts/Raleway/Raleway-VariableFont_wght.ttf) format("truetype");
}
@font-face {
  font-family: "JustMe";
  src: url(./medias/fonts/Just_Me_Again_Down_Here/JustMeAgainDownHere-Regular.ttf) format("truetype");
}
/*---------------KENZA: size telephone---------------*/
html {
  height: 100%;
}

* {
  font-family: Raleway;
}

body {
  min-height: 100vh;
  background-color: #ffffff;
}

ul {
  list-style-type: none;
}

h1 {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
}

h2 {
  font-size: 32px;
  color: #2A2A2A;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  color: #2A2A2A;
  font-weight: medium;
}

/*---------------KENZA: media queries tablette---------------*/
@media screen and (min-width: 768px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 32px;
  }
}
/*---------------KENZA: media queries desktop---------------*/
@media screen and (min-width: 1400px) {
  h1 {
    font-size: 96px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 32px;
  }
}
header ul li a {
  color: #2A2A2A;
}/*# sourceMappingURL=style.css.map */