/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
/****************************************************** THEME SPEED RACE *********************************************************/
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/
/*********************************************************************************************************************************/

@font-face {
  font-family: "Confiance";
  src: url("../font/Confiance-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Confiance";
  src: url("../font/Confiance-Medium.ttf") format("truetype");
  font-weight: 500;
    font-display: swap;
}


@font-face {
  font-family: "Confiance";
  src: url("../font/Confiance-Bold.ttf") format("truetype");
  font-weight: 700;
    font-display: swap;
}


html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Confiance", "Helvetica Neue", "Roboto", "Arial", sans-serif;
  font-style: normal;
}

a {
  text-decoration: none;
}

* {
  transition: 0.2s;
}

section {
  height: 100vh;
  width: 100%;
  padding: 8rem 0;
  box-sizing: border-box;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 14.5px;
  }
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 13.5px;
  }
}

@media screen and (max-width: 1080px) {
  html {
    scroll-padding-top: 3rem;
    font-size: 13px;
  }
}

@media screen and (max-width: 992px) {
  section {
    height: unset;
    font-size: 12.5px;
  }
}

@media screen and (max-width: 600px) {
  html {
    scroll-padding-top: 3.5rem;
    font-size: 13px;
  }
}

@media screen and (min-width: 2201px) {
  html {
    font-size: 24px;
  }
}

@media screen and (min-width: 2981px) {
  html {
    font-size: 34px;
  }
}

h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 5.25rem;
  z-index: 1;
  line-height: 1;
  text-align: center;
  margin: 0 0 1rem;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
  text-shadow: 0 0 0.75rem black;
}
h2 span {
  display: block;
  font-size: 2.25rem;
}

/******* MENU *******/

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 3;
  -webkit-box-shadow: inset 0px 49px 29px 8px rgba(0,0,0,0.4) ;
box-shadow: inset 0px 49px 29px 8px rgba(0,0,0,0.4);
}

.header-top-logo {
    position: absolute;
    top: 0.25rem;
    left: 1rem;
    width: 7rem;
}

.header-top-logo:hover {
  opacity: 0.9;
}

.nav-bar > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar li > a {
  color: white;
  font-size: 1.25rem;
  display: block;
  position: relative;
  padding: 1.675rem 1.5rem;
  font-family: "Confiance";
      text-shadow: 0 0 12px black;
}

.nav-bar li > a.active {
  text-shadow: 0px 0px 7px #ff40d6;
  color: #ff40d6;
  font-weight: 700;
}


/******* MENU MOBILE *******/

.menu-mobile {
  display: none;
}

.menu-mobile-switch {
  display: block;
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  cursor: pointer;
}

.menu-mobile-switch > svg {
  fill: white;
  width: 2.5rem;
  height: 2.5rem;
}

.menu-panel {
  display: none;
  padding: 4rem 0;
  background: black;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100vh - 8rem);
  z-index: 3;
}

