/* HEADER HOME PAGE */
.header {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

.header_contenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  width: 65%;
}

.header_image {
  width: 35%;
  display: flex;
  align-items: stretch;
}

.header_image .img_home_desktop {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section_titre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
}

.titre_home {
  font-size: 45px;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .header_image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .titre_home {
    font-size: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header_contenu {
    gap: 20px;
    width: 100%;
  }
}

/* SECTION NOTRE MISSION */

.section_notre_mission {
  display: flex;
  padding: 16px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.container_notre_mission {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.liste_mission {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mission_point {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #f4f4f4;
  width: 49%;
}

.mission_point .nombre {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .mission_point {
    width: 100%;
  }
}

/* SECTION NOS ACTUS HOME PAGE */

.nos_actus_contenu {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.actu_item {
  gap: 20px;
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.actu_item:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  opacity: 0.8;
}

.section_nos_actus .actu_item {
  width: 350px;
}

.section_nos_actus .actu_item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card_actu_content h3 {
  margin: 10px 0 10px 0;
}



/* CAROUSEL MOBILE NOS ACTUS */

@media (max-width: 1024px) {
  .nos_actus_contenu {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .actu_item {
    display: none;
  }

  .actu_item.active {
    display: block;
  }

  .carousel-controls {
    display: flex !important;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
  }

  .carousel-controls button {
    background-color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
    display: flex;
    width: 35px;
    height: 35px;
    padding: 15px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

/* SECTION RS */
.section_rs {
}

.section_rs p {
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  margin-top: 20px;
}

.container_logos_rs {
  display: flex;
  gap: 15px;
}

.container_logos_rs .icon {
  display: flex;
  border-radius: 12px;
  border: 1px solid rgba(184, 183, 184, 0.3);
  padding: 10px;
}

.container_logos_rs .icon:hover {
  border: 1px solid var(--Orange);
}

@media screen and (max-width: 768px) {
  .section_rs p {
    margin-top: 0px;
  }
}

/* SECTION CHIFFRES CLES */

.chiffres_cles_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.chiffre_cle_item {
  display: flex;
  padding: 20px 20px 20px 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(184, 183, 184, 0.3);
  backdrop-filter: blur(10px);
}

.bloc_img {
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: rgba(184, 183, 184, 0.2);
}

.chiffre {
  color: #000;
  font-size: 24px;
  font-weight: 700;
}

.description {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (min-width: 1024px) {
  .header_image {
    position: relative;
  }

  .chiffres_cles_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .section_chiffres_cles {
    position: absolute;
    bottom: 0;
  }

  .chiffre_cle_item {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 45%;
  }

  .bloc_img {
    background: #fff;
  }

  .chiffre {
    color: #fff;
  }

  .description {
    color: #fff;
  }
}
