@charset "UTF-8";
:root {
  /* Colors P1 et P3 */
  --color-rose: #FFEAE5;
  --color-blanc: #FFFFFF;
  --color-mauve: #E5CCEA;
  --color-mauve-fonce: #D5ADE1;
  --color-texte: #000000;
  /* Colors P2 */
  --color-un: #17844B;
  --color-deux: #59D14C;
  --color-trois: #C9E751;
  --color-quatre: #23DFBC;
  /* Font Families */
  --titre-p1p3: "Jersey25", sans-serif;
  --texte-p1p3: "Goldman", sans-serif;
  --titre-p2: "Bungee", sans-serif;
  --texte-p2: "Caladea", serif;
  /* Font Sizes */
  --h1-size-p1p3: 23px;
  --titre-big-p2: 83px;
  --h1-size-p2: 33px;
  --h2-size: 19px;
  --h3-size: 40px;
  --text-size: 16px;
  --h1-size-p1p3-tab: 45px;
  --titre-big-p2-tab: 160px;
  --h1-size-p2-tab: 64px;
  --h2-size-tab: 31px;
  --h3-size-tab: 54px;
  --text-size-tab: 18px;
  --h1-size-p1p3-dt: 86px;
  --titre-big-p2-dt: 385px;
  --h1-size-p2-dt: 107px;
  --h4-size-p2-dt: 223px;
  --h2-size-p1p3-dt: 41px;
  --h2-size-p2-dt: 36px;
  --h3-size-p1p3-dt: 29px;
  --h3-size-p2-dt: 90px;
  --text-size-p1p3-dt: 20px;
  --text-size-p2-dt: 30px;
  /* Font Weights */
  /* Font Line Heights */
  --title-line-height: 1.2;
  --text-line-height: 1.4;
}

@font-face {
  font-family: "Bungee";
  src: url("../assets/fonts/Bungee-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Caladea";
  src: url("../assets/fonts/Caladea-Bold.woff") format("woff");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "Jersey25";
  src: url("../assets/fonts/Jersey25-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Goldman";
  src: url("../assets/fonts/Goldman-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ------- HOME PAGE -------------------------------------------------------------------------------------------------*/
/* DEGRADER */
body.page1 {
  color: var(--color-texte);
  background: linear-gradient(to bottom, var(--color-rose), var(--color-blanc));
  min-height: 100vh;
  margin: 0;
}

/* NAVIGATION */
.menu--btn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  right: 19px;
  z-index: 10;
  background: transparent;
  color: transparent;
  border: 0;
  z-index: 100;
  cursor: pointer;
}
.menu--btn i {
  display: block;
  width: 2px;
  height: 30px;
  background: var(--color-texte);
  position: absolute;
  transition: all 0.5s ease;
}
.menu--btn i:nth-child(1) {
  left: 0;
}
.menu--btn i:nth-child(2) {
  left: 50%;
}
.menu--btn i:nth-child(3) {
  left: 100%;
}

.nav {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  position: static;
  height: 60px;
  border-bottom: 2px solid var(--color-texte);
  z-index: 11;
}
.nav .img__logo {
  position: relative;
  z-index: 99;
  width: 40px;
  height: auto;
  top: 16px;
  left: 19px;
}

/* Menu Open */
.menu--btn.open {
  top: 3px;
}
.menu--btn.open i:nth-child(1) {
  top: 109%;
  transform: rotate(45deg) translateY(-97%);
  transform-origin: center;
}
.menu--btn.open i:nth-child(2) {
  opacity: 0;
}
.menu--btn.open i:nth-child(3) {
  bottom: -47%;
  transform: rotate(-45deg) translateY(10%);
  transform-origin: center;
}

.nav__p1 {
  background: linear-gradient(to bottom, var(--color-rose), var(--color-blanc));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  padding: 0;
  margin: 0;
  top: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-out;
  z-index: 99;
}
.nav__p1 .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav__p1 .nav__list .nav__item {
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-texte);
  width: 100vw;
}
.nav__p1 .nav__list .nav__item .nav__link {
  text-align: center;
  color: var(--color-texte);
  line-height: var(--text-line-height);
  font-family: var(--titre-p1p3);
  font-size: var(--text-size);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  margin-left: 32px;
  cursor: pointer;
  line-height: var(--title-line-height);
}
.nav__p1 .nav__list .nav__item .nav__link.active {
  border-left: 2px solid currentColor;
}
body.page1 .nav__p1 .nav__list .nav__item .nav__link.active {
  color: var(--color-mauve-fonce);
}
body.page2 .nav__p1 .nav__list .nav__item .nav__link.active {
  color: var(--color-un);
}
.nav__p1 .nav__list .nav__item .nav__link:hover {
  color: var(--color-mauve-fonce);
}
.nav__p1 .nav__list .nav__item:last-child {
  margin-bottom: 0;
}

.nav__p1.open {
  top: 16px;
}

/* Header */
.header--home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.header__p1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__p1 .section--header2 {
  display: none;
}

.section--header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header__keys {
  display: grid;
  grid-template-columns: repeat(7, 40px);
  gap: 10px;
}

.tech {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 10px;
  justify-content: end;
}

/* Anim touche */
@-webkit-keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(1);
    box-shadow: -4px 4px 0 #000;
  }
  50% {
    opacity: 1;
    transform: translateY(2px) scale(0.95);
    /* effet touche pressée */
    box-shadow: -2px 2px 0 #000;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: -4px 4px 0 #000;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(1);
    box-shadow: -4px 4px 0 #000;
  }
  50% {
    opacity: 1;
    transform: translateY(2px) scale(0.95);
    /* effet touche pressée */
    box-shadow: -2px 2px 0 #000;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: -4px 4px 0 #000;
  }
}
/* Delais pour anim chaque lettre */
.header__keys .key:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.header__keys .key:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.header__keys .key:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.header__keys .key:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.header__keys .key:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.header__keys .key:nth-child(6) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.header__keys .key:nth-child(7) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