.menu-panel nav > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu-panel nav > ul > li {
  border-top: 2px solid #e615aa;
  width: 100%;
}
.menu-panel nav > ul > li:last-child {
  border-bottom: 2px solid #e615aa;
}
.menu-panel nav > ul > li > a {
  color: white;
  font-size: 2rem;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 1.25rem 0;
  margin: 0.5rem 0;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.header-result {
  position: absolute;
  top: 0rem;
  right: 0rem;
  cursor: pointer;
  gap: 1rem;
  display: flex;
  font-size: 1.25rem;
  align-items: center;
  color: white;
  height: max-content;
}
.header-result:hover {
  opacity: 0.9;
}

.burger-close {
  position: absolute;
  top: 1.5rem;
  cursor: pointer;
  right: 1.5rem;
  filter: grayscale(1) brightness(10);
}

@media screen and (min-width: 2201px) {
  .nav-bar li > a {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1680px) {
  .nav-bar li > a {
    font-size: 1.25rem;
    padding: 1.65rem 1.25rem;
  }
}

@media screen and (max-width: 1080px) {
  .nav-bar li > a {
    font-size: 1.15rem;
    padding: 1.675rem 0.875rem;
  }
  .header-result {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 992px) {
  .menu-panel .header-logo {
    margin: 0 auto 3rem;
    display: flex;
  }
  .menu-panel .header-logo > img {
    max-width: unset;
    width: 8rem;
    margin: 0 auto;
    position: relative;
        top: unset;
        left: unset;
  }
  .menu-mobile {
    display: block;
  }
  .nav-bar {
    display: none;
  }
  h2 span {
    display: block;
    font-size: 1.75rem;
  }
  .header-top {
    border-bottom: 0px solid #ff7900;
    margin: 0 0 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .menu-panel nav > ul > li > a {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .menu-panel nav > ul > li > a {
    font-size: 1.5rem;
  }
  .menu-panel .header-logo > img {
    width: 8rem;
  }
  .menu-mobile-switch {
    top: 0.75rem;
    cursor: pointer;
  }

}

.wrapper {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 3rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1680px) {
  .wrapper {
    max-width: 1440px !important;
  }
}
@media screen and (max-width: 1440px) {
  .wrapper {
    width: 100%;
    max-width: 1280px !important;
  }
}
@media screen and (max-width: 1380px) {
  .wrapper {
    width: 100%;
    max-width: 1180px !important;
  }
}
@media screen and (max-width: 1280px) {
  .wrapper {
    width: 100%;
    max-width: 1024px !important;
  }
  section {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 1120px) {
  .wrapper {
    max-width: calc(100% - 6rem) !important;
    padding: 0 3rem;
  }
}

@media screen and (max-width: 992px) {
  .wrapper {
    max-width: calc(100% - 4rem)!important;
    padding: 0rem 2rem;
    min-height: unset;
  }
  section {
    padding: 3rem 0;
  }
  .header-top-logo {
        position: absolute;
        top: 1rem;
        left: 5rem;
        width: 6rem;
  }
  h2 {
    font-size: 3rem !important;
  }
  h1 {
    font-size: 3rem !important;
  }
}

@media screen and (max-width: 604px) {
  .wrapper {
    padding: 0 1rem;
    max-width: calc(100% - 2rem)!important;
    margin: 0 auto;
  }
  h1,
  h2 {
    font-size: 3rem !important;
  }
  section {
    padding: 2rem 0;
  }
  .header-result {
    font-size: 1.125rem;
  }

}
@media screen and (max-width: 420px) {
  h2 {
    font-size: 2.5rem!important;
  }
  .header-result {
    font-size: 1rem;
  }
    .header-top  .header-top-logo {
      display: none;
    }
  .header-top-logo-mobile{
    display: flex!important;
  }
      .header-top-logo {
        top: 0.675rem;
        left: 5rem;
        width: 5rem;
    }
}

@media screen and (min-width: 2201px) {
  .wrapper {
    width: 2200px;
    max-width: unset;
  }
  section {
    padding: 6rem 0;
  }
  h2 {
    font-size: 3.5rem !important;
  }

}

@media screen and (min-width: 2981px) {
  .wrapper {
    width: 2560px;
  }

}

.pink {
  color: #e714ba;
}
.blue{
   color: #2bd7ff; 
   font-weight: 500;
}

/*********************************************************************************************************************************/
/********************************************************** HOME *****************************************************************/
/*********************************************************************************************************************************/

#home {
  background-image: url("../img/home-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center;
}

#home .wrapper {
  width: 100%;
  max-width: 1680px;
  align-items: end;
  padding: 6rem 0 2rem;
}

h1 {
  color: white;
  font-style: normal;
  font-size: 2.5rem;
}

/**** Footer de home ****/

.main-logo {
  max-width: 34vw;
}

/**** Home right ****/

.home-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  gap: 1.25rem;
  margin-top: 1rem;
  position: relative;
}

.home-right h1 {
  text-align: center;
  margin: 0;
  font-size: 2.125rem;
  font-weight: 500;
  text-shadow: 0px 0px 6px black;
}

.home-right-date{
  font-size: 1.5rem;
  color: white;
}

.submit-score {
  position: relative;
  cursor: pointer;
}

.home-buttons{
    display: flex;
    align-items: center;
}


.available-on {
  text-align: center;
  color: #e714ba;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.25rem;
  gap: 0rem;
  width: fit-content;
    position: absolute;
    bottom: -10rem;
    text-shadow: 0px 0px 6px black    
}

.available-on-mobile {
  display: none;
}
.created-in {
  position: absolute;
  left: 0rem;
  bottom: 2rem;
  max-width: 100%;
}

@media screen and (max-width: 1440px) {
  .available-on-desktop {
    display: none;
  }

  .available-on-mobile {
    display: block;
    max-width: 125%;
  }
}

@media screen and (max-width: 1120px) {
  h1 {
    font-size: 2rem !important;
  }
  #home .wrapper {
    padding: 8rem 0 2rem;
  }
}

@media screen and (min-width: 2201px) {
  .main-logo {
    transform: scale(1.5);
    margin-bottom: 5rem;
    margin-top: 6rem;
  }

  .available-on img {
    transform: scale(1.5);
  }
  .available-on {
    position: relative;
    bottom: unset;
    margin-top: 2rem;
  } 
}

/**** MEnu left ****/

.left-menu {
  position: fixed;
  left: 0;
  top: 20vh;
  z-index: 1;
}

.left-menu_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}

.left-menu_content > svg {
  position: absolute;
}

.left-menu_dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  align-items: center;
}


.menu-dot {
  width: 4px;
  height: 55px;
  background-color: white;
      transform: skewY(30deg);

}

.menu-dot.active{
  background-color: #e714ac;
  width: 12px;
  height: 78px;
        box-shadow: 0px 0px 5px #ff40d6;
}
.menu-dot:hover {
      box-shadow: 0px 0px 5px #ff40d6;
}
.top-arrow, .bottom-arrow{
  text-align: center;
  color: white;
  font-size: 1.25rem;
}


/* Code de la carte */

.copy-code {
  position: relative;
  cursor: pointer;
  width: max-content;
  display: flex;
  flex-direction: column;
}


.mapcode_text {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  color: #fe7600;
  text-align: left;
  text-shadow: 0 0 10px rgba(254, 118, 0, 0.8);
}
.mapcode_numbers {
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  display: none;
  font-style: normal;
  width: max-content;
  text-align: left;
}
.copy-code:hover .mapcode_numbers {
  color: black;
}

#countdown,
#countdown2 {
  margin: 0;
}

.copy-code:hover .mapcode_numbers {
  color: white;
}

.map_code_copy {
  position: absolute;
  top: -0.5rem;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: none;
}
.map_code_bg:hover{
  opacity: 0.9;
}

.submit-score img:hover{
  opacity: 0.9;
}

@media screen and (max-width: 1440px) {
  #home .wrapper {
    max-width: 1180px;
  }
  .playable-on-mobile {
    display: block;
  }

  .map_code_copy {
    top: -1.25rem;
  }
  .nav-bar > ul {
    margin: 0 0 0 9.75rem;
    justify-content: flex-start;
  }
  .left-menu {
    left: -0.5rem;
    transform: scale(0.75);
  }
  .submit-score img {
    width: 320px;
  }
  .header-result {
      height: 4rem;
  }
  .available-on {
      bottom: -8rem;
  }
  .main-logo {
      max-width: 31vw;
  }
  .home-right {
      margin-top: 0rem;
  }
}

@media screen and (max-width: 992px) {
  #home .wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-logo {
    max-width: 38vw;
    height: auto;
  }

  .playable-on {
    gap: 1rem;
    width: fit-content;
    align-items: center;
  }
  .created-in {
    position: relative;
    right: unset;
    left: unset;
    bottom: unset;
  }
  #home {
    padding: 6rem 0 4rem;
  }
  #home .wrapper {
    padding: 0;
  }

  .home-buttons{
      display: flex;
      align-items: center;
          flex-direction: column;
  }
  .available-on {
      position: relative;
      bottom: unset;
  }
}

