.flexMid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main {
  background: var(--color_01_pink);
}

header {
  position: relative;
  height: 80px;
  background: rgb(249, 241, 230);
  z-index: 1;
}

#hd_header {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10vw;
}
#hd_header a:nth-of-type(1) {
  height: 100%;
}
#hd_header img {
  height: 100%;
  margin: auto 40px;
}

.hd_button div {
  border-radius: 5px;
}
.hd_button div:nth-of-type(1) {
  padding: 10px 14px 6px 14px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color_04_yellow);
}
.hd_button div:nth-of-type(1) a {
  color: var(--color_02_green);
}
.hd_button div:nth-of-type(2) {
  padding: 2px 0;
  text-align: center;
  background: var(--color_03_red);
}
.hd_button div:nth-of-type(2) a {
  font-size: 0.82rem;
  color: var(--color_04_yellow);
}

@media screen and (max-width: 680px) {
  header {
    height: 60px;
  }
  #hd_header {
    padding: 0 10px;
  }
  #hd_header img {
    margin: 0;
  }
  .hd_button div:nth-of-type(1) a {
    font-size: 10px;
  }
  .hd_button div:nth-of-type(2) {
    display: none;
  }
}
#dp_depasse {
  position: absolute;
  margin-top: -185px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#dp_depasse h4 {
  position: absolute;
  top: 240px;
  left: 60px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  font-size: 15px;
  visibility: hidden;
  pointer-events: none;
  color: var(--color_03_red);
}
#dp_depasse img {
  width: 30px;
}

#dp_couille {
  -webkit-transition: 400ms;
  transition: 400ms;
  cursor: pointer;
}

@media screen and (max-width: 680px) {
  #dp_depasse {
    margin-top: -125px;
  }
  #dp_depasse img {
    width: 20px;
  }
  #dp_depasse h4 {
    font-size: 10px;
    top: 150px;
    left: 40px;
  }
}
#fr_first_review {
  height: max(100dvh - 80px - 24px, 620px);
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fr-main-view {
  margin: auto;
  margin-top: 18vh;
  opacity: 1;
}

.fr_back img {
  position: absolute;
  z-index: 0;
}
.fr_back img:nth-of-type(1) {
  width: 190px;
  margin-top: -90px;
  margin-left: -160px;
}
.fr_back img:nth-of-type(2) {
  width: 330px;
  margin-top: -95px;
  margin-left: 550px;
}
.fr_back img:nth-of-type(3) {
  width: 220px;
  margin-top: 400px;
  margin-left: -70px;
}
.fr_back img:nth-of-type(4) {
  width: 200px;
  margin-top: 340px;
  margin-left: 730px;
}

