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

.title {
  color: #e41612;
}

.background-img {
  background-image: url("../assets/images/rectangle@2x.jpg");
  position: fixed;
  /* Fixe l'image en arrière-plan */
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  /* Largeur = 100% de la fenêtre */
  height: 100%;
  /* Hauteur = 100% de la fenêtre */
  z-index: -1;
  /* Place l'image derrière les autres éléments */
}

.container {
  width: calc(100dvw - 200px);
  margin: 0 auto;
}
@media (max-width: 950px) {
  .container {
    width: calc(100dvw - 160px);
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .container {
    width: calc(100dvw - 40px);
    margin: 0 auto;
  }
}

.card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: stretch;
  position: relative;
  /* Permet au bouton en absolute de se positionner par rapport à cette div */
  margin: 0 auto 100px;
  height: 450px;
  width: 640px;
  padding: 2rem;
  background-color: black;
  border-radius: 20px;
  border: 2px solid white;
}
@media (max-width: 950px) {
  .card {
    width: calc(100dvw - 160px);
    margin: 0 auto 60px;
    padding: 0 20px;
  }
}
.card .card--text {
  margin-bottom: 6rem;
}
@media (max-width: 450px) {
  .card .card--text {
    margin-bottom: 2rem;
    text-align: center;
  }
}