@media screen and (max-width: 800px) {
  .left-menu {
    display: none;
  }
  .main-logo {
    max-width: 35vw;
  }
  .home-left {
    margin: 4rem 0 0;
  }
  .header-result{
        transform: scale(0.75) translateX(68px);
  }
}
@media screen and (max-width: 600px) {
  .home-left {
    margin: 0rem 0 0;
  }

  .home-left-button {
    font-size: 1.375rem;
  }

  .main-logo {
    max-width: 32vw;
    height: auto;
  }
  #home {
    background-position: right 37% center;
  }
    h1 {
    font-size: 1.75rem !important;
  }
    .header-result{
        transform: scale(0.75) translateX(68px);
  }

}

@media screen and (max-width: 480px) {
      .header-result{
      transform: scale(0.6) translateY(-6px) translateX(136px);
  }
    .submit-score img {
    width: 300px;
  }
      .map_code_bg {
        width: 280px;
    }
    .main-logo {
    max-width: 60vw;
  }
      .created-in {
        max-width: 280px;
    }
}

@media screen and (max-width: 420px){
      h1 {
        font-size: 1.5rem !important;
    }
}

@media screen and (min-width: 2201px) {
  .left-menu_content {
    transform: scale(1.125) translateX(0.125rem);
  }
  #home .wrapper {
    max-width: 1920px;
  }
  .playable-on {
    transform: scale(1.25);
  }
  .home-left-bottom {
    left: 8.75rem;
  }
  .created-in {
        transform: translateX(3rem) scale(1.25);
  }
  .submit-score img {
    transform: scale(1.5);
  }

  .map_code_bg {
    transform: scale(1.5);
    z-index: 0;
  }
  .home-buttons {
      gap: 6rem;
  }
  .copy-code > div {
    left: 29px;
    top: 1.125rem;
    z-index: 2;
  }
      .header-result {
        width: auto;
        transform: scale(1.25) translate(-41px, 7px);
    }
  .top-arrow, .bottom-arrow{
    font-size: 1.125rem;
  }
  .left-menu {
      left: 0.25rem;
  }

}

@media screen and (min-width: 2981px) {
  .main-logo {
    transform: scale(2);
    margin-bottom: 8rem;
  }
  .map_code_bg {
    transform: scale(2);
  }
  .home-buttons {
        gap: 12rem;
    }
  .playable-on {
    transform: scale(1.5);
  }
  #home .wrapper {
    max-width: 2560px;
  }
  .created-in {
    transform: scale(2) translateX(3rem);
  }
  .submit-score img {
    transform: scale(2.15);
  }
  .available-on img {
    transform: scale(2);
  }
  .mapcode_text {
    margin-bottom: 0.5rem;
  }
  .copy-code > div {
    top: 0;
  }
    .header-result {
        width: auto;
        transform: scale(1.75) translate(-86px, 15px);
    }
  .guide-nav_block_long .guide-nav_block_number {
      top: -2.5rem;
      left: 1rem;
  }    
}




/*********************************************************************************************************************************/
/********************************************************* récompenses ***********************************************************/
/*********************************************************************************************************************************/

#recompenses{
  background-image: url('../img/recompenses-bg.webp');
      background-size: cover;
}
.prize-mobile{
  display: none;
}

.prizes{
      display: flex;
    align-items: center;
    height: max-content;
    min-height: 70vh;
}

.tas{
  position: absolute;
  bottom: 0;
  right: 0;
    max-width: 30vw;
}

.prize-desktop{
  max-width: 63vw;
}

.recompenses-mention {
    font-size: 0.75rem;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 1366px){
  .prize-desktop {
      max-width: 66vw;
  }
}

@media screen and (max-width: 1280px){
  .tas {
    max-width: 25vw;
}
}

@media screen and (max-width: 768px){
  .prize-mobile{
    display: block;
    max-width: 60vw;
  }
  .prize-desktop{
    display: none;
  }
  .tas {
      max-width: 32vw;
  }
  .recompenses-mention {
      width: 50%;
      text-align: left;
  }
}
@media screen and (max-width: 480px){
  .prize-mobile{
        max-width: 90%;
      margin: 0 auto 1rem;
  }
  .tas {
      position: absolute;
      bottom: 0;
      right: 0;
      max-width: 50vw;
  }
  .prizes {
      min-height: unset;
        margin-bottom: 22rem;
  }
      .recompenses-mention {
        width: 40%;
        text-align: left;
    }
}
@media screen and (min-width: 2201px){
    .tas {
      transform: scale(1.25) translate(-17%, -17%);
  }

}


@media screen and (min-width: 2560px){
    .tas {
      transform: scale(1.5) translate(-17%, -17%);
  }

}



/*********************************************************************************************************************************/
/*********************************************************** trailer **************************************************************/
/*********************************************************************************************************************************/

#trailer {
  padding: 0;
  background: black;
}

.video-box {
  width: fit-content;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.video-box-resp {
  padding-bottom: calc(56.125%);
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

#trailer .video-box-resp {
  padding-bottom: calc(56.125%);
}

.video-box-resp > video {
  width: 100%;
  height: auto;
}

#course .scroll-down > span {
  color: white;
}

video {
  background-color: transparent !important;
}

@media screen and (max-width: 800px) {
  #course h2 {
    left: 5%;
    top: 13%;
    font-size: 26px;
  }
}

#course video::-webkit-media-controls-timeline {
  background-color: #ff7900;
  padding-bottom: 0;
  margin-bottom: 20px;
  max-width: 90%;
  transform: translateX(2.5%);
}



/*********************************************************************************************************************************/
/*********************************************************** epreuves **************************************************************/
/*********************************************************************************************************************************/

#epreuves{
  background-image: url('../img/epreuves-bg-1.webp');
      background-size: cover;
}

.epreuves-row{
    display: flex;
    justify-content: flex-start;
    margin-top: 3rem;
    margin-left: 7rem;
    position: relative;
}

.epreuve-block{
  display: none;
}
.epreuve-block.active{
  display: block;
  position: relative;
  min-width: 27rem;
}
.epreuve-block.active img {
        transform: translateX(-12px);
    }
@media screen and (min-width: 1281px){
  .epreuve-block.active img{
      max-width: 30vw;
  }  
}

@media screen and (min-width: 993px) and (max-width: 1920px){
  .epreuve-block.active img{
      max-width: 38vw;
  }  
}
.epreuve-block_header{
  display: flex;
    align-items: center;
    gap: 1rem;
}

