@charset "UTF-8";
body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

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

main {
  flex: 1;
}

#progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #000838;
  z-index: 1;
}

#progress-bar {
  height: 100%;
  background-color: #d3d3d3;
  width: 0;
  transition: width 0.1s ease-out;
}

.title--first {
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-size: 48px;
  margin-bottom: 76px;
}

.editeur {
  display: flex;
  justify-content: right;
  margin-top: 40px;
}

body {
  font-family: "Hind Madurai", sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 25px;
  margin-bottom: 25px;
  color: black;
  position: relative;
  overflow-x: hidden;
}

h2, .title--plus {
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-size: 28px;
  margin-bottom: 33px;
  margin-top: 66px;
  line-height: 1.2;
}

h3 {
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-size: 23px;
  margin-bottom: 27px;
  margin-top: 40px;
  line-height: 1.2;
}

.title--sous {
  font-size: 32px;
  margin-bottom: 51px;
  margin-top: 51px;
  line-height: 1.6;
}

/*grid*/
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding: 0 25px;
}

.grid > * {
  grid-column: 1/-1;
}

.mgrid01 {
  grid-column-end: 1;
}

.context-content {
  display: flex;
  align-items: flex-start;
  /* Aligne les éléments en haut */
}

.title--first1 {
  font-size: 16px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  /* Affiche le texte verticalement */
  transform: rotate(180deg);
  /* Inverse le texte pour qu'il soit lisible de haut en bas */
  margin-right: 20px;
  /* Ajoute un e
  ce entre le texte vertical et le paragraphe */
}

.context-text {
  flex: 1;
  /* Permet au texte de prendre tout l'espace disponible */
}

/*Images*/
img {
  max-width: 100%;
}

.image-flex {
  margin-bottom: 20px;
}

.image-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.figure__image1 {
  margin: 0px;
  overflow: hidden;
}

.animate-zoom img {
  transition: transform 0.3s ease-in-out;
}

.animate-zoom:hover img {
  transform: scale(1.1);
}

.img-round {
  width: 100px;
  /* Ajuste la taille selon tes besoins */
  height: 100px;
  /* Assure que l'image est bien carrée */
  border-radius: 50%;
  /* Rend l'image complètement ronde */
  -o-object-fit: cover;
     object-fit: cover;
  /* Évite la déformation */
  top: 940px;
}

.round {
  display: flex;
  justify-content: left;
  align-items: center;
}

.image__2 {
  margin-bottom: 50px;
}

.figure__image {
  margin: 0;
}

.special {
  margin-top: 50px;
}

.figure--full {
  width: 100vw;
  /* Assure que l'image occupe toute la largeur de la fenêtre */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
}

.figure--full1 {
  width: 100vw;
  /* Assure que l'image occupe toute la largeur de la fenêtre */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
}

.figure__legende {
  text-align: left;
  font-size: 14px;
  opacity: 1;
}

.editeur {
  line-height: 1.2;
  padding-left: 20px;
}

/*Section*/
.section--footer {
  background-color: #000838;
  color: white;
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Centre verticalement les éléments */
  width: 100%;
  /* Utilise toute la largeur disponible */
  max-width: 1200px;
  flex-wrap: wrap;
  /* Permet aux éléments de se répartir sur plusieurs lignes si nécessaire */
}

.footer-section {
  flex: 1;
  padding: 10px;
  text-align: center;
  /* Centre le texte à l'intérieur de chaque section */
}

.footer-section h3 {
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

/*décoration*/
.highlight {
  background-color: rgb(165, 192, 255);
  padding: 0 4px;
}

.text__bar {
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  font-size: 16px;
  color: white;
  margin: 0;
}

/* Animation title--big */
.slide-left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease-in-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 580px) {
  .title--first {
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-size: 77px;
    margin-bottom: 92px;
  }
}
@media (min-width: 800px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding: 0 30px;
  }

  p, body {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  h2, .title--plus {
    font-size: 31px;
    margin-bottom: 37px;
    margin-top: 66px;
    line-height: 1.2;
  }

  h3 {
    font-size: 26px;
    margin-bottom: 31px;
    margin-top: 60px;
    line-height: 1.2;
  }

  .title--sous {
    font-size: 64px;
    margin-bottom: 60px;
    margin-top: 90px;
    line-height: 1.6;
  }

  .parag {
    margin-top: 40px;
  }

  .tgridstart {
    grid-column-start: 3;
    /* Commence à partir de la colonne 3 */
  }

  .tgridend3 {
    grid-column-end: 3;
  }

  .tgridend5 {
    grid-column-end: 5;
  }

  .column1 {
    grid-column: 1/2;
  }

  .column2 {
    grid-column: 2/3;
  }

  .column3 {
    grid-column: 3/4;
  }

  .column4_ {
    grid-column: 4/5;
  }

  .ThomasMuller {
    grid-column: 1/5;
  }

  .column2_5 {
    grid-column: 2/5;
  }

  .column3_6 {
    grid-column: 3/6;
  }

  .column4_6 {
    grid-column: 4/6;
  }

  .column4 {
    grid-column: 1/4;
  }

  .column5 {
    grid-column: 1/5;
  }

  .figure--full1 {
    width: calc(100% + 30px);
    /* Assure que l'image rentre dans la grille sur les grands écrans */
    position: static;
    margin-left: 0;
    margin-right: 0;
    max-width: 120%;
    /* Limite la largeur maximale à 100% du conteneur */
  }

  .context-content {
    display: flex;
    align-items: flex-start;
    /* Aligne les éléments en haut */
  }

  .title--first1 {
    font-size: 77px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    /* Affiche le texte verticalement */
    transform: rotate(180deg);
    /* Inverse le texte pour qu'il soit lisible de haut en bas */
    margin-right: 20px;
    /* Ajoute un espace entre le texte vertical et le paragraphe */
  }

  .context-text {
    flex: 1;
    /* Permet au texte de prendre tout l'espace disponible */
  }

  .footer-section h3 {
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding: 0 50px;
  }

  .title--first {
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-size: 93px;
    padding: 100px;
    line-height: 1.2;
  }

  p, body {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  h2, .title--plus {
    font-size: 37px;
    margin-bottom: 44px;
    margin-top: 66px;
    line-height: 1.2;
  }

  h3 {
    font-size: 31px;
    margin-bottom: 37px;
    margin-top: 60px;
    line-height: 1.2;
  }

  .figure--full1 {
    width: calc(100% + 60px);
    /* Assure que l'image rentre dans la grille sur les grands écrans */
    position: static;
    margin-left: 0;
    margin-right: 0;
    max-width: 120%;
    /* Limite la largeur maximale à 100% du conteneur */
  }

  .columnd7 {
    grid-column: 4/8;
  }

  .columnd1 {
    grid-column: 1/4;
  }

  .columnd2 {
    grid-column: 2/6;
  }

  .columnd3 {
    grid-column: 5/8;
  }

  .columnd44 {
    grid-column: 3/4;
  }

  .column444 {
    grid-column: 2/3;
  }

  .columnd4 {
    grid-column: 3/5;
  }

  .columnd11 {
    grid-column: 4/5;
  }

  .columnd5 {
    grid-column: 5/6;
  }

  .columnd6 {
    grid-column: 6/8;
  }
}

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