@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  height: auto;
  display: flex;
  flex-direction: column;
}

/* body > * {
  border: 4px solid purple;
} */
.header-container {
  position: relative;
  height: 33rem;
  background-image: url("./assets/images/image couverture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Couleur sombre semi-transparente */
  z-index: 1; /* Place le pseudo-élément au-dessus du contenu */
}
.header-container .header {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  width: 90%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .header-container .header .header-logo {
    width: 8rem;
    height: 2rem;
    margin-top: 1rem;
  }
}
.header-container .header .header-nav {
  width: 50%;
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  z-index: 3;
}
.header-container .header .header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Arial";
  letter-spacing: 0.12375rem;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: normal;
  transition: color 0.3s ease-in-out;
}
.header-container .header .header-nav a:hover {
  color: #cccccc; /* Changez $hover-color par la couleur souhaitée */
  cursor: pointer; /* Indique que le lien est cliquable */
}
.header-container .header .header-nav a:active {
  color: #999999;
}
@media only screen and (max-width: 768px) {
  .header-container .header .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 69px; /* Ajustez la position en fonction de votre mise en page */
    left: 0;
    width: 100%;
    background-color: #990609;
    color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
    border-radius: 0.375rem;
    padding: 1rem;
    z-index: 999;
  }
  .header-container .header .header-nav.show-menu {
    display: flex;
    animation: fadeInNav 0.5s ease-in-out forwards;
    z-index: 999;
  }
  .header-container .header .header-nav.hide-menu {
    animation: fadeOut 0.5s ease-in-out forwards;
  }
  .header-container .header .header-nav a {
    /* Styles pour les liens du menu déroulant */
    padding: 0.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-container .header {
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.header-container .header-line {
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.6117647059);
  width: 90%;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .header-container .header-line {
    display: none;
  }
}
.header-container .header-h1 {
  font-family: "Arial Black";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 6rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeIn 1s ease-in-out forwards;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .header-container .header-h1 {
    font-size: 1.1rem;
    width: 77%;
    margin-top: 0.6rem;
    text-align: center;
  }
}
.header-container .header-p {
  font-family: "Arial";
  font-size: 1.4625rem;
  font-weight: 400;
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeIn 1s ease-in-out forwards;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .header-container .header-p {
    font-size: 0.8rem;
    width: 77%;
    text-align: center;
  }
}
.header-container .article {
  display: flex;
  position: absolute;
  bottom: -3.8rem;
  width: 85%;
  justify-content: space-around;
  align-items: center;
  border-radius: 0.375rem;
  height: 7.3125rem;
  background: #fff;
  z-index: 1;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
.header-container .article div {
  display: flex;
  margin: 0.6rem;
}
.header-container .article div span {
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 0.5875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header-container .article div p {
  color: #990609;
  font-family: "Arial", sans-serif;
  font-size: 0.8375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 12rem;
  margin-top: 0.3rem;
}
.header-container .article div .icon {
  width: 2rem;
  height: 2rem;
}
.header-container .article div .article-infos {
  display: flex;
  flex-direction: column;
}
.header-container .article div .article-infos a {
  text-decoration: none;
  color: #990609;
  transition: color 300ms ease-in-out;
}
.header-container .article div .article-infos a p:hover {
  color: #680406;
}
@media only screen and (max-width: 768px) {
  .header-container .article {
    height: auto;
    flex-direction: column;
    bottom: inherit;
    width: 78%;
    top: 14.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-container {
    height: 16rem;
    /*     top: 10rem; */
    /*    bottom: inherit; */
  }
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 999;
  /* Style initial pour les lignes du burger */
}
.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: transform 0.3s ease-in-out;
}
.burger-menu .burger-line:nth-child(1) {
  transform-origin: top left;
}
.burger-menu .burger-line:nth-child(2) {
  transform-origin: center;
}
.burger-menu .burger-line:nth-child(3) {
  transform-origin: bottom left;
}
.burger-menu.open {
  /* Style lorsque le menu est ouvert (croix) */
}
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg);
}
.burger-menu.open span:nth-child(2) {
  transform: scaleX(0);
}
.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .burger-menu {
    display: block;
  }
}
/* Styles pour le bouton de menu */
.menu-button {
  cursor: pointer;
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 100;
  outline: none;
  /* Animation pour transformer le bouton en croix */
}
.menu-button .bar {
  background-color: #fff;
  height: 3px;
  width: 30px;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-button.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-button.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-button.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Ajoutez ces styles pour le fond de l'écran lors de l'ouverture du menu burger */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

/* Styles pour le contenu principal lors de l'ouverture du menu burger */
.main-content.active {
  overflow: hidden;
}

.mission {
  background-color: #f7f7f7;
  height: 40rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  width: 85%;
}
.mission .container .mission-child {
  background-color: #990609;
  color: #ffffff;
  height: 22rem;
  width: 34rem;
  border-radius: 0.375rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.mission .container .mission-child h2 {
  color: #fff;
  font-family: "Arial Black", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-left: 4rem;
}
@media only screen and (max-width: 768px) {
  .mission .container .mission-child h2 {
    font-size: 1.8rem;
    margin-left: inherit;
    padding: 1rem;
  }
}
.mission .container .mission-child p {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 4rem;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .mission .container .mission-child p {
    font-size: 0.8rem;
    margin-left: inherit;
    padding: 1rem;
    align-items: center;
    width: 74%;
    padding: inherit;
  }
}
.mission .container .mission-child:hover {
  transform: translateY(-10px);
}
@media only screen and (max-width: 768px) {
  .mission .container .mission-child {
    width: 18rem;
    gap: 0.1rem;
    align-items: center;
  }
}
.mission .container .infos {
  height: 22rem;
  width: 18rem;
  border-radius: 0.375rem;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  gap: 1rem;
  font-size: 0.8rem;
  color: #938686;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.mission .container .infos .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f3f3;
  width: 9.875rem;
  height: 9.875rem;
  flex-shrink: 0;
  border-radius: 5rem;
}
.mission .container .infos .icon img {
  height: 3.3rem;
  width: 3.3rem;
}
.mission .container .infos p {
  text-align: center;
}
.mission .container .infos:hover {
  transform: translateY(-10px);
}
@media only screen and (max-width: 768px) {
  .mission .container {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 16.6rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .mission {
    height: auto;
    justify-content: center;
    align-items: center;
  }
}

.expertise {
  background: #fff;
  border: 1px solid rgb(247, 246, 246);
  display: flex;
  width: 100%;
  height: 35rem;
  flex-direction: row;
}
.expertise .expertise-div {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: left;
  margin-left: 13rem;
}
.expertise .expertise-div h2 {
  color: #990609;
  font-family: "Arial Black", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .expertise .expertise-div h2 {
    font-size: 1.8rem;
    width: 80%;
    text-align: center;
    text-wrap: nowrap;
    margin-top: 4rem;
  }
}
.expertise .expertise-div ul {
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc !important;
}
.expertise .expertise-div ul li {
  margin: 1rem;
}
@media only screen and (max-width: 768px) {
  .expertise .expertise-div ul li {
    padding: 0.1rem;
  }
}
@media only screen and (max-width: 768px) {
  .expertise .expertise-div ul {
    align-items: center;
    margin-left: initial;
    width: 80%;
    margin: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .expertise .expertise-div {
    align-items: center;
    margin-left: initial;
    width: 100%;
    margin: 1rem;
  }
}
.expertise .expertise-img {
  width: 50%;
  background-image: url("./assets/images/Deuxieme-photo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .expertise .expertise-img {
    width: 100%;
    height: 22rem;
    background-position: center;
  }
}
@media only screen and (max-width: 768px) {
  .expertise {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.listen-div {
  height: 12.25rem;
  background: #990609;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.listen-div .listen-div-container {
  height: 4rem;
  display: flex;
  position: relative;
}
.listen-div .listen-div-container span {
  color: rgba(255, 255, 255, 0.43);
  font-family: Arial, Helvetica, sans-serif Black;
  font-size: 11.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  left: -2.5rem;
  top: -3.6rem;
}
@media only screen and (max-width: 768px) {
  .listen-div .listen-div-container span {
    left: 3.2rem;
    top: -3.9rem;
    height: 6rem;
  }
}
.listen-div .listen-div-container .p-listen-div {
  white-space: nowrap; /* Empêche le texte de passer à la ligne */
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1.4rem; /* Ajustez la taille de la police selon vos besoins */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .listen-div .listen-div-container .p-listen-div {
    white-space: inherit;
    font-size: 0.9rem;
    width: 61%;
    height: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .listen-div .listen-div-container {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .listen-div {
    font-size: 0.9rem;
    white-space: wrap;
    width: 100%;
  }
}

.competences {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.competences h2 {
  color: #990609;
  font-family: "Arial Black", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .competences h2 {
    font-size: 1.8rem;
    width: 65%;
    margin-top: 6rem;
  }
}
.competences .line {
  width: 13.875rem;
  height: 0.2rem;
  flex-shrink: 0;
  background: #c72c2f;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .competences .line {
    display: none;
  }
}
.competences .competence-container {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: space-around;
  gap: 4rem;
}
.competences .competence-container .competence-container-item {
  position: relative; /* Assure que le positionnement du pseudo-élément est relatif à cet élément */
  border-radius: 0.375rem;
  width: 22.0625rem;
  height: 14.625rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  overflow: hidden; /* Pour s'assurer que le pseudo-élément ne dépasse pas le conteneur principal */
}
.competences .competence-container .competence-container-item img {
  z-index: 999;
}
.competences .competence-container .competence-container-item p {
  color: #fff;
  text-align: center;
  font-family: "Arial", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  line-height: normal;
  z-index: 999;
}
.competences .competence-container .competence-container-item:hover {
  transform: translateY(-10px);
}
.competences .competence-container .competence-container-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Couleur sombre semi-transparente */
  z-index: 1; /* Place le pseudo-élément au-dessus du contenu */
  border-radius: 0.375rem;
}
.competences .competence-container .pencil {
  background-image: url("./assets/images/Photo nø1 - Grande.jpeg");
}
.competences .competence-container .check {
  background-image: url("./assets/images/Photo DCE_page-0001.png");
}
.competences .competence-container .star {
  background-image: url("./assets/images/Photo suivi MOE_page-0001.png");
}
.competences .competence-container .bulb {
  background-image: url("./assets/images/Frame 9.png");
}
.competences .competence-container .folder {
  background-image: url("./assets/images/image003.png");
}
.competences .competence-container .carto {
  background-image: url("./assets/images/Photo n1 investigation.jpg");
}
.competences .competence-container .inspection {
  background-image: url("./assets/images/Capture d’écran 2024-01-09 à 17.16.05.png");
  padding: 0.4rem;
}
.competences .competence-container .televise {
  background-image: url("./assets/images/image0042.png");
}
.competences .competence-container .competence-img-background {
  background-size: 100% 100%;
}
.competences .video-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px;
  margin-bottom: 6rem;
}
.competences .video-container video {
  width: 100%;
  height: 100%;
  margin: 1rem;
}
@media (max-width: 768px) {
  .competences .video-container {
    grid-template-columns: 1fr; /* Une colonne pour les petits écrans */
  }
  .competences .video-container video {
    width: 90%;
  }
}

.clients {
  height: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
.clients h2 {
  color: #990609;
  font-family: "Arial Black", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .clients h2 {
    font-size: 2rem;
    margin-top: 2rem;
    width: 77%;
  }
}
.clients .line {
  width: 13.875rem;
  height: 0.2rem;
  flex-shrink: 0;
  background: #c72c2f;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .clients .line {
    display: none;
  }
}
.clients .logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  background: white;
  position: relative;
}
.clients .logos:after, .clients .logos:before {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 23;
}
@media only screen and (max-width: 768px) {
  .clients .logos:after, .clients .logos:before {
    display: none;
  }
}
.clients .logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}
.clients .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
}
.clients .logos .logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.clients .logos .logos-slide img {
  height: 30px;
  margin: 0 31px;
}
@media only screen and (max-width: 768px) {
  .clients .logos .logos-slide img {
    height: 30px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .clients .logos .logos-slide {
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .clients .logos {
    font-size: 2rem;
    text-align: center;
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .clients {
    height: 25rem;
    overflow: hidden;
  }
}

/* .logos:hover .logos-slide {
  // animation-play-state: paused;
} */
.injection {
  width: 100%;
  height: 18.8rem;
  color: #ffffff;
  position: relative;
  display: flex;
  margin-bottom: 1àrem;
  justify-content: space-around;
  gap: 1rem;
  align-items: center;
}
.injection .last1 {
  width: 100%; /* Ajustez la largeur selon vos besoins */
  height: 300px; /* Ajustez la hauteur selon vos besoins */
  background-image: url("./assets/images/last1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.injection .last2 {
  width: 100%; /* Ajustez la largeur selon vos besoins */
  height: 300px; /* Ajustez la hauteur selon vos besoins */
  background-image: url("./assets/images/last2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.injection .last3 {
  width: 100%; /* Ajustez la largeur selon vos besoins */
  height: 300px; /* Ajustez la hauteur selon vos besoins */
  background-image: url("./assets/images/lasst3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.injection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Couleur sombre semi-transparente */
  z-index: 1; /* Place le pseudo-élément au-dessus du contenu */
}
.injection .injection-div {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 999;
}
.injection .injection-div p {
  color: #ffffff;
  text-align: center;
  font-family: "Arial", sans-serif;
  font-size: 1.3625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.625rem; /* 168% */
}
.injection .injection-div .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #990609;
  padding: 1rem;
  width: 15.3125rem;
  height: 3.375rem;
  flex-shrink: 0;
  border-radius: 0.375rem;
  font-family: Arial, Helvetica, sans-serif;
  transition: background-color 0.3s ease-in-out;
}
.injection .injection-div .phone:hover {
  background-color: #680406; /* Assurez-vous d'ajuster cette valeur selon vos besoins */
  cursor: pointer;
}
.injection .injection-div .phone:active {
  background-color: #370203;
}
@media only screen and (max-width: 768px) {
  .injection {
    /*           height: 30px;
          margin: 0 31px; */
    height: auto;
    padding: 2rem; /* Ajustez la valeur de remplissage selon vos besoins */
    flex-direction: column;
    text-align: center;
    height: 18rem;
  }
  .injection .injection-div {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .injection .injection-div p {
    font-size: 1.1rem;
    width: 97%;
    line-height: 1.8rem;
  }
  .injection .phone {
    width: 100%;
    margin-top: 1rem; /* Ajoutez un espacement entre le texte et le bouton */
    padding: 0.9rem;
    height: 3.475rem;
  }
  .injection .phone span {
    font-size: 1.1rem;
  }
}

.footer {
  width: 100%;
  height: 40.0625rem;
  flex-shrink: 0;
  background: #990609;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 0;
}
.footer .infos-logo {
  display: flex;
  justify-content: space-around;
}
.footer .infos-logo .logo {
  width: 19rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .logo {
    width: 13rem;
    height: 9rem;
  }
}
.footer .infos-logo .footer-infos {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .infos-logo .footer-infos .people-infos {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
}
.footer .infos-logo .footer-infos .people-infos a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer .infos-logo .footer-infos .people-infos a:hover {
  color: #cccccc;
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos .people-infos {
    font-size: 1rem;
    margin: 0.4rem;
    width: 19rem;
    flex-direction: column;
  }
  .footer .infos-logo .footer-infos .people-infos .two-dot,
  .footer .infos-logo .footer-infos .people-infos .tiret {
    display: none;
  }
}
.footer .infos-logo .footer-infos .icone-adress {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}
.footer .infos-logo .footer-infos .icone-adress .adress {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos .icone-adress .adress {
    margin-left: 1rem;
    width: 100%;
  }
}
.footer .infos-logo .footer-infos .icone-adress .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos .icone-adress .icon {
    margin-left: 0.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos .icone-adress {
    justify-content: center;
    align-items: center;
    width: 80%;
    width: 90%;
    display: flex;
    margin-left: 0.8rem;
    margin: 0;
    gap: 0;
  }
  .footer .infos-logo .footer-infos .icone-adress .adress {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos .icone-adress {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo .footer-infos {
    width: 91%;
    display: flex;
    gap: 0.3rem;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .footer .infos-logo {
    display: inline-block;
    padding: 2rem;
  }
}
.footer .mention {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin-left: 10.7rem;
}
.footer .mention .legal {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.12375rem;
  text-transform: uppercase;
}
.footer .mention div {
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .mention div p {
  margin-top: 0.3rem;
}
.footer .mention div p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.footer .mention div p a:hover {
  color: #cccccc;
}
@media only screen and (max-width: 768px) {
  .footer {
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .footer .infos-logo {
    flex-direction: column;
    align-items: center;
  }
  .footer .mention {
    width: 79%;
    margin-left: 0; /* Supprimer la marge à gauche */
  }
  .footer .mention .legal {
    font-size: 0.7rem;
  }
  .footer .mention div {
    font-size: 0.7rem;
  }
  .footer .mention div p {
    font-size: 0.7rem;
  }
}

/* Vos variables et styles non liés à la responsivité restent inchangés */
/* Responsive styles */
/* Ajoutez d'autres media queries si nécessaire pour des breakpoints supplémentaires */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px); /* Facultatif : effet de montée en même temps que le fondu */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

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