.epreuve-block_name_number{
  font-size: 1.25rem;
  text-transform: uppercase;
  color: white;
  position: relative;
    background-color: #e615aa;
    border: 2px solid #fa5bd7;
    padding: 0.25rem 0.75rem; 
      box-shadow: 0px 0px 10px 5px rgba(230, 21, 170, 0.4); 
}

.epreuve-block_name{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 3rem;
    margin-top: 1rem;
    z-index: 1;
    line-height: 1;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
}

.epreuve-block_name_descr{
  font-size: 1rem;
  color: white;
}


.epreuves-nav-arrows{
  display: flex;
  position: relative;
    width: 190px;
    height: 120px;
}

.epreuves-nav_text{
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 0px 0px 6px black;
}
.epreuves-nav-left-arrow:hover, .epreuves-nav-right-arrow:hover{
  opacity: 0.8;
}
.epreuves-nav-left-arrow, .epreuves-nav-right-arrow{
  cursor: pointer;
}
.epreuves-nav-left{
    position: absolute;
    left: 8px;
}
.epreuves-nav-right{
    position: absolute;
    right: 4px;
    bottom: 0px;  
}
.epreuves-nav-container{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: 10rem;
    position: absolute;
    right: 3rem;
    bottom: 3rem;
}
.epreuves-nav{
  width: max-content;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.epreuve-block_text{
border-radius: 6px;
    border: 2px solid #2bd7ff;
    background-color: #021246;
    padding: 0.75rem 1rem;
    color: white;
    width: 30vw;
    position: absolute;
    left: 32rem;
    top: 10rem;
    opacity: 0.94;
    display: none;
}

.epreuve-block_text p{
    margin: 0.375rem 0;
}

.epreuve-block_text_play:hover{
  opacity: 0.9;
}

.epreuve-block_text_play, .epreuve-block_text_read {
    position: absolute;
    right: -83px;
    top: 200px;
    cursor: pointer;
}
.epreuve-block_text_read{
  transform: translate(-9px, 9px);
  display: none;
}


.droide{
    position: absolute;
    right: -87px;
    top: 115px;
}

@media screen and (max-width: 1366px){
  .epreuve-block_text{  
    left: 36rem;
  }
}

@media screen and (max-width: 992px){
  .epreuve-block_text {
      width: 47vw;
      position: relative;
      left: unset;
      top: unset;
      transform: translateX(8rem);
  }
  .epreuve-block_text_play, .epreuve-block_text_read {
      position: absolute;
    right: -83px;
    top: 240px;
      cursor: pointer;
  }
}
@media screen and (max-width: 800px){
  .epreuve-block.active {
      display: block;
      display: flex;
      flex-direction: column;
        align-items: self-start;
      margin-top: 2rem;
  }
    .epreuves-nav-container {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      position: relative;
      right: unset;
      bottom: unset;
      margin-top: 2rem;
      margin-left: 0;
  }
    .epreuve-block.active img{
    max-width: 85vw;
  }
    
  .epreuve-block_name_descr{
    font-size: 1.375rem;
    color: white;
  }
}

@media screen and (max-width: 600px){
   .epreuve-block.active {
      align-items: center;
  } 
    .epreuve-block.active img {
        max-width: 100%;
    }
  .epreuve-block_name {
      font-size: 2.25rem;
  }
  .epreuves-row{
    justify-content: center;
    margin-top: 2rem;
  }
    .epreuves-row {
      display: flex;
      justify-content: flex-start;
      margin-top: 0;
      margin-left: 0;
      position: relative;
      justify-content: center;
  }
      .epreuve-block_text {
        transform: translateX(4rem);
    }
  .epreuve-block.active img {
        transform: translateX(-0);
    }
    .droide {
        position: absolute;
        left: -49px;
        top: 233px;
    }
  .epreuve-block_text_play, .epreuve-block_text_read {
    top: 252px;
    left: 36px;
      right: unset;
  }  
  .epreuve-block_text_read {
      transform: translate(9px, 9px);
  }

}
@media screen and (max-width: 480px){
  .epreuve-block_name {
      font-size: 2rem;
  }
}

@media screen and (min-width: 2201px){
    .epreuve-block img {
        transform: scale(1.25) translateY(2rem);
    }
    .epreuves-nav-arrows {
      margin-top: 7rem;
      transform: scale(1.25);
  }
  .epreuve-block.active img{
        transform: scale(1.5) translate(25%, 25%);
  }
  .epreuve-block_text_play, .epreuve-block_text_read{
        right: -193px;
    transform: scale(1.5);
  }
  .epreuve-block_text_read{
        right: -193px;
    transform: scale(1.5) translate(-6px, 6px);
  }
  .epreuve-block_text{
    left: 36rem;
  }
  .epreuve-block_name_descr{
    font-size: 1.25rem;
  }
  
}
@media screen and (min-width: 2981px){
    .epreuves-nav-arrows {
      margin-top: 3rem;
  }
      .epreuve-block img {
        transform: scale(1.5) translateX(1rem) translateY(2rem);
    }
      .epreuves-nav-arrows {
      margin-top: -4rem;
      transform: scale(1.25);
  }
    .epreuve-block.active img{
        transform: scale(2) translate(25%, 25%);
  }
  .epreuves-nav {
    transform: scale(1.5) translateY(40%);
}
.droide {
    position: absolute;
    right: -87px;
    top: 223px;
}
.epreuve-block_text_play, .epreuve-block_text_read {
    top: 460px;
    cursor: pointer;
}
.epreuves-nav-container {
    right: 4rem;
}
.epreuves-nav_text {
    margin-top: 0.5rem;
}
}


/*********************************************************************************************************************************/
/**********************************************************  GUIDE ***************************************************************/
/*********************************************************************************************************************************/

#guide{
  background-image: url('../img/bg-guide.webp');
}

.guide-nav{
    width:500px;
      display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: end;
    z-index: 2;
    margin-top: 1.5rem;
}

.guide-main{
  display: flex;
 } 

/* VErsion short */

.guide-nav_block_short{
    background-color: #e615aa;
    border: 2px solid #fa5bd7;
    width: max-content;
    padding: 0.25rem 1rem;
    display: flex;
    cursor: pointer;
    width: 280px;
  box-shadow: 0px 0px 10px 5px rgba(230, 21, 170, 0.4);   
}