/*TECH */
.tech .key:nth-child(1) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.tech .key:nth-child(2) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.tech .key:nth-child(3) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.tech .key:nth-child(4) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.key {
  opacity: 0;
  transform: translateY(-10px);
  -webkit-animation: appear 0.4s forwards;
          animation: appear 0.4s forwards;
  background: transparent;
  border: 2px solid #000;
  text-align: center;
  font-size: var(--text-size);
  font-family: var(--titre-p1p3);
  padding: 7px;
  color: var(--color-mauve-fonce);
}

.header__photo {
  width: auto;
  max-width: 600px;
  height: auto;
  margin-top: -25px;
  align-self: flex-start;
}
.header__photo .img--header {
  width: 130px;
  height: auto;
  max-width: 600px;
}

.section--fichier {
  display: none;
}

/*sujet1*/
/* anim*/
@-webkit-keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section--Sujet {
  background: linear-gradient(270deg, var(--color-mauve), var(--color-rose), var(--color-mauve));
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 2%, black 97%, transparent);
  -webkit-animation: gradientMove 8s ease infinite;
          animation: gradientMove 8s ease infinite;
  margin-top: 32px;
  padding: 0 19px 0 19px;
  margin-bottom: 32px;
  background-size: 400% 400%;
  display: flex;
  justify-content: center;
}
.section--Sujet .sujet--tous {
  opacity: 0;
  transform: translateX(-50px);
}
.section--Sujet .sujet--tous.animate {
  -webkit-animation: slideFromLeft 1.8s ease forwards;
          animation: slideFromLeft 1.8s ease forwards;
}
.section--Sujet .section--Sujet1__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 32px;
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-50px);
  -webkit-animation: slideFromLeft 0.8s ease forwards;
          animation: slideFromLeft 0.8s ease forwards;
}
.section--Sujet .section--Sujet1__content .img__sujet1 {
  width: 50px;
  max-width: 600px;
  height: 20px;
}
.section--Sujet .section--Sujet1__content .titre--sujet1 {
  font-family: var(--titre-p1p3);
  font-size: var(--h2-size);
  color: var(--color-texte);
  text-align: start;
  line-height: var(--title-line-height);
}
.section--Sujet .sujet1__para {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding-bottom: 16px;
}
.section--Sujet .sujet1__para .text--sujet1 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  text-align: start;
  line-height: var(--text-line-height);
}
.section--Sujet .section--Sujet1__icones {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  max-width: 100vw;
  padding-bottom: 16px;
}
.section--Sujet .section--Sujet1__icones .icone__sujet1 {
  width: 80px;
  max-width: 600px;
  height: auto;
}
.section--Sujet .section--Sujet1__icones .text__icone--sujet1 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
}
.section--Sujet .photo__sujet1 {
  width: 170px;
  max-width: 600px;
  height: auto;
  margin-bottom: 16px;
  border: solid 2px var(--color-texte);
}
.section--Sujet .photo__sujet2 {
  width: 260px;
  max-width: 600px;
  height: auto;
  margin-bottom: 16px;
  border: solid 2px var(--color-texte);
}

.Ligne {
  display: flex;
  justify-content: center;
  flex-direction: row;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 2px;
  background-color: var(--color-texte);
}

/* FOOTER */
.footer {
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  position: static;
  border-top: 2px solid var(--color-texte);
  z-index: 11;
}
.footer .img__logo {
  z-index: 99;
  width: 40px;
  height: auto;
}

.credits {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 32px 0;
}
.credits .text--footer {
  line-height: var(--text-line-height);
  margin: 0;
  color: var(--color-texte);
  line-height: var(--text-line-height);
}

.footer__p1 {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 99;
}
.footer__p1 .footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.footer__p1 .footer__list .footer__item {
  margin-bottom: 32px;
  margin-top: 32px;
}
.footer__p1 .footer__list .footer__item .footer__link {
  color: var(--color-texte);
  line-height: var(--text-line-height);
  font-family: var(--titre-p1p3);
  font-size: var(--text-size);
  text-decoration: none;
  margin-left: 32px;
  cursor: pointer;
}
.footer__p1 .footer__list .footer__item .footer__link.active {
  border-left: 2px solid currentColor;
}
body.page1 .footer__p1 .footer__list .footer__item .footer__link.active {
  color: var(--color-mauve-fonce);
}
body.page2 .footer__p1 .footer__list .footer__item .footer__link.active {
  color: var(--color-un);
}
.footer__p1 .footer__list .footer__item .footer__link:hover {
  color: var(--color-mauve-fonce);
}

/* ------- PAGE2 ---------------------------------------------------------------------------------------------- */
/* Degrader */
body.page2 {
  background: none;
  background-color: var(--color-texte);
  min-height: 100vh;
  margin: 0;
  color: var(--color-blanc);
}

/* NAVIGATION */
.nav__p1.nav__p2 {
  background: linear-gradient(to bottom, var(--color-texte), var(--color-un));
}

body.page2 .nav__list .nav__item .nav__link {
  color: white;
}

body.page2 .nav__list .nav__item {
  border-bottom: 2px solid var(--color-blanc);
}

body.page2 .menu--btn i {
  background: white;
}

body.page2 .nav {
  border-bottom: 2px solid var(--color-blanc);
}

body.page2 .nav__link:hover {
  color: var(--color-un) !important;
}

/*Header*/
.section--header__p2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px 0 32px;
}

.header__item1, .header__item2, .header__item3 {
  font-family: var(--titre-p2);
  font-size: var(--titre-big-p2);
  -webkit-text-stroke: 2px black;
  text-shadow: -6px 6px 0px var(--color-un);
}

.section--header__p2-2 {
  display: flex;
  justify-content: end;
  padding: 0 32px 0 32px;
}

@-webkit-keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header__item4 {
  font-family: var(--titre-p2);
  font-size: var(--h1-size-p2);
  -webkit-text-stroke: 1px black;
  text-shadow: -3px 3px 0px var(--color-un);
  opacity: 0;
  transform: translateX(120px);
  -webkit-animation: slideFromRight 0.8s ease forwards 1s;
          animation: slideFromRight 0.8s ease forwards 1s;
  z-index: 99;
}