.header__presentation {
  height: 100vh;
}
@media (max-width: 950px) {
  .header__presentation {
    margin: 100px auto 0;
  }
  .header__presentation p {
    text-align: center;
    font-size: 23px;
  }
}
@media (max-width: 950px) and (max-width: 450px) {
  .header__presentation p {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .header__presentation {
    margin: 200px auto 0;
  }
}

.no-wrap {
  white-space: nowrap;
}

.border--bottom {
  padding-bottom: 20px;
  border-bottom: 2px solid rgb(178, 182, 185);
}
@media (max-width: 950px) {
  .border--bottom {
    margin-bottom: 60px;
  }
}
@media (max-width: 450px) {
  .border--bottom {
    margin-bottom: 60px;
  }
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.3333333333%;
}

.section-calculs .card {
  align-items: center;
  justify-content: flex-end;
}
.section-calculs .card__links {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.choix {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 6rem;
}
.choix div {
  flex: 1;
}
.choix img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.choix .icone {
  width: 40px;
  height: 40px;
  margin: 0;
}
.choix p {
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.choix .reseaux {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.choix .reseaux:hover {
  background-color: white;
  color: black;
  border-radius: 20px;
}
.choix .reseaux:hover .icone {
  filter: invert(1);
}

.btn--prochain {
  bottom: 30px;
  /* Ajuste cette valeur pour placer le bouton plus haut */
  right: 50px;
  opacity: 1;
  /* Rendre le bouton visible */
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  align-items: center;
  margin: 0 auto 4rem;
}
@media (max-width: 450px) {
  .btn--prochain {
    margin-bottom: 2rem;
  }
}

.section-data__content {
  background-color: #ddd;
  width: calc(100dvw - 200px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 60px;
  border-radius: 20px;
  margin: 40px auto 100px;
}
@media (max-width: 950px) {
  .section-data__content {
    width: calc(100dvw - 160px);
    margin: 0 auto 60px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .section-data__content {
    width: calc(100dvw - 40px);
  }
}
.section-data__content__nav {
  display: flex;
  justify-content: space-between;
}
.section-data #data-container {
  background-color: #ddd;
  display: flex;
}

.p_titre, .p_reseaux {
  font-size: 23px;
  color: black;
  margin: 10px;
}
@media (max-width: 450px) {
  .p_titre, .p_reseaux {
    font-size: 16px;
  }
}

.p_titre {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}

.conso--2020__content, .conso--2023__content, .users--2020__content, .users--2023__content, .pollution--2020__content, .pollution--2023__content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: center;
}

.conso--2020__Discord, .conso--2020__Instagram, .conso--2020__Facebook, .conso--2023__Discord, .conso--2023__Instagram, .conso--2023__Facebook, .users--2020__Discord, .users--2020__Instagram, .users--2020__Facebook, .users--2023__Discord, .users--2023__Instagram, .users--2023__Facebook, .pollution--2020__Discord, .pollution--2020__Instagram, .pollution--2020__Facebook, .pollution--2023__Discord, .pollution--2023__Instagram, .pollution--2023__Facebook {
  width: 33.33%;
}

.p {
  color: black;
  font-size: 16px;
  margin: 10px;
}
@media (max-width: 450px) {
  .p {
    font-size: 14px;
  }
}

.p_gras {
  font-weight: bolder;
  color: black;
  margin: 10px;
}
@media (max-width: 450px) {
  .p_gras {
    font-size: 14px;
  }
}

.btn--suivant {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
}

.btn--suivant:hover {
  background-color: #838b83;
}

.btn--suivant {
  border-radius: 10px;
}

.section-quizz {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
.section-quizz p {
  margin: 40px 0;
}
.section-quizz .question {
  text-align: center;
}
@media (max-width: 950px) {
  .section-quizz .question {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .section-quizz .question {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .section-quizz .options {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .section-quizz .options {
    font-size: 14px;
  }
}

body {
  margin-top: 0px;
  padding: 0px;
  font-size: 23px;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1, 4;
}

.link--header {
  display: flex;
  justify-content: space-evenly;
  z-index: 100;
}
.link--header__links {
  /* Vous pouvez jouer avec le margin ici pour ajuster la position des boutons
  je vous invite à fixer la nav d'une manière ou d'une autre */
  margin-top: 10rem;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.link--header a {
  padding: 20px 0 10px 0;
}

.sticky {
  position: fixed;
  top: 0;
  width: calc(100dvw - 200px);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 950px) {
  .sticky {
    width: calc(100dvw - 160px);
  }
}
@media (max-width: 450px) {
  .sticky {
    width: calc(100dvw - 40px);
  }
}

.texte--contenu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  font-size: 32px;
}
@media (max-width: 950px) {
  .texte--contenu {
    font-size: 28px;
  }
}

.section1, .text-contenu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}

.section1 p {
  margin: 40px 0;
}

.section2 {
  background-color: #f0f0f0;
  width: 800px;
  height: 500px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  border-radius: 20px;
  margin: 40px auto 100px;
  display: flex;
  gap: 10px;
}

.grid--div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn--suivant {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
}

.btn--suivant:hover {
  background-color: #838b83;
}

.btn--suivant {
  border-radius: 10px;
}

.option--btn {
  color: white;
  opacity: 1;
}

.btn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  width: 328px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, verdana, sans-serif;
  text-align: center;
}
.btn:hover {
  color: #707070;
  text-decoration: underline;
}

h1 {
  font-size: 90px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 300px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  h1 {
    font-size: 64px;
    padding-top: 0;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
    padding-top: 0;
  }
}

h2 {
  font-size: 64px;
  margin-bottom: 40px;
  font-weight: normal;
}
@media (max-width: 950px) {
  h2 {
    text-align: center;
    font-size: 45px;
  }
}
@media (max-width: 450px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
}
@media (max-width: 450px) {
  h3 {
    font-size: 20px;
  }
}

a {
  -webkit-text-decoration: 1px dashed #ffffff;
          text-decoration: 1px dashed #ffffff;
  color: rgb(255, 255, 255);
  padding: 0 30px 10px 0;
  transition: 0.3s ease-out;
}
a:hover {
  text-decoration: underline;
}

.texte--contenu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 50px;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 950px) {
  .texte--contenu {
    font-size: 23px;
  }
}
@media (max-width: 450px) {
  .texte--contenu {
    font-size: 16px;
  }
}

ul {
  list-style: none;
  padding: 0;
}

button {
  opacity: 0;
}

.grid--div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn--suivant {
  margin: 40px auto;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  opacity: 1;
  text-align: center;
}

.btn--suivant:hover {
  background-color: #838b83;
}

.progress--container, .progress--container1 {
  background-color: #ddd;
  border-radius: 5px;
  text-align: center;
  width: 70%;
  margin: 10px auto;
  height: 20px;
}

.progress--bar {
  height: 20px;
  width: 100%;
  background-color: #707070;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

.progress--bar1 {
  height: 20px;
  width: 100%;
  background-color: #707070;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

footer {
  display: flex;
  margin: 40px auto;
  justify-content: space-evenly;
  align-items: flex-start;
}
footer ul {
  list-style: none;
}

.option-btn {
  color: white;
  opacity: 1;
}

.btn {
  padding: 10px 20px;
  background-color: #111111;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 1;
  width: 572px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 950px) {
  .btn {
    min-width: 110px;
    height: 80px;
    padding: 2px;
  }
}
@media (max-width: 450px) {
  .btn {
    height: 85px;
  }
}
@media (max-width: 420px) {
  .btn {
    max-width: 110px;
    height: 90px;
    padding: 2px;
  }
}
.btn:hover {
  color: #707070;
  text-decoration: underline;
}

.btn__actif {
  padding: 10px 20px;
  color: #111111;
  background-color: #D9D9D9;
  border: none;
  cursor: pointer;
  opacity: 1;
  width: 573px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 950px) {
  .btn__actif {
    min-width: 110px;
    height: 80px;
    padding: 2px;
  }
}
@media (max-width: 420px) {
  .btn__actif {
    max-width: 110px;
    height: 90px;
    padding: 2px;
  }
}

#data-container {
  margin-top: 40px;
}

.square-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  cursor: pointer;
}
.square-radio:checked {
  background-color: #FFFFFF;
}
@media (max-width: 950px) {
  .square-radio {
    font-size: 20px;
  }
}

.link {
  display: flex;
  align-content: center;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.link img {
  width: 49%;
}
.link .img--footer_2 {
  height: auto;
}

footer {
  display: flex;
  margin: 40px auto;
  justify-content: space-evenly;
  align-items: flex-start;
}

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