.guide-nav_block_short .guide-nav_block_number{
  color: white;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
    font-size: 1.875rem;
    display: block;
}
.guide-nav_block_short .divider{
    color: #061449;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
    font-size: 1.75rem;
    padding: 0 0.75rem;
    display: block;
}
.guide-nav_block_short .guide-nav_block_title{
  color: #061449;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
    text-transform: uppercase;
    font-size: 1.875rem;
    display: block;
}


.guide-nav_block_cta{
    position: relative;
    width: fit-content;
}
.guide-nav_block_cta:hover{
    opacity: 0.9;
}
.guide-nav_block_cta span{
  position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.guide-nav_block_long, .guide-nav_block .guide_stepbox_active{
  display: none;
}

.guide-nav_block.active .guide-nav_block_long {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 1rem;
    padding: 2.5rem 3rem 2rem 3rem;
}
.guide-nav_block.active .guide-nav_block_long img{
    width: fit-content;
}

.guide-nav_block.active{
  position: relative;
}


.guide-nav_block.active .guide_stepbox_active{
  display : block;
}

.guide-nav_block.active .guide-nav_block_short{
  display: none;
}

.guide-nav_block_long .guide-nav_block_number{
  position:absolute;
  color: #ffffff;
    text-transform: uppercase;
    top: -1.75rem;
    left: 2.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    color: white;
    background-color: #e615aa;
    border: 2px solid #fa5bd7;
    padding: 0.375rem 0.5rem;
    box-shadow: 0px 0px 10px 5px rgba(230, 21, 170, 0.4);
    width: fit-content;
}

.guide-nav_block_title{
  font-size: 1rem;
  color: white;
}

.guide-nav_block_arrows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
  display: none;
}
.guide-nav_block_arrows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
  display: none;
}

.guide-nav_block.active .guide-nav_block_arrows {
  display: flex;
  cursor: pointer;
}

.guide-nav_block_long p{
  color: white;
  font-size: 1rem;
  margin: 0.25rem 0;
}


#guide-nav_block_4 .guide-nav_block_long img{
  cursor: pointer;
}
#guide-nav_block_4 .guide-nav_block_long img:hover{
  opacity: 0.9;
}


/* Image associée */

.guide-steps_content{
  display: none;
}
.guide-steps_content.active{
    display: block;
    transform: translateX(-3rem);
    z-index: 0;
    position: relative;
}

 .guide-img{
     width: calc(100% - 500px); 
 }

 .guide-steps_content img{
    width: calc(100%);
 }

@media screen and (max-width: 800px){
  .guide-nav {
      align-items: center;
  }
  .guide-nav_block.active {
      position: relative;
      margin-top: 1rem;
  }
  .guide-nav_block.active .guide-nav_block_long{
    width: 324px;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  .guide-nav_block_long p {
      color: white;
      font-size: 1.15rem;
  }
  
 .guide-img{
      display: none;
  }
      .guide-nav {
        align-items: center;
        width: 100%;
    }
}
@media screen and (max-width: 480px){
  .guide-nav_block.active .guide_stepbox_active {
      display: block;
      width: 340px;
  }
  .guide-nav_block.active .guide-nav_block_long {
      width: 343px;
      box-sizing: border-box;
    }
    .guide-nav_block_long p {
      color: white;
      font-size: 1.15rem;
      margin: 0.25rem 0;
  }
  .guide-nav_block.active .guide-nav_block_long img {
      width: 225px;
  }
  .available_on_guide{
    display: none;
  }
  .guide-main{
      justify-content: center;
  } 
}

@media screen and (max-width: 420px){
    .guide-nav_block.active .guide_stepbox_active {
        width: 292px;
    }
  .guide-nav_block.active .guide-nav_block_long {
        width: 290px;
    }
    .guide-nav_block_long p {
      color: white;
      font-size: 1.15rem;
      margin: 0.25rem 0;
  }

    .guide-nav_block_long p {
        color: white;
        font-size: 1rem;
        margin: 0.25rem 0;
    }
    .guide-nav_block_short{
          width: 240px;
    }
    .guide-nav {
        width: 266px;
    }
}


@media screen and (min-width: 2201px){
  .guide-nav_block_short {
      width: 420px;
  }
  .guide-nav_block.active .guide_stepbox_active {
      transform: scale(1.5);
      margin: 4rem 0 2rem;
  }
    .guide-nav_block.active .guide-nav_block_long {
      top: 3rem;
      left: -1rem;
      padding: 1rem 1rem 2rem 1rem;
      width: 18rem;
  }
  .guide-nav_block.active .guide-nav_block_long img {
      width: fit-content;
    transform: scale(1.25) translateX(1rem);
  }
  .guide-nav_block_arrows {
      right: -1rem;
  }
  .guide-nav_block_cta span {
    z-index: 1;
      margin-left: 1rem;
      font-size: 0.75rem;
}
    .guide-nav_block_cta svg {
        transform: scale(1.75) translateX(18px);
        z-index: 0;
        margin: 1rem 0;
    }
      .guide-nav_block_long .guide-nav_block_number {
      top: -3rem;
      left: -0.5rem;
  }
}


@media screen and (min-width: 2981px){
  .guide-nav_block_short {
      width: 600px;
  }
    .guide-nav_block.active .guide_stepbox_active {
        transform: scale(2) translate(-1rem);
        margin: 4rem 0 4rem;
    }
        .guide-nav_block.active .guide-nav_block_long {
        top: 2rem;
        left: -6rem;
        padding: 1rem 1rem 2rem 1rem;
        width: 18rem;
    }
      .guide-nav_block.active .guide-nav_block_long img {
        width: fit-content;
        transform: scale(1.5) translateX(1.5rem);
    }
  .guide-nav_block_arrows {
        right: -2rem;
        bottom: 3rem;
        transform: scale(1.5);
    }
}




#krys{
  background-image: url(../img/bg-krys.webp);
}

#krys .wrapper{
display: flex;
    align-items: center;
    flex-direction: row;
}

#krys h2{
  color: white;
  font-size: 2rem!important;