.header__item1 {
  margin: 0px 0px 0px 0px;
}

.header__item2 {
  margin: -70px 0px 0 50px;
}

.header__item3 {
  margin: -67px 0px 0 100px;
}

.header__photo__p2 {
  max-width: 600px;
  width: 60%;
  height: auto;
  margin-top: -241px;
  z-index: 10;
}

.photos--header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Anim header*/
@keyframes slideFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header__item1, .header__item2, .header__item3 {
  opacity: 0;
  transform: translateX(-120px);
  -webkit-animation: slideFromLeft 0.8s ease forwards;
          animation: slideFromLeft 0.8s ease forwards;
}

.header__item2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.header__item3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.section--header__photos__p2 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}

/* critique1 */
.section--critique1 {
  background: linear-gradient(to bottom, var(--color-deux) 0%, var(--color-deux) 30%, var(--color-texte) 60%, var(--color-texte) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 2%, black 97%, transparent);
  margin-top: 32px;
}
.section--critique1 .section--Sujet1__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  color: var(--color-texte);
}
.section--critique1 .section--Sujet1__content .img--croix__section {
  display: none;
}
.section--critique1 .section--Sujet1__content .critique--tous {
  opacity: 0;
  transform: translateY(-50px);
}
.section--critique1 .section--Sujet1__content .critique--tous.animate {
  -webkit-animation: slideFromLeft 1.8s ease forwards;
          animation: slideFromLeft 1.8s ease forwards;
}
.section--critique1 .section--Sujet1__content .titre--critique1 {
  font-family: var(--texte-p2);
  font-size: var(--h2-size);
  text-align: start;
  margin-bottom: 16px;
  margin-top: 16px;
  padding: 0 32px 0 32px;
}
.section--critique1 .section--Sujet1__content .Ligne__p2 {
  display: block;
  width: calc(100% - 64px);
  height: 2px;
  margin: 0 auto;
  background-color: var(--color-texte);
}
.section--critique1 .section--Sujet1__content .Grand-texte__p2 {
  font-family: var(--titre-p2);
  font-size: var(--h3-size);
  text-align: start;
  margin-top: 16px;
  padding: 0 32px 0 32px;
  line-height: var(--title-line-height);
}
.section--critique1 .section--Sujet1__content .img__critique1 {
  width: 60%;
  max-width: 600px;
  padding: 0 32px 0 32px;
  display: block;
  margin-left: auto;
}
@-webkit-keyframes stretch {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.03);
  }
}
@keyframes stretch {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.03);
  }
}
.section--critique1 .section--Sujet1__content .page-dechirer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/images/Pag-dechirer.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  max-width: none;
  height: auto;
  margin-bottom: 16px;
  align-self: center;
  -webkit-animation: stretch 3s ease-in-out infinite;
          animation: stretch 3s ease-in-out infinite;
}
.section--critique1 .section--Sujet1__content .page-dechirer .text--critique1 {
  font-family: var(--titre-p2);
  font-size: var(--text-size);
  color: var(--color-un);
  text-align: start;
  justify-content: center;
  margin-top: 143px;
  padding: 0 32px 0 32px;
  line-height: var(--text-line-height);
}
.section--critique1 .section--Sujet1__content .page-dechirer .text--critique2 {
  font-family: var(--titre-p2);
  font-size: var(--text-size);
  color: var(--color-un);
  text-align: start;
  justify-content: center;
  margin-top: 16px;
  padding: 0 32px 0 32px;
  line-height: var(--text-line-height);
}
.section--critique1 .section--Sujet1__content .btn--solution1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 32px 0 32px;
  margin-bottom: 32px;
  cursor: pointer;
}
.section--critique1 .section--Sujet1__content .btn--solution1 .btn-solution {
  width: auto;
  height: auto;
  background-color: var(--color-un);
  color: var(--color-blanc);
  border-radius: 40px;
  font-family: var(--texte-p2);
  font-size: var(--text-size);
  cursor: pointer;
  padding: 16px;
}