.fr_content {
  position: relative;
  margin: auto;
  width: 750px;
  z-index: 10;
}
.fr_content h1 {
  padding-bottom: 10px;
}
.fr_content h2 {
  padding-bottom: 15px;
  text-align: justify;
}
.fr_content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1130px) {
  .fr_back img:nth-of-type(1) {
    width: 15vw;
    margin-top: -5vw;
    margin-left: -10vw;
  }
  .fr_back img:nth-of-type(2) {
    width: 32vw;
    margin-left: 50vw;
  }
  .fr_back img:nth-of-type(3) {
    width: 20vw;
    margin-top: 40vw;
  }
  .fr_back img:nth-of-type(4) {
    width: 18vw;
    margin-top: 65vw;
    margin-left: 45vw;
  }
}
@media screen and (max-width: 860px) {
  #fr_first_review > div {
    margin-top: 14vh;
  }
  .fr_content {
    width: 90vw;
  }
  .fr_content h1 {
    font-size: 12vw;
  }
  .fr_content h2 {
    font-size: 5.5vw;
  }
  .fr_content div {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fr_content button {
    margin: 5px;
    width: 70vw;
    height: 10vw;
    border-radius: 100px;
    font-size: 5vw;
  }
}
@media screen and (max-width: 680px) {
  .fr_back img:nth-of-type(2) {
    margin-left: 60vw;
  }
  .fr_back img:nth-of-type(3) {
    margin-left: 0px;
    margin-top: 60vw;
    width: 30vw;
  }
  #fr_first_review {
    height: calc(100vh - 60px - 24px);
  }
}
.pc-pie-chart {
  width: 100%;
  margin: auto 15px;
  opacity: 0;
}
.pc-pie-chart > div {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pc-pourcentage {
  width: min(75dvw, 360px);
  aspect-ratio: 1;
  margin: min(8dvw, 30px);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: conic-gradient(from 0deg, var(--color_04_yellow) 0deg 90deg, var(--color_03_red) 0deg 360deg);
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-box-shadow: 5px 5px 0px var(--color_02_1_green);
          box-shadow: 5px 5px 0px var(--color_02_1_green);
}
.pc-pourcentage > div {
  margin: auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: inset 5px 5px 0px var(--color_02_1_green);
          box-shadow: inset 5px 5px 0px var(--color_02_1_green);
  background-color: var(--color_01_pink);
}

.pc-description {
  width: 80%;
  margin: 5px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.pc-description div {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: var(--color_03_red);
}
.pc-description p {
  padding-left: 5px;
  font-size: min(4vw, 1.2rem);
}
.pc-description:nth-of-type(2) div {
  background-color: var(--color_04_yellow);
}

.pc-results {
  text-align: center;
}
.pc-results h1 {
  margin: auto;
  max-width: 800px;
  font-size: min(7vw, 2.5rem);
  margin-top: 45px;
  margin-bottom: 15px;
}
.pc-results h2 {
  max-width: 1000px;
  font-size: min(5vw, 2rem);
}

.fr-pc-hide {
  display: none;
}

.fr-pc-opacity {
  opacity: 0;
}

.fr-pc-amin-pie {
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#yl_yellow {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color_04_yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.yl_back {
  position: absolute;
  width: 200px;
  top: 100px;
  left: 82%;
  z-index: -1;
}

.yl_coucouille {
  margin: 0 auto;
  margin-top: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.yl_coucouille img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  rotate: 20deg;
  margin-top: 2px;
  margin-left: 15px;
  width: 25px;
}

.yl_main {
  text-align: center;
  margin: auto auto 45px auto;
  padding: 100px 0px;
  max-width: 940px;
}
.yl_main h1 {
  font-size: min(12vw, 5rem);
  line-height: 0.9;
  margin-bottom: 25px;
}
.yl_main p {
  font-size: min(3.5vw, 1.2rem);
  margin: auto;
  margin-top: 15px;
}

@media screen and (max-width: 960px) {
  .yl_main p {
    text-align: justify;
    margin: 15px;
  }
  .yl_main p br {
    display: none;
  }
}
#mg_minigame {
  height: 450px;
}

.mg_title {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mg_title h1 {
  margin-top: 80px;
  margin-bottom: 15px;
}
.mg_title p {
  margin-top: 15px;
}

@media screen and (max-width: 680px) {
  .mg_title button {
    width: min(60vw, 360px);
  }
}
.at_affichage_test > div {
  border-top: solid 20px var(--color_03_red);
  width: 100%;
  height: min(200vw, 800px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.at_affichage_test h1 {
  font-size: min(15vw, 6.35rem);
  margin-top: -65px;
  text-align: center;
  max-width: 750px;
  margin-bottom: 50px;
}

.at_balls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.at_balls div {
  width: min(35vw, 180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color_03_red);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
  -webkit-box-shadow: 0px 0px 0px 10px var(--color_02_1_green);
          box-shadow: 0px 0px 0px 10px var(--color_02_1_green);
}
.at_balls div:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

footer {
  height: auto;
  background: var(--color_02_1_green);
}

footer div:nth-of-type(1) {
  text-align: center;
  padding: 6px;
  background: var(--color_03_red);
}

footer div:nth-of-type(1) p {
  color: var(--color_01_pink);
  font-size: 12px;
}

footer div:nth-of-type(2) {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer a {
  margin: auto;
}

footer img {
  height: 30px;
  padding-top: 3px;
}/*# sourceMappingURL=index.css.map */