font-family: "Confiance", "Helvetica Neue", "Roboto", "Arial", sans-serif;
    font-style: normal;
    text-transform: none;
    margin: 2rem 0 1rem;
}

.krys-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 48vw;
    text-align: justify;
}
.krys-left>img{
      max-width: 14rem;
}

.krys-left p {
    color: white;
     margin: 0.25rem 0;
}

.krys-cta{
  margin-top: 1rem;
}
.krys-cta img{
  max-width: 100%;
}
.krys-cta:hover{
  opacity: 0.8;
}

.krys-ctas{
  display: flex;
}

p.krys-strong{
  margin: 1.5rem 0 0.5rem;
      text-shadow: 0px 0px 6px black;
    color: #e714ba!important;
  font-size: 1.5rem;
}


@media screen and (max-width: 992px){
  #krys {
    background-image: url(../img/bg-krys.webp);
    background-position: center left 28%;
  }
  .krys-left {
      width: 56vw;
  }
}
@media screen and (max-width: 768px) {
    .krys-left {
        width: 72vw;
    }
        #krys {
        background-image: url(../img/bg-krys.webp);
        background-position: center left 17%;
    }
}
@media screen and (max-width: 600px){
  .krys-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      margin: 0 auto;
  }
  #krys {
    background-image: url(../img/bg-krys.webp);
      background-position: center left;
  }
  .krys-cta {
      margin: 1rem auto;
  }
  .krys-left>img {
    max-width: 14rem;
      margin: 1rem auto 0;
  }
  .krys-ctas{
    flex-direction: column;
    margin: 2rem auto 0;
    max-width: 340px;
  }
}
@media screen and (max-width: 480px){
  .krys-cta {
      margin: 0.5rem auto;
  }
  .krys-left>img {
    max-width: 14rem;
      margin: 1rem auto 0;
  }

}


@media screen and (min-width: 2201px){
  .krys-cta {
      margin-top: 1.5rem;
      transform: scale(1.25);
  }
  .krys-ctas {
      display: flex;
      gap: 5rem;
  }
}
@media screen and (min-width: 2981px){
    .krys-cta {
        margin-top: 1.5rem;
        transform: scale(1.5) translateX(2rem);
    }
  .krys-ctas {
      gap: 6rem;
  }
}
/*********************************************************************************************************************************/
/********************************************************** FOOTER ***************************************************************/
/*********************************************************************************************************************************/

footer {
  background-color: #020b3c;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links > * {
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.footer-links > *:hover {
  color: #e714af;
}

.divider {
  padding: 0 2x;
  color: #1b64d7;
}

.mentions-epic {
  font-size: 0.75rem;
  color: white;
  text-align: center;
  padding: 0.5rem 4rem;
  margin: 0 2rem;
  border-top: 2px solid #1b64d7;
}

.mentions-epic a {
  color: #5d718f;
}
.mentions-epic a:hover {
  color: white;
}

.to-top {
  margin-left: 2rem;
  position: relative;
  transform: translateY(-0.5rem);
}

.to-top:hover svg path{
  fill: white;
}


.arrow-to-top {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}

.to-top:hover .arrow-to-top > svg path {
  fill: black;
    transition: 0.2s;
}

.footer-left {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-right: 4rem;
}

.footer-right{
      display: flex;
    align-items: center;
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  height: 2rem;
}
.social-bar a {
  display: flex;
  height: 2rem;
  width: 2rem;
}
.social-bar svg path, .social-bar svg  {
  fill: #1b64d7;
}
.social-bar svg:hover path, .social-bar svg:hover  {
  fill: white;
}

@media screen and (max-width: 1080px) {
  .footer-left {
    gap: 2rem;
  }

  .to-top {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .to-top {
    margin-left: 0rem;
  }
}

@media screen and (max-width: 800px) {
  .footer-top,
  .footer-left {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-right,
  .footer-left {
    margin-left: 0;
    margin-right: 0;

  }
  .to-top {
    position: absolute;
    right: 1rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mentions-epic {
    font-size: 0.75rem;
    padding: 0.5rem 2rem;
  }
  .to-top svg {
    transform: scale(1);
  }

  .divider {
    display: none;
  }
  .footer-top {
    padding: 3rem 2rem;
  }
}

@media screen and (max-width: 480px) {
  .to-top {
    right: -2rem;
    top: 0rem;
    transform: scale(0.875);
    display: none;
  }
  .to-top svg {
    transform: scale(0.75) translateX(-1rem);
  }
    .mentions-epic {
        padding: 0.5rem 0rem;
    }
  .footer-right {
    display: none;
  }
}

@media screen and (min-width: 2981px) {
  .footer-left img {
    transform: scale(1.75);
  }
  .to-top {
    transform: scale(1.25);
  }
}

/********************************************************************************/
/******************************* OVERLAY INSCRIPTION ****************************/
/********************************************************************************/

/* Général */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  height: 100%;
  width: 100vw;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: none;
}
.popup .main-overlay {
  background-color: rgba(19, 26, 60, 0.75);
  width: 100%;
  height: 100%;
}

.popup .popup-step {
  padding: 2rem 7rem;
  margin: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image: url(../img/popup.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 605px;
  height: 529px;
}


/* Step 1 */

.step1-left {
  position: relative;
  position: relative;
  width: 427px;
  height: 258px;
  background-image: url(../img/zone.png);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  margin: 0 auto 3rem;
}

.step1-left:hover {
  opacity: 0.7;
}
.step1-left label {
  width: 100%;
  cursor: pointer;
}

input#fakeInput {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  display: block;
  padding: 11px 0;
  box-sizing: border-box;
  border: initial;
  background-color: transparent;
}

.step1-left input#step1-screenshot {
  height: 100%;
  width: 100%;
  position: absolute;
  top: -0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}

.step1-left_text_1 {
  color: white;
  font-size: 1.375rem;
  line-height: 1;
}

.step1-left_text_2 {
  color: #e714b1;
  font-size: 1rem;
}
.step1-left_text {
  bottom: 3.25rem;
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 85%;
  display: flex;
  flex-direction: column;
}

.close-popup {
    position: absolute;
    top: 7.25rem;
    right: 5rem;
    cursor: pointer;
    padding: 0.25rem;
}
.close-popup img {
  width: 3rem;
  height: 3rem;
}
.close-popup:hover {
  opacity: 0.8;
}
.popup h3 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.15;
  margin-top: 10rem;
  color: #e714b1;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
  font-size: 3rem;
}

#step-confirmation {
  display: none;
}