.section--solution {
  display: none;
  /* none, flex quand click sur btn solution*/
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  height: auto;
  background-color: var(--color-quatre);
  color: var(--color-texte);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.section--solution .text--solution {
  font-family: var(--titre-p2);
  padding: 0px 32px 32px 32px;
}
.section--solution .img--croix {
  width: 50px;
  max-width: 600px;
  height: 20px;
  margin-top: 16px;
  align-self: flex-end;
  padding: 0 32px 0 32px;
}
.section--solution .img--croix:hover {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.section--solution.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section--Carts {
  display: none;
}

/* FOOTER */
.page2 .footer {
  border-top: 2px solid var(--color-blanc);
  margin-top: 32px;
}

.page2 .footer__p1 .footer__list .footer__item .footer__link {
  color: var(--color-blanc);
}

.page2 .credits .text--footer {
  color: var(--color-blanc);
}

body.page2 .footer__link:hover {
  color: var(--color-un) !important;
}

/* ------- PAGE3 ---------------------------------------------------------------------------------------------- */
/* fenetre stats */
.section--Fenetre {
  position: relative;
  width: 300px;
  height: 400px;
  border: 2px solid var(--color-texte);
  border-radius: 12px;
  background: linear-gradient(to bottom, var(--color-mauve), var(--color-rose));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* masque le contenu qui dépasse */
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 32px;
}
.section--Fenetre .fenetre--header {
  background-color: var(--color-mauve-fonce);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--color-texte);
}
.section--Fenetre .fenetre--header .titre--fenetre {
  font-family: var(--titre-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 16px;
  line-height: var(--title-line-height);
}
.section--Fenetre .fenetre--header .btn--fenetre {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  padding-right: 16px;
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--minimize {
  width: 15px;
  height: 10px;
  background-color: transparent;
  border: solid 2px var(--color-texte);
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--ligne {
  width: 2px;
  height: 60px;
  background-color: var(--color-texte);
  border-radius: 10%;
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--maximize {
  width: 20px;
  height: 2px;
  background-color: var(--color-texte);
  border-radius: 10%;
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--close {
  width: 15px;
  height: 15px;
  background-color: transparent;
  position: relative;
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--close::before, .section--Fenetre .fenetre--header .btn--fenetre .btn--close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-texte);
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.section--Fenetre .fenetre--header .btn--fenetre .btn--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}
.section--Fenetre::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../assets/images/fleche-scroll.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
  pointer-events: none;
}

.section--Fenetre.hide-arrow::after {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
  transition: opacity 0.3s ease;
}

.section--Messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 0px 16px;
  overflow-y: scroll;
}

.section--Messages::-webkit-scrollbar {
  display: none;
}

.section--Messages1 {
  background-image: url(../assets/images/bulle1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 61px;
  align-self: flex-end;
}
.section--Messages1 .message1 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  padding: 4px;
  text-align: center;
  line-height: var(--text-line-height);
}

.section--Messages2 {
  background-image: url(../assets/images/Bulle2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 96%;
}
.section--Messages2 .message2 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  margin-bottom: 23px;
  padding: 13px;
  text-align: center;
  line-height: var(--text-line-height);
}

.section--Messages3 {
  background-image: url(../assets/images/bulle3.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 64%;
}
.section--Messages3 .message3 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  margin-bottom: 31px;
  padding: 22px;
  text-align: center;
  line-height: var(--text-line-height);
}

.section--Messages4 {
  background-image: url(../assets/images/bulle4.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60%;
  align-self: flex-end;
}
.section--Messages4 .message4 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  margin-bottom: 17px;
  padding: 7px;
  text-align: center;
  line-height: var(--text-line-height);
}

.section--Messages5 {
  background-image: url(../assets/images/bulle5.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 61px;
}
.section--Messages5 .message5 {
  font-family: var(--texte-p1p3);
  font-size: var(--text-size);
  color: var(--color-texte);
  padding: 4px;
  text-align: center;
  line-height: var(--text-line-height);
}

/* ------- MEDIA QUERIES ------- */
/* Tablet */
@media (min-width: 834px) {
  .nav {
    height: 80px;
  }
  .nav .nav__p1 .nav__list .nav__item .nav__link {
    font-size: var(--text-size-tab);
  }
  .nav .img__logo {
    width: 55px;
    top: 18px;
    left: 31px;
  }
  .nav .menu--btn {
    right: 31px;
    height: 21px;
  }
  .nav .menu--btn i {
    height: 40px;
  }
  .nav .menu--btn.open {
    top: 6px;
  }
  .nav i:nth-child(2) {
    left: 70%;
  }
  .nav i:nth-child(3) {
    left: 140%;
  }

  .header__keys {
    display: grid;
    grid-template-columns: repeat(7, 80px);
    gap: 35px;
  }
  .header__keys .key {
    font-size: var(--h1-size-p1p3-tab);
    padding: 7px;
  }
  .header__keys .tech {
    grid-template-columns: repeat(4, 80px);
    gap: 25px;
  }

  .header__photo {
    margin-top: -63px;
  }
  .header__photo .img--header {
    width: 50%;
  }

  .section--header2 {
    display: none;
  }

  .section--fichier {
    display: none;
  }

  .section--Sujet {
    margin-top: 31px;
    padding: 0 31px 0 31px;
    margin-bottom: 31px;
  }
  .section--Sujet .section--Sujet1__content {
    padding-bottom: 22px;
    margin-top: 18px;
    gap: 54px;
  }
  .section--Sujet .section--Sujet1__content .img__sujet1 {
    width: auto;
    height: 60px;
  }
  .section--Sujet .section--Sujet1__content .titre--sujet1 {
    font-size: var(--h2-size-tab);
  }
  .section--Sujet .sujet1__para {
    margin-left: 113px;
    margin-right: 113px;
    margin-bottom: 22px;
  }
  .section--Sujet .sujet1__para .text--sujet1 {
    font-size: var(--text-size-tab);
  }
  .section--Sujet .section--Sujet1__icones {
    padding-bottom: 22px;
    margin-left: 113px;
    margin-right: 113px;
  }
  .section--Sujet .section--Sujet1__icones .icone__sujet1 {
    width: 120px;
  }
  .section--Sujet .section--Sujet1__icones .text__icone--sujet1 {
    font-size: var(--text-size-tab);
  }
  .section--Sujet .photo__sujet1 {
    width: 244px;
    margin-bottom: 22px;
    margin-left: 113px;
    margin-right: 113px;
  }
  .section--Sujet .photo__sujet2 {
    width: 350px;
    margin-bottom: 22px;
    margin-left: 113px;
    margin-right: 113px;
  }

  .footer .img__logo {
    width: 55px;
  }
  .footer .footer__p1 .footer__list .footer__item .footer__link {
    margin-left: 22px;
    font-size: var(--text-size-tab);
  }
  .footer .credits .text--footer {
    font-size: var(--text-size-tab);
    margin: 0;
  }

  .body.page2 {
    background: none;
  }

  .section--header__p2 {
    padding: 0 31px 0 31px;
  }
  .section--header__p2 .header__item1, .section--header__p2 .header__item2, .section--header__p2 .header__item3 {
    font-size: var(--titre-big-p2-tab);
  }
  .section--header__p2 .header__item2 {
    margin: -134px 0px 0 50px;
  }
  .section--header__p2 .header__item3 {
    margin: -134px 0px 0 100px;
  }

  .header__item4 {
    font-size: var(--h1-size-p2-tab);
    margin-top: 31px;
  }

  .header__photo__p2 {
    width: 50%;
    margin-top: -432px;
  }

  .section--critique1 {
    background: linear-gradient(to bottom, var(--color-deux) 0%, var(--color-deux) 30%, var(--color-texte) 80%, var(--color-texte) 100%);
    margin-top: 45px;
  }
  .section--critique1 .section--Sujet1__content .img--croix__section {
    display: none;
  }
  .section--critique1 .section--Sujet1__content .titre--critique1 {
    font-size: var(--h2-size-tab);
    margin-bottom: 22px;
    margin-top: 22px;
    padding: 0 31px 0 31px;
  }
  .section--critique1 .section--Sujet1__content .Grand-texte__p2 {
    font-size: var(--h3-size-tab);
    margin-top: 22px;
    padding: 0 31px 0 31px;
  }
  .section--critique1 .section--Sujet1__content .img__critique1 {
    padding: 0 31px 0 31px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer {
    background-size: cover;
    max-width: none;
    margin-bottom: 22px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer .text--critique1 {
    font-size: var(--text-size-tab);
    margin-top: 160px;
    padding: 0 180px 0 180px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer .text--critique2 {
    font-size: var(--text-size-tab);
    margin-top: 22px;
    padding: 0 180px 0 180px;
  }
  .section--critique1 .section--Sujet1__content .btn--solution1 {
    padding: 0 31px 0 31px;
    margin-bottom: 22px;
  }
  .section--critique1 .section--Sujet1__content .btn--solution1 .btn-solution {
    width: auto;
    height: auto;
    padding: 18px;
    font-size: var(--text-size-tab);
  }

  .section--solution .text--solution {
    font-size: var(--text-size-tab);
    padding: 0px 31px 31px 31px;
  }

  .section--Carts {
    display: none;
  }

  .section--Fenetre {
    width: 700px;
    height: 500px;
  }
  .section--Fenetre .fenetre--header .titre--fenetre {
    font-size: var(--text-size-tab);
    margin-top: 22px;
    margin-bottom: 22px;
    padding-left: 22px;
  }
  .section--Fenetre .fenetre--header .btn--fenetre {
    padding-right: 22px;
    gap: 22px;
  }
  .section--Fenetre .section--Messages {
    padding: 22px 22px 0px 22px;
    gap: 22px;
  }
  .section--Fenetre .section--Messages .section--Messages1 {
    width: 33%;
    height: 107px;
  }
  .section--Fenetre .section--Messages .section--Messages1 .message1 {
    font-size: var(--text-size-tab);
    padding: 24px 0;
  }
  .section--Fenetre .section--Messages .section--Messages2 {
    width: 49%;
    height: 110px;
  }
  .section--Fenetre .section--Messages .section--Messages2 .message2 {
    padding: 24px;
    font-size: var(--text-size-tab);
  }
  .section--Fenetre .section--Messages .section--Messages3 {
    width: 26%;
    height: 109px;
  }
  .section--Fenetre .section--Messages .section--Messages3 .message3 {
    padding: 17px;
    font-size: var(--text-size-tab);
  }
  .section--Fenetre .section--Messages .section--Messages4 {
    width: 38%;
    height: 125px;
  }
  .section--Fenetre .section--Messages .section--Messages4 .message4 {
    padding: 36px;
    font-size: var(--text-size-tab);
  }
  .section--Fenetre .section--Messages .section--Messages5 {
    width: 33%;
    height: 107px;
  }
  .section--Fenetre .section--Messages .section--Messages5 .message5 {
    padding: 24px 0;
    font-size: var(--text-size-tab);
  }

  .section--Fenetre::after {
    width: 50px;
    height: 50px;
  }
}
/* ordi */
@media (min-width: 1280px) {
  /*page1*/
  .nav {
    height: 100px;
  }
  .nav .menu--btn {
    display: none;
  }
  .nav .img__logo {
    width: 75px;
    top: 20px;
    left: 41px;
  }
  .nav .nav__p1 {
    position: absolute;
    top: auto;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    height: auto;
    transform: none !important;
    margin-top: -41px;
    right: 41px;
  }
  .nav .nav__p1 .nav__list {
    flex-direction: row;
    gap: 41px;
  }
  .nav .nav__p1 .nav__list .nav__item {
    margin: 0 !important;
    border-bottom: none !important;
    width: auto !important;
  }
  .nav .nav__p1 .nav__list .nav__item .nav__link {
    opacity: 1 !important;
    margin-left: 0;
    font-size: var(--h3-size-p1p3-dt);
  }

  .footer .footer__p1 .footer__list .footer__item {
    margin-bottom: 41px;
    margin-top: 41px;
  }
  .footer .footer__p1 .footer__list .footer__item .img__logo {
    width: 75px;
  }
  .footer .footer__p1 .footer__list .footer__item .footer__link {
    font-size: var(--h3-size-p1p3-dt);
    margin-left: 41px;
  }
  .footer .credits .text--footer {
    font-size: var(--text-size-p1p3-dt);
    margin: 0;
  }

  .header--home {
    gap: 40px;
  }
  .header--home .section--header .header__keys {
    grid-template-columns: repeat(7, 120px);
    gap: 41px;
  }
  .header--home .section--header .header__keys .key {
    font-size: var(--h1-size-p1p3-dt);
    padding: 10px;
  }
  .header--home .section--header .header__keys .tech {
    grid-template-columns: repeat(4, 120px);
    gap: 41px;
    padding: 10px;
  }
  .header--home .header__photo {
    margin-top: -95px;
  }
  .header--home .header__photo .img--header {
    width: 63%;
  }

  .section--header2 {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 200px;
  }
  .section--header2 .fenetre1 {
    left: 470px;
    top: 54px;
    width: 300px;
    height: 210px;
    z-index: 99;
  }
  .section--header2 .fenetre1 .fichier--fenetre {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0 10px 0;
  }
  .section--header2 .fenetre1 .fichier--fenetre .fichier--fenetre__flex {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
  }
  .section--header2 .fenetre1 .fichier--fenetre .fichier--fenetre__flex .img--fichier__rose {
    width: 18%;
    height: auto;
  }
  .section--header2 .fenetre2 {
    left: 200px;
    top: 250px;
    width: 400px;
    height: 200px;
  }
  .section--header2 .fenetre3 {
    left: 0px;
    width: 350px;
    height: 200px;
  }
  .section--header2 .fenetre1, .section--header2 .fenetre2, .section--header2 .fenetre3 {
    display: block;
    position: relative;
    border: 2px solid var(--color-texte);
    border-radius: 30px;
    background: linear-gradient(to bottom, var(--color-mauve), var(--color-rose));
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: -250px;
    margin-bottom: 41px;
    overflow: hidden;
  }
  .section--header2 .fenetre1 .fenetre--header, .section--header2 .fenetre2 .fenetre--header, .section--header2 .fenetre3 .fenetre--header {
    background-color: var(--color-mauve-fonce);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-texte);
  }
  .section--header2 .fenetre1 .fenetre--header .titre--fenetre, .section--header2 .fenetre2 .fenetre--header .titre--fenetre, .section--header2 .fenetre3 .fenetre--header .titre--fenetre {
    font-family: var(--titre-p1p3);
    font-size: var(--h3-size-p1p3-dt);
    color: var(--color-texte);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre, .section--header2 .fenetre2 .fenetre--header .btn--fenetre, .section--header2 .fenetre3 .fenetre--header .btn--fenetre {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: default;
    padding-right: 16px;
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--minimize, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--minimize, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--minimize {
    width: 15px;
    height: 10px;
    background-color: transparent;
    border: solid 2px var(--color-texte);
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--ligne, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--ligne, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--ligne {
    width: 2px;
    height: 70px;
    background-color: var(--color-texte);
    border-radius: 10%;
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--maximize, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--maximize, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--maximize {
    width: 20px;
    height: 2px;
    background-color: var(--color-texte);
    border-radius: 10%;
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--close, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--close, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--close {
    width: 15px;
    height: 15px;
    background-color: transparent;
    position: relative;
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--close::before, .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--close::after, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--close::before, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--close::after, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--close::before, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--color-texte);
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--close::before, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--close::before, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .section--header2 .fenetre1 .fenetre--header .btn--fenetre .btn--close::after, .section--header2 .fenetre2 .fenetre--header .btn--fenetre .btn--close::after, .section--header2 .fenetre3 .fenetre--header .btn--fenetre .btn--close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .section--header2 .fenetre1 .text--fenetre, .section--header2 .fenetre2 .text--fenetre, .section--header2 .fenetre3 .text--fenetre {
    font-family: var(--texte-p1p3);
    font-size: var(--h2-size-p1p3-dt);
    color: var(--color-texte);
    padding: 4px;
    text-align: center;
    margin: 0;
  }
  .section--header2 .fenetre1 .barre__chargement, .section--header2 .fenetre2 .barre__chargement, .section--header2 .fenetre3 .barre__chargement {
    width: 250px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid black;
    background: #faece5;
    position: relative;
    overflow: hidden;
    margin-left: 40px;
  }
  .section--header2 .fenetre1 .barre__chargement::before, .section--header2 .fenetre2 .barre__chargement::before, .section--header2 .fenetre3 .barre__chargement::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: repeating-linear-gradient(to right, #c8a4dc, #c8a4dc 12px, transparent 12px, transparent 16px);
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-right: 3px solid transparent;
  }

  .section--fichier {
    margin-top: 41px;
    padding: 0 41px 0 41px;
    margin-bottom: 41px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section--fichier .section--fichier__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    padding-bottom: 41px;
    margin-top: 41px;
    gap: 124px;
    border-bottom: 3px solid var(--color-texte);
  }
  .section--fichier .section--fichier__content .img__fichier {
    display: block;
    width: 100px;
    height: 89px;
    background-image: url("../assets/images/fichier-mauve.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .section--fichier .section--fichier__content .img__fichier:hover {
    background-image: url("../assets/images/fichier-ouvert.svg");
    width: 100px;
    height: 80px;
  }
  .section--fichier .section--fichier__content .titre--fichier {
    font-family: var(--titre-p1p3);
    font-size: var(--h2-size-p1p3-dt);
    text-align: start;
  }

  .section--Sujet {
    background: none;
    -webkit-animation: none;
    -webkit-mask-image: none;
    animation: none;
    padding: 0;
    display: flex;
    position: absolute;
    top: 129%;
    left: 12%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    justify-content: center;
    border: 3px solid var(--color-texte);
    border-radius: 30px;
    background: linear-gradient(to bottom, var(--color-mauve), var(--color-rose));
    flex-direction: column;
    overflow: hidden;
    width: 1108px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.4s ease;
  }
  .section--Sujet .sujet1__para {
    margin-left: 41px;
    margin-right: 41px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0;
    gap: 0;
  }
  .section--Sujet .sujet1__para .text--sujet1 {
    font-size: var(--text-size-p1p3-dt);
    text-align: start;
    padding: 0;
    margin: 0;
  }
  .section--Sujet .sujet--tous.animate {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .section--Sujet .fenetre--header {
    background-color: var(--color-mauve-fonce);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-texte);
  }
  .section--Sujet .fenetre--header .section--Sujet1__content {
    padding-bottom: 24px;
    margin-top: 24px;
    margin-left: 24px;
    gap: 41px;
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    transform: none;
  }
  .section--Sujet .fenetre--header .section--Sujet1__content .img__sujet1 {
    display: none;
    width: auto;
    height: 60px;
  }
  .section--Sujet .fenetre--header .titre--sujet1 {
    font-family: var(--titre-p1p3);
    font-size: var(--h3-size-p1p3-dt);
    color: var(--color-texte);
    margin-top: 24px;
    margin-bottom: 24px;
    padding-left: 24px;
  }
  .section--Sujet .fenetre--header .btn--fenetre {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--minimize {
    width: 25px;
    height: 15px;
    background-color: transparent;
    border: solid 3px var(--color-texte);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--ligne {
    width: 2px;
    height: 125px;
    background-color: var(--color-texte);
    border-radius: 10%;
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--maximize {
    width: 30px;
    height: 3px;
    background-color: var(--color-texte);
    border-radius: 10%;
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close {
    width: 35px;
    height: 50px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close::before, .section--Sujet .fenetre--header .btn--fenetre .btn--close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--color-texte);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close:hover::before {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close:hover::after {
    transform: translate(-50%, -50%) rotate(225deg);
  }
  .section--Sujet .fenetre--header .btn--fenetre .btn--close::before, .section--Sujet .fenetre--header .btn--fenetre .btn--close::after {
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .section--Sujet .sujet--content2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .section--Sujet .sujet--content2 .sujet1__para {
    margin-left: 41px;
    margin-right: 41px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0;
    gap: 0;
  }
  .section--Sujet .sujet--content2 .sujet1__para .text--sujet1 {
    font-size: var(--text-size-p1p3-dt);
    text-align: start;
    padding: 0;
    margin: 0;
  }
  .section--Sujet .sujet--content2 .photo__sujet1, .section--Sujet .sujet--content2 .photo__sujet2 {
    margin: 0 20px 20px 41px;
  }
  .section--Sujet .sujet--content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle {
    background-image: url(../assets/images/bulle4.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 31%;
    height: 10%;
    justify-content: center;
    margin: 20px 41px 0px 41px;
    padding: 0;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle3 {
    background-image: url(../assets/images/bulle4.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 30%;
    height: 155px;
    justify-content: center;
    margin: 20px 41px 0px 41px;
    padding: 0;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle3 .text__icone--sujet1 {
    font-size: var(--text-size-p1p3-dt);
    padding: 10%;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle2 {
    background-image: url(../assets/images/bulle3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 90%;
    height: 200px;
    justify-content: center;
    margin: 20px 41px 0px 41px;
    padding: 0;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle2 .icone__sujet1 {
    width: 60px;
    padding: 10%;
  }
  .section--Sujet .sujet--content .section--Sujet1__icones__bulle2 .text__icone--sujet1 {
    font-size: var(--text-size-p1p3-dt);
  }
  .section--Sujet .sujet--content .sujet1__para {
    margin-left: 41px;
    margin-right: 41px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0;
    gap: 0;
  }
  .section--Sujet .sujet--content .sujet1__para .text--sujet1 {
    font-size: var(--text-size-p1p3-dt);
    text-align: start;
    padding: 0;
    margin: 0;
  }

  .section--Sujet.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  #fenetre2 {
    left: 12%;
    top: 120%;
    position: absolute;
  }

  .Ligne {
    display: none;
  }

  /*page2*/
  body.page2 {
    background: linear-gradient(to bottom, var(--color-texte), var(--color-un), var(--color-deux), var(--color-trois), var(--color-quatre));
  }

  .section--header__p2 {
    padding: 0 36px 0 36px;
  }
  .section--header__p2 .header__item1, .section--header__p2 .header__item2, .section--header__p2 .header__item3 {
    font-size: var(--titre-big-p2-dt);
  }
  .section--header__p2 .header__item2 {
    margin: -315px 0px 0 110px;
  }
  .section--header__p2 .header__item3 {
    margin: -315px 0px 0 220px;
  }

  .section--header__photos__p2 {
    width: 90%;
    margin-top: 0;
  }
  .section--header__photos__p2 .header__photo__p2 {
    margin-top: -700px;
  }
  .section--header__photos__p2 .header__photo__p2 .photos--header {
    width: 120%;
  }

  .header__item4 {
    font-size: var(--h1-size-p2-dt);
    margin-top: 36px;
  }

  .header__photo__p2 {
    width: 70%;
    margin-top: -432px;
  }

  .section--Carts {
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 36px 36px 36px 36px;
    /* .carts__BAD1{
         position: absolute;
         width: 100%;
         font-family: var(--titre-p2) ;
         font-size: var(--h4-size-p2-dt);
         -webkit-text-stroke: 2px black;
         text-shadow:-6px 6px 0px var(--color-un);
         top: 410px;
         rotate: 180deg;
         text-align: end;
    }

     .carts__BAD2{
         position: absolute;
         width: 100%;
         font-family: var(--titre-p2) ;
         font-size: var(--h4-size-p2-dt);
         -webkit-text-stroke: 2px black;
         text-shadow:-6px 6px 0px var(--color-un);
         top: 340px;
         text-align: end;
    }

    .carts__BAD4{
         position: absolute;
         width: 100%;
         font-family: var(--titre-p2) ;
         font-size: var(--h4-size-p2-dt);
         -webkit-text-stroke: 2px black;
         text-shadow:-6px 6px 0px var(--color-un);
         bottom: 464px;
         rotate: 90deg;
         text-align: end;
         left: 480px;
    }

     .carts__BAD3{
         position: absolute;
         font-family: var(--titre-p2) ;
         font-size: var(--h4-size-p2-dt);
         -webkit-text-stroke: 2px black;
         text-shadow:-6px 6px 0px var(--color-un);
         bottom: 105px;
         left: 186px;
         rotate: 90deg;
         text-align: start;
    } */
  }
  .section--Carts .carts {
    width: 378px;
    height: 500px;
    border: 4px solid var(--color-texte);
    border-radius: 43px;
    background-color: var(--color-quatre);
    overflow: hidden;
    z-index: 1;
    position: relative;
    cursor: pointer;
  }
  .section--Carts .carts .titre--carts {
    font-family: var(--titre-p2);
    font-size: var(--text-size-p2-dt);
    justify-content: center;
    margin-top: 52px;
    padding: 0 14px 0 14px;
    color: var(--color-texte);
  }
  .section--Carts .carts .img--carts {
    display: block;
    width: 80%;
    height: auto;
    padding: 0 36px 0 36px;
    margin: 0 auto;
  }
  .section--Carts .carts:hover {
    border-color: var(--color-blanc);
    transform: scale(1.03) rotate(3deg);
    transition: all 0.3s ease;
  }
  .section--Carts .carts::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../assets/images/motif-carte.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    background-blend-mode: multiply;
    z-index: 0;
  }
  .section--Carts .carts * {
    position: relative;
    z-index: 1;
  }
  .section--Carts .carts--flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin-top: 36px;
  }
  .section--Carts .carts--flex2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
    gap: 36px;
  }

  @-webkit-keyframes fadeZoomIn {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeZoomIn {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  .section--critique1 {
    position: fixed;
    top: -6%;
    left: 0;
    height: 100%;
    display: none;
    -webkit-mask-image: none;
    background: linear-gradient(to bottom, var(--color-deux) 0%, var(--color-deux) 30%, var(--color-texte) 75%, var(--color-texte) 100%);
    z-index: 99;
    overflow-y: scroll;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.4s ease;
    scrollbar-width: none;
  }
  .section--critique1 .section--Sujet1__content .img--croix__section {
    display: block;
    width: 50px;
    max-width: 600px;
    height: 30px;
    margin-top: 30px;
    align-self: flex-end;
    padding: 0 36px 0 36px;
  }
  .section--critique1 .section--Sujet1__content .img--croix__section:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .section--critique1 .section--Sujet1__content .critique--tous {
    opacity: 1;
    transform: none;
  }
  .section--critique1 .section--Sujet1__content .critique--tous.animate {
    -webkit-animation: none;
            animation: none;
  }
  .section--critique1 .section--Sujet1__content .titre--critique1 {
    font-size: var(--h2-size-p2-dt);
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 0 43px 0 43px;
  }
  .section--critique1 .section--Sujet1__content .Ligne__p2 {
    height: 3px;
  }
  .section--critique1 .section--Sujet1__content .critique1--flex {
    display: flex;
    flex-direction: row;
  }
  .section--critique1 .section--Sujet1__content .critique1--flex .Grand-texte__p2 {
    font-size: var(--h3-size-p2-dt);
    margin-top: 30px;
    padding: 0 43px 0 43px;
  }
  .section--critique1 .section--Sujet1__content .critique1--flex .img__critique1 {
    width: 35%;
    padding: 0 43px 0 43px;
    margin-bottom: 43px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer {
    margin-bottom: 30px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer .text--critique1 {
    font-size: var(--text-size-p2-dt);
    margin-top: 223px;
    padding: 0 190px 0 190px;
  }
  .section--critique1 .section--Sujet1__content .page-dechirer .text--critique2 {
    font-size: var(--text-size-p2-dt);
    padding: 0 190px 0 190px;
  }
  .section--critique1 .section--Sujet1__content .btn--solution1 {
    padding: 0 36px 0 36px;
    margin-bottom: 36px;
  }
  .section--critique1 .section--Sujet1__content .btn--solution1 .btn-solution {
    width: auto;
    height: auto;
    margin-bottom: 36px;
    font-size: var(--h2-size-p2-dt);
    padding: 30px;
    border-radius: 50px;
  }

  .section--critique1.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    -webkit-animation: fadeZoomIn 0.4s ease forwards;
            animation: fadeZoomIn 0.4s ease forwards;
  }

  .section--solution {
    display: none;
    padding: 36px;
    z-index: 999;
    width: 100vw;
  }
  .section--solution .img--croix {
    width: 50px;
    height: 30px;
    margin-top: 30px;
    padding: 0 36px 0 36px;
  }
  .section--solution .img--croix:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .section--solution .text--solution {
    font-size: var(--text-size-p2-dt);
    padding: 0;
    justify-self: center;
  }

  .section--solution.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    width: -webkit-fill-available;
  }

  /*page3*/
  .section--Fenetre {
    width: 1198px;
    height: 600px;
    justify-content: center;
  }
  .section--Fenetre .fenetre--header .titre--fenetre {
    font-size: var(--h3-size-p1p3-dt);
    margin-top: 29px;
    margin-bottom: 29px;
    padding-left: 29px;
  }
  .section--Fenetre .fenetre--header .btn--fenetre {
    padding-right: 29px;
    gap: 29px;
    cursor: default;
  }
  .section--Fenetre .fenetre--header .btn--fenetre .btn--ligne {
    width: 3px;
    height: 87px;
  }
  .section--Fenetre .fenetre--header .btn--fenetre .btn--minimize {
    width: 30px;
    height: 20px;
    border: solid 3px var(--color-texte);
  }
  .section--Fenetre .fenetre--header .btn--fenetre .btn--maximize {
    width: 30px;
    height: 3px;
  }
  .section--Fenetre .fenetre--header .btn--fenetre .btn--close {
    width: 35px;
    height: 30px;
    cursor: default;
  }
  .section--Fenetre .section--Messages {
    padding: 29px 29px 0px 29px;
    gap: 29px;
  }
  .section--Fenetre .section--Messages .section--Messages1 {
    width: 28%;
    height: 146px;
  }
  .section--Fenetre .section--Messages .section--Messages1 .message1 {
    font-size: var(--h3-size-p1p3-dt);
    padding: 28px 0;
  }
  .section--Fenetre .section--Messages .section--Messages2 {
    width: 45%;
    height: 176px;
  }
  .section--Fenetre .section--Messages .section--Messages2 .message2 {
    font-size: var(--h3-size-p1p3-dt);
    padding: 28px 0;
  }
  .section--Fenetre .section--Messages .section--Messages3 {
    width: 25%;
    height: 180px;
  }
  .section--Fenetre .section--Messages .section--Messages3 .message3 {
    font-size: var(--h3-size-p1p3-dt);
    padding: 41px 0;
  }
  .section--Fenetre .section--Messages .section--Messages4 {
    width: 32%;
    height: 180px;
  }
  .section--Fenetre .section--Messages .section--Messages4 .message4 {
    font-size: var(--h3-size-p1p3-dt);
    padding: 41px 0;
  }
  .section--Fenetre .section--Messages .section--Messages5 {
    width: 28%;
    height: 146px;
  }
  .section--Fenetre .section--Messages .section--Messages5 .message5 {
    font-size: var(--h3-size-p1p3-dt);
    padding: 28px 0;
  }

  .section--Fenetre::after {
    width: 70px;
    height: 70px;
  }
}

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