@media screen and (max-width: 1366px) {
  .step1-left {
    width: 518px;
    height: 304px;
  }
}

@media screen and (max-width: 1080px) {
  .step1-left {
        width: 367px;
        height: 221px;
    margin: 0 auto 2rem;
  }
  .popup .popup-step {
    width: 488px;
    height: 408px;
  }
}

@media screen and (max-width: 992px) {
  .step1-left {
    width: 469px;
    height: 276px;
  }
  #step1 h3 {
    font-size: 2rem;
  }
  #step1 h3 + p {
    font-size: 1.125rem;
  }
  .popup h3 {
    font-size: 1.75rem;

  }
  .popup h3 + p {
    margin: 0px 0 1rem;
  }
  .popup .popup-step {
    width: 484px;
    height: 428px;
  }
  .popup h3 {
    margin-top: 8rem;
  }
  .close-popup{
    top: 6.25rem;
    right: 6rem;
  }
}

@media screen and (max-width: 600px) {
  .step1-left {
    width: 410px;
    height: 241px;
    margin: 0 auto;
  }
  .popup .popup-step {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row-checkbox {
    max-width: 76%;
  }
  .close-popup{
    top: 8rem;
    right: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .popup h3 {
    font-size: 1.125rem !important;
    margin: 0 0 0.25rem;
  }
  .popup .popup-step {
    width: 94%;
    height: auto;
    box-sizing: border-box;
  }
  .step1-left_text_1 {
    font-size: 1rem;
  }
  .step1-left {
    width: 254px;
    height: 153px;
    margin: 0 auto;
  }
  #step1 h3 {
    font-size: 1.5rem !important;
    margin: 5rem 0 0rem;
  }
  .close-popup {
    top: -1rem;
    right: -2rem;
  }
  .row-checkbox {
    max-width: 74%;
    transform: translatex(2rem);
  }
  .step1-left_text_2 {
    font-size: 0.75rem;
  }
  .step_number {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 420px) {
  .step1-left {
    width: 252px;
    height: 148px;
  }
  .popup h3 {
    font-size: 1.25rem !important;
  }
  .close-popup {
    top: -3rem;
    right: -1rem;
  }
  .step_number {
    font-size: 1.5rem;
    margin: 0;
  }
}

@media screen and (min-width: 2201px) {
  .close-popup {
        transform: scale(2);
        top: 7.5rem;
        right: 3.5rem;
  }
  .popup-step {
    min-width: unset;
  }
  .popup .popup-step {
    width: 686px;
    height: 703px;
  }
  #row-email {
    margin: 0.5rem auto;
  }
  .step1-left {
    width: 606px;
    height: 356px;
  }
  .popup h3 {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 2981px) {
  .step1-left {
    width: 1107px;
    height: 650.5px;
  }
  .popup .popup-step {
    width: 1179px;
    height: 1041px;
  }
    .close-popup {
        transform: scale(3);
        top: 8.5rem;
        right: 6.5rem;
    }
  .popup h3 {
    margin-bottom: 0rem;
  }
  
}

/* Step 2 */

#checkboxes {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

input[type="checkbox"] {
  left: -9999px !important;
  position: absolute;
}

input[type="checkbox"] + label::before {
  content: "";
  width: 2.375rem;
  height: 2.375rem;
  display: block;
  background-size: contain;
  position: absolute;
  left: -3.5rem;
  top: 0rem;
  background-repeat: no-repeat;
  border: 2px solid #e714ac;
  border-radius: .75rem;
}

input[type="checkbox"]:hover + label:after,
input[type="checkbox"]:checked + label::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background-color: #e714ac;
    display: block;
    position: absolute;
    left: -3.175rem;
    top: 0.3rem;
    border-radius: 0.5rem;
}

.inscription-checkboxes > label {
  margin-bottom: 4px;
}

#step2-email{
    background-color: unset;
    padding: 0.75rem 2rem;
    color: white;
    font-size: 1.25rem;
    border: 2px solid #e714ba;
    border-radius: 1.25rem;
}
#step2-email::placeholder{
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1;
}

#step2 label {
  color: white;
  font-size: 1.25rem;
  position: relative;
  line-height: 1.15;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 14px white;
}


#step2 label a {
  color: #ff7900;
  font-size: 0.75rem;
  position: relative;
  text-align: left;
  line-height: 1;
}
#step2 label a:hover {
  color: white;
}
.row-checkbox {
  display: flex;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  max-width: 80%;
  margin: 0.5rem auto;
  transform: translatex(2rem);
  gap: 1.5rem;
}

#checkboxes label{
  text-transform: unset;
  font-size: 0.75rem;
  text-align: left;
  margin-bottom: 0rem;
  min-height: 2rem;
}

:-webkit-autofill {
  transition: all 100000s ease-in-out 0s;
}

#step2 input:focus,
#step2 input:focus-visible {
  color: white;
  outline: none;
  background-color: transparent;
}

#row-email{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.75rem auto;
  width: 100%;
}
#row-email > div {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
  position: relative;
}

#submit:hover {
  color: black;
}

#submit{
  background: transparent;
  border: 0px;
  cursor: pointer;
}
#submit:hover{
  opacity: 0.9;
}
.end-popup{
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  #step2-email{
    padding: 1.125rem 2rem;
  }
  #step2-email::placeholder{
    font-size: 1rem;
  }
  #checkboxes {
    gap: 0.5rem;
    padding: 0 1.5rem;
  }
  input[type="checkbox"] + label::before {
      content: "";
    width: 1.75rem;
    height: 1.75rem;
      display: block;
      background-size: contain;
      position: absolute;
      left: -3.5rem;
      top: 0rem;
      background-repeat: no-repeat;
      border: 2px solid #e714ac;
      border-radius: .675rem;
  }
  input[type="checkbox"]:hover + label:after, input[type="checkbox"]:checked + label::after {
      content: "";
      width: 1.125rem;
      height: 1.125rem;
      background-color: #e714ac;
      display: block;
      position: absolute;
        left: -3.05rem;
        top: 0.5rem;
      border-radius: 0.375rem;
  }
}
@media screen and (max-width: 600px) {
  #step2 label + svg {
    display: none;
  }
  #step2-email::placeholder{
    font-size: 1rem;
  }
    #step2-email {
        padding: 0.25rem 2rem;
    }
}

@media screen and (max-width: 480px) {
  #row-email > div{
    transform: unset;
    max-width: 92%;
  }
  .row-checkbox {
    width: 100%;
    max-width: 85%;
    margin: 0.75rem auto;
    transform: translatex(2rem);
  }
  #step2 label,
  #step2 label a {
    font-size: 0.75rem;
  }

  #row-email{
    margin: 0.25rem auto;
  }
  #submit {
    padding: 0.75rem 2rem;
  }
  .popup .popup-step {
        height: 312px !important;
        width: 373px !important;
  }
  .step1-left_text {
    bottom: 2.25rem;
  }
  #step2 h3{
            margin-top: 4.5rem;
  }
}

@media screen and (max-width: 380px) {
    .popup .popup-step {
        height: 295px !important;
        width: 301px !important;
    }
}


@media screen and (min-width: 2201px) {
  #step2-email::placeholder,
  #step2-phone::placeholder {
    transform: translateY(0px);
  }
  .row-checkbox {
    max-width: 90%;
  }
  #step2 label + svg {
    top: 1.375rem;
    transform: scale(0.875);
  }
  input[type="checkbox"] + label::before {
      width: 61px;
      height: 61px;
          left: -87px;
    top: -5px;
    border: 4px solid #e714ac;
  }
  input[type="checkbox"]:hover + label:after, input[type="checkbox"]:checked + label::after {
      width: 47px;
      height: 46px;
  }
  #submit{
    transform: scale(1.5);
  }    
  .end-popup{
    transform: scale(1.5);
  }

}

@media screen and (min-width: 2981px) {
  #step2 label + svg {
    top: 1.875rem;
    transform: scale(1.25);
  }
  input[type="checkbox"] + label::before {
        width: 61px;
        height: 61px;
        left: -117px;
        top: -2px;
        border: 4px solid #e714ac;
    }
      #submit {
        transform: scale(2);
    }
        .end-popup {
        transform: scale(1.75);
    }
}

/* Step 3 */


#resultModalBody {
  color: white;
}



/****** COOKIES ******/

#cookies {
  border-top: 2px solid #1b64d7;
  color: white;
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
}
#cookies .main-overlay {
  background-color: black;
  width: 100%;
  height: 100%;
}

#cookies {
  display: none;
}

.charte-cookies {
  color: #1b64d7;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  margin: 2rem auto;
  display: block;
  width: fit-content;
}
.charte-cookies:hover{
  color: white;
  }
.charte-cookies img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.popup-cookies-main,
.popup-cookies-choices {
  padding: 2rem 6rem;
}

.popup-cookies-main h3,
.popup-cookies-choices h3 {
  color: white;
  margin: 0 auto 1.5rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.popup-cookies-choices {
  display: none;
}

.cookie-buttons {
  justify-content: center;
  gap: 2rem;
  display: flex;
}

.cookie-buttons > *,
#end-cookies {
  cursor: pointer;
  background-color: #1b64d7;
  line-height: 1;
  font-weight: 600;
  width: fit-content;
  padding: 0.75rem 1rem;
  line-height: 1;
  font-size: 1rem;
  width: 20rem;
  font-size: 1rem;
  color: white;
  border: 0px;
      font-family: "Confiance", "Helvetica Neue", "Roboto", "Arial", sans-serif;
}

#end-cookies {
  margin: 2rem auto 0;
  display: block;
}

.popup-cookies-choices {
  position: relative;
  flex-direction: column;
}
.popup-cookies-choices-table {
  margin: 2rem 0 0;
}
.close-param-cookies-popup {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
}
.close-param-cookies-popup:hover {
  opacity: 0.8;
}

.cookie-buttons > *:hover,
#end-cookies:hover {
  color: black;
}

.cookies-choices-consent {
  gap: 1rem;
  display: flex;
}

.popup-cookies-choices-block .give-consent_cookies,
.popup-cookies-choices-block .no-consent_cookies {
  color: white;
  font-size: 1.125rem;
  cursor: pointer;
  display: inline-block;
  background: transparent;
  line-height: 1;
  border: 1px solid white;
  margin: 0;
  padding: 0.25rem 0.5rem;
  color: white;
}
.give-consent_cookies:hover,
.give-consent_cookies:focus {
  background-color: #188600;
  color: white;
  border-color: #188600;
}
.no-consent_cookies:hover,
.no-consent_cookies:focus,
.no-consent_cookies:active {
  background-color: #f80d34;
  color: white;
  border-color: #f80d34;
}
@media screen and (max-width: 800px) {
  .popup-cookies-main,
  .popup-cookies-choices {
    padding: 2rem 4rem;
  }
}
@media screen and (max-width: 600px) {
  .popup-cookies-main,
  .popup-cookies-choices {
    padding: 2rem 2rem;
  }
  .close-param-cookies-popup {
    right: 1rem;
    top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cookie-buttons > * {
    height: 3rem;
    width: 100%;
  }
  .popup-cookies-main,
  .popup-cookies-choices {
    padding: 1.5rem;
  }

  .popup-cookies-main h3,
  .popup-cookies-choices h3 {
    font-size: 1.25rem;
  }
}

/************* LEGAL ***************/
#legal {
  background-color: #020b3c;
  height: unset!important;
}
#legal h1 {
  color: white;
  text-align: center;
    font-size: 4rem;
}
#legal h2 {
    color: #ffffff;
    font-size: 2rem;
    z-index: 1;
    line-height: 1;
    text-align: left;
    margin: 2rem 0 0rem;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 60, "wght" 700; 
}
#legal p, #legal li, #legal h3 {
  color: white;
}
#legal p, #legal ul{
  margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
  #legal h1 {
    margin-top: 8rem;
  }
  #legal h2 {
      font-size: 1.5rem;
  }
}
