
/*    ===============================================    
      < -----------  REGLAGES DE BASE  -----------  >  
      ===============================================    */


html, body {
  font-size: 14px;
  scroll-behavior: smooth;
  user-select: none;
}

body {
  font-family: Poppins, sans-serif;
  font-style: normal;
  background-color: #d6d0ff;
  margin: 0; padding: 0;
  width:100vw; height:100%; min-height:100vh;
  overflow-x: hidden;
 /*  background-color: #1B1345;*/


}

#fond{
  background-color: rgba(27,19,69,1);
}

*, *:before, *:after {
    box-sizing: border-box;
    outline:none;
}

a { text-decoration: none; }

li { padding:0; list-style: none; }

ul { list-style: none; }

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  width:100%; 
  margin: 0 auto;
  padding:0;
  background-color: #d8d2ff;
/*couleur bleu marine de fond*/
  /*max-width: 1300px;*/
}

h1 {
  max-width: 1300px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
  color: #251d5b;
  font-size: 2em;
}

h2 {

  font-weight: 300;
  margin-top: 0px;
  color: white;
  font-family: Arvo;
  font-weight: normal;
  font-style: normal;
  margin-top: 0px;
}

img { width:100%; }


button {
  font-family: Arvo;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;

  border: none;
  color: white;
  padding: 20px 30px;
  text-align: center;
  text-decoration: none;
  
  cursor: pointer;
  transition: all .0s ease-out;
  border-radius: 5px;
  background: linear-gradient(to right, #6922E2, #A124E1);
}


button:hover {
  background-color: white;
  color: purple;
}


/*   < -----------  TYPOGRAPHIES  -----------  >  */


@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo.woff2') format('woff2'),
         url('../fonts/Arvo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arvo';
    src: url('../fonts/Arvo-Bold.woff2') format('woff2'),
         url('../fonts/Arvo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/*    =======================================    
        < -----------  MENU  -----------  >  
      =======================================    */



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 50%;
  height: auto;
}

.navbar {


  width: 100%;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  padding: 3vw 1vw 0vw 1vw;
  background-color: #191142;
  z-index: 20000; 
  backdrop-filter: blur(10px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  transition: background-color .1s cubic-bezier(0,0,.25,1);
  color: #dadada;
}


.navbar_links {
  display: flex;
  width: 100%;
  margin: 5px;
  padding: 0;
  transition: background-color .1s cubic-bezier(0,0,.25,1);
  color: #dadada;


}

.navbar_link {
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
  margin: 0.83vw;
  color: white;

}

.navbar_link a {
  color: white;
  font-size: 1.1rem;
  font-family: arvo;
}



.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #fb5283, #ff3527);
  transition: width .3s;
}

.cool-link:hover::after {
  width: 100%;
  transition: width .3s;
}


/*   < -----------  MENU MOBILE  -----------  >  */



.burger {
  display: none;
  z-index: 20000;
  width: 3vw;
}

.rotation {
transform: rotate(180deg);
}

.apparait {
  display: block !important;
}

button:hover {
  background-color: unset !important;
  color: unset !important;
}

@media screen and (max-width: 900px) {

  header {
    display: none;
}
     
  .burger {
    display:block;
    position:fixed;
    top: 0px;
    right: 50px;
    padding:0;
    width:43px;
    height:43px;
    border:none;
    background:transparent;
    cursor:pointer;
  }

  .bar {
    display:block;    
    width:45px;
    height:4px;  
    border-radius:3px;
    background-color: white; 
    transition: all .5s ease-in-out;   
  }

  .navbar {
    padding: 0vw 1vw 0vw 1vw;    
  }


}


/*    =======================================    
    < -----------  SITE : ACCUEIL  -----------  >  
      =======================================    */


.banner-home { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/DECORS_JEU_FLOU-12.jpg");
  background-size: cover;
  background-position :center;
  height: 50vh;

}

.banner-content {
  position: relative;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.banner-content h1 {
  font-size: 6rem;
  color: #fff;
  padding: 5px;

}

.banner-content h3 {

  text-align: center;
  width: 100%;
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
  font-family: poppins;

}

.banner-content a {
  color: white;
}

.banner-content p {
  background-image: url("../img/BANDE.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  font-size: 15px;
  color: #fff;
  margin-top: 4.5rem;

  padding: 20px;
  font-family: poppins;
  color: #fff;
  align-items: center;
  z-index: 1000;

}

.banner-content img {
  width: 60%;
  margin-top: 40px;
}

@media screen and (max-width: 900px) {

.banner-content img {
    width: 40%;
    margin-top: 0px;
}

.banner-content p {
    background-size: 0%;
    padding: 0;
    margin-top: 3rem;
}

.banner-content button {
  margin-top: 20px;
}

}


.banner-content button {
  background-color: #FFFFFF;
  border: none;
  position: relative;
  bottom: 5vh;
  padding: 20px 50px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-family: Arvo;
    font-weight: bold;
    font-style: normal;
}

#decouvrir {
  transition: all 0.2s ease-out;
}



#decouvrir:hover {
  transform: scale(1.1);
  background: linear-gradient(to right, #FF6955, #F2924D);
}



section::before {
  content:'';
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(27,19,69,1) 0%, rgba(253,187,45,0) 50%);
  z-index: 1000;
}

.personnage img{
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}

.personnage_mobile img{
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {

.personnage img{
  display: none;
}

.personnage_mobile img{
  display: block;
}

}



/*   < -----------  ACCEUIL MOBILE  -----------  >  */



.acceuil_mobile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 50px;

}

h3 {
  font-size: 30px;
  font-family: Arvo;
  text-align: center;
  color: white;
  margin-top: 5%;
}

h4 {
  display: flex;
  font-size: 15px;
  font-family: Arvo;
  line-height: 1.2;
  margin: 0;
  align-items: center;
  text-align: center;
  color: #3e34a7;
}

/*    =======================================    
    < -----------  ABOUT SECTION -----------  >  
      =======================================    */


.heading {
  font-size: 1.5rem;
  color:#333;
  /*background-color: #281F52;*/
  color: white;
  font-family: 'Arvo';
  display: flex;
}

.feed-divider {
  background-color: #4a4e58;
  height: 0.125rem;
  width: 100%;

}

.video_text {
  display: flex;
  align-items: flex-start;
}

.information_text {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.about .row {

  display: flex;
  align-items: center;
  gap:2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  padding-bottom: 3rem;
  /*background-color: #281F52;*/
  padding: 50px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;

}


.about .row .video-container {
  flex: 1 1 40rem;
  position: relative;
  display: flex;
  padding: 20px;
  width: 20%;
}

#video-container {
  transition: all 0.2s ease-out;
}

#video-container:hover {
  transform: scale(1.05) rotate(-2deg);
}


.about .row .video-container img {
  width: 100%;
  border:1.5rem solid #513fb8;
  border-radius: .5rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  object-fit: scale-down;
} 

.about .row .content-about {
  flex:1 1 40rem;
  padding: 20px;
  width: 80%;
}

.about .row .content-about h2 {
  font-size: 1.5rem;
  color: #fff;

}

.about .row .content-about p {

  color: #dadada;
  padding: .5rem 0;
  padding-top: 1rem;
  line-height: 1.5;
 /* width: 95%;*/
  margin: 0;
  font-size: 0.9rem;
 
}

#p2{
   margin-bottom: 2rem;
}

.about h1 {
   margin-bottom: 0px;
}

.video_text {
  display: flex;
}


#jouer-btn {
  padding: 0.83vw 1.66vw;
  border: none;
  border-radius: 0.416vw;
  cursor: pointer;
  color: white;
  cursor: pointer;
  /*margin-top: 2rem;*/
  background: linear-gradient(to right, #6922E2, #A124E1);
  
  font-size: 1.2rem;
  font-family: Arvo;
  font-weight: normal;
  font-style: normal;
  /*transition: all 0.2s ease-out;*/
  display: inline-block; /* pour que le scale puisse s'appliquer */
}

#jouer-btn:hover {

  background: linear-gradient(to right, #FF6955, #F2924D);
  transform: scale(1.1);
}

#jouer-btn {

    transition: all 0.2s ease-out;
}

@media screen and (max-width: 900px) {

.content-about p {
    font-size: 1vw;
}

}


/*    =======================================    
    < -----------   PERSONNAGE  -----------  >  
      =======================================    */

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  transition: all 0.5s ease-out;
}

.box {
  background-color: #281F52;
  color: #fff;
  margin: 20px 1.6%;
  padding: 20px;
  text-align: center;
  transition: all 0.5s ease-out;
  border-radius: 10px;
  width: 30%;
  cursor: pointer;
  overflow: hidden;
  max-height: 20rem;

}

.box img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  transition: all 0.5s ease-out;
}

.box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color:#A124E1;
  transition: all 0.5s ease-out;
}

.box p {
  font-size: 1rem;
  color: #dadada;
  transition: all 0.5s ease-out;
}

.box:hover {
 /* background-color: rgba(27,19,69,1);*/
  max-height: 50rem;

}

.info {
  position: relative;
  width: 100%;
  height: 30%;
  transition: all 0.5s ease-out;

  opacity: 0;
}

.box:hover .info {
  opacity: 1;
}

.perso{
  padding: 50px;
  min-height: 95px;
  position: relative;
  text-align: justify;
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
}

.perso h2 {
  display: inline-block;
  font-weight: 500;
  margin: 0 0 15px;
  font-size: 
}



/*    =======================================    
    < -----------   CHAPITRES  -----------  >  
      =======================================    */




.chapitre {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*margin: 50px 0;*/
  height:100%;
  padding: 50px;
}

.chap {
  background-color: rgba(37, 29, 91, 0.9);
  color: #fff;
  padding: 20px;
  margin: 20px;
  text-align: center;
  width: calc(33.33% - 40px);
  height: 40%;
  border-radius: 10px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

.chap h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
}

.chap p {
  font-size: 11px;
  margin-bottom: 20px;
  color: white;
}

.chap img{
      margin-bottom: 30px;
}

.chap a {
  background-color: #ff6b6b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-chap:hover {
  background-color: #ee5253;
    transform: scale(1.1);
}


/*    =======================================    
    < -----------   CONNEXION  -----------  >  
      =======================================    */



.register-btn {
  padding: 0.83vw 1.66vw;
  border: none;
  border-radius: 0.416vw;
  cursor: pointer;
  margin: 0.83vw;
  color: white;
  transition: all .3s ease-out;
  background-color: #4d4d4d;
}

.register-btn:hover {
  transform: scale(1.1);
  color: white !important;
  background: linear-gradient(to right, #FF6955, #F2924D);
}

.login-btn {
  padding: 0.83vw 1.66vw;
  border: none;
  border-radius: 0.416vw;
  cursor: pointer;
  margin: 0.83vw;
  background-color: #7B19FE;
  color: white;
  transition: all .3s ease-out;
}

.login-btn:hover {
  transform: scale(1.1);
  color: white !important;
  background: linear-gradient(to right, #FF6955, #F2924D);
}

.login-box {
  width: 40vw;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 100px;
  margin-top: 100px;
  z-index: 10000; 
}

.login-box h2 {
  margin-top: 0;
}

.login-box h3 {
  margin-top: 0;
  font-family: arial;
  font-size: 15px;

}

   

/*    =======================================    
    < -----------   PAGE INFO  -----------  >  
      =======================================    */


/*-------------------------------------------------------------------------*/

.container_num{
  position: relative;
 /* text-align: justify;*/
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
  margin-bottom: 50px;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}

.container_num h1 {
  text-align: center;
  padding-top: 10%;
/*  margin-bottom:5%;*/
  font-weight: 600;
  position: relative;
  font-family: arvo;
    font-size: 4rem;
    line-height: 5.2rem;
}


.top-texte {

    position: relative;
  text-align: justify;
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
  margin-bottom: 50px;
       position: relative;
 /* text-align: justify;*/
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;
   margin-bottom:10%;

}


 .top-texte p{
   text-align: center;
  padding-top: 10%;
 /* margin-bottom:10%;*/
 /* font-weight: 600;*/
  position: relative;
 font-size: 15px;
    color: #251d5b;
    margin-top: 2rem;
    padding: 20px;
    font-family: poppins;
/*    width: 50%;*/
     max-width:1100px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
  margin-bottom: 50px;
       position: relative;
 /* text-align: justify;*/
  width:70%; /* colonne de 900px max, élastique */
  max-width:1100px;



}

.container_num h1::after{
  content: '';
  background: linear-gradient(to right, #fb5283, #ff3527);
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform:translateX(-50%);


}

.row_num{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
}


.service{
  text-align: center;
  padding: 25px 10px;
  border-radius:5px;
  font-size: 14px;
  cursor: pointer;
/*  background: transparent;*/
    background: #F3F4F6;
  transition: transform 0.5s, background 0.5s;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

.service h5 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #fb5283;
  font-family: Arvo;
margin-top: 15px;
font-weight: bold;
}


.service h2{
  font-weight:600;
  margin-bottom: 8px;
  color: #251d5b;
  font-family: arvo;
  font-size: 1.2rem;

}

.service p {
 /* color: #dadada;*/
 color: #251d5b;
}


.service:hover{
  background: #fb5283;
  color:#fff;
  transform: scale(1.05);

}

.service:hover h2 {
  color: #fff;
}

.service:hover h5 {
  color: #fff;
}

.service:hover p {
  color: #fff;
}

.container_num h3 {
  font-size: 1.5rem;
text-align: left;
 /*padding-top: 10%;*/
 /*   margin-bottom: 60px;*/
    font-weight: 600;
    position: relative;
    font-family: arvo;
    color: #251d5b;
}

.top-titre {
margin-bottom: 40px;
}

.top-titre p {
    margin-top: -18px;
    margin-bottom: 20px;
}

.container-urgence{
    position: relative;
/*  text-align: justify;*/
  width:95%; /* colonne de 900px max, élastique */
  max-width:1100px;
  margin-right: auto; /* centrage horizontale */
  margin-left: auto;
  margin-bottom: 50px;
}

.container_urgence h2 {
  font-size: 1.5rem;
text-align: left;
/* padding-top: 10%;*/
 /*   margin-bottom: 60px;*/
    font-weight: 600;
    position: relative;
    font-family: arvo;
    color: #251d5b;
}

.container_urgence p {
  width: 50%;
  text-align: left;
  justify-content: none;
  font-size: 0.9rem;
}

.container_urgence{
  background: blue;
  margin-top: 10%;
}

/*    =======================================    
    < -----------   FOOTER  -----------  >  
      =======================================    */




footer {
background-color: #281F52;
  color: #fff;
  padding: 50px 50px 10px;
/*  margin-left: 200px;
  margin-right: 200px;*/
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {

  width: 30%;
  margin-bottom: 20px;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 1em;
  line-height: 1.5;
}

.social-media {
  display: flex;
}

.social-media li {
  margin-right: 10px;
}

.social-media li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #666;
}

.footer-bottom p {
  font-size: 0.8em;
 /* padding: 1rem;*/
}

.footer-section img{
  display: inline;
}

/*    =======================================    
    < -----------   AUTRE  -----------  >  
      =======================================    */




main.in-iframe { 
  height:100vh;
}

.burger img:hover {
  box-shadow: none !important;
}

.feed-divider {
    background-color: #4a4e58;
    height: 0.125rem;
    width: 100%;
}

.about .row .feed-divider {
    background-color: #4a4e58;
    height: 0.125rem;
    width: 100%;
    margin-top: -23px;
}

.bandeau {
  background-color: #FFCC00;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.image {
  flex: 1;
}

.texte {
  flex: 2;
  margin-left: 20px;
}




/* ----------------------------------------------------------
qq trucs spéciaux pour la page #chapitres, 
qui contient une iframe et les menus 
C'EST LA QUE LE JEU S'AFFICHE AUSSI (dans l'iframe)
ce qui permet que les menus restent en place pendant tout le jeu */

.footer-section img {
  width: 30px;
  height: 30px;
}


.footer-section img:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;

}


/*je mets les menus en absolute, c'est le seul moyen de centrer efficacement l'iframe centrale*/
#chapitres header { position:absolute; left:0; top:0; width:100%; z-index:10; }

#chapitres main { 
  /*height:100vh;*/
  /*margin:0;*/ padding:0;
  display: flex; justify-content: center; align-items: center; }
iframe {
/*    background-color: rgba(37, 29, 91, 0.9);*/
/*background-color: #fff;
*/

  /*iframe élastique*/
  width:100%; 
  aspect-ratio: 16 / 9; /* rapport largeur/hauteur, pratique */
  aspect-ratio: 16 / 12; /* pour que les chapitres passent mieux... à voir */
  display:block; /* par défaut une iframe ets traitée comme un image, c'est gênant */

	border: solid 3px #d8d2ff;
  
	overflow:hidden; /* on ne veut pas de barre de scroll */
}

#container iframe {
  display: flex; justify-content: center; align-items: center;
}

/*EMERGENCY DIV--------------------------------------------*/

.arrow img {
  width: 20px;
  height: 20px;
/*  margin-bottom: 10px;*/
}

.mt-10 a {
     color: #A124E1;
     font-size: 16px;
}

.help-section {
  background-color: rgba(27,19,69,1);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  border-radius: 10px;
}

.help-header {
  margin-bottom: 30px;
}

.help-title {
  font-size: 28px;
color: #fff;
}

.emergency-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.emergency-number {
  width: 300px;
 background-color: #281F52;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.emergency-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.number-title {
  font-size: 20px;
color: #A124E1;
  margin-bottom: 10px;
  font-weight: 600;
}

.number-description {
  font-size: 16px;
/*  color: #666;*/
color: #fff;
}

.number {
  font-weight: bold;
}

.help-section {
    position: relative;
    /* text-align: justify; */
    width: 95%;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    padding: 50px;
    margin-top: 30px;}




/*----------------------------------------------------*/

/* CSS pour occuper toute la largeur de l'écran */
body {
  margin: 0;
  overflow-x: hidden;
}

.emergency-div {
  width: 100vw;
  max-width: 100%;
}








/*    =======================================    
    < -----------   MEDIA SCREEN  -----------  >  
      =======================================    */




@media screen and (min-width:900px){

  iframe {
  width:80%;
/*  background-color: rgba(37, 29, 91, 0.9);*/
  }

}

@media screen and (max-width: 500px) {

  nav {
    display: none;

  }

  section {
    display: none;
  }

  footer {
    display: none;
  }

  .btn-nav .login-btn, .register-btn, .container, .perso, .login-box, .navbar, .burger, .heading, .feed-divider, .information_text, .about {
    display: none;

  }

  .acceuil_mobile {
    display: flex;
  }

}

@media screen and (min-width: 501px) {

.acceuil_mobile {
    display: none;

  }

}


@media screen and (max-width: 800px) {



.top-texte p {
  width: 100%;
}

.banner-content h1{
  font-size: 4rem;
}

.chapitre{
  margin: 50px 0;
}
.chap a {
  font-size: 1.4rem;
}


.chap {
  width: 40%;
  height: 55%;
}

.box{
  width: 33%;
}

.chap img{
  margin-bottom: 20px;
}


.banner-content h3{
  font-size: 1.5rem;
  margin: 0;
}

.banner-content p{
  font-size: 12px;
  margin-bottom: 0;
}

.banner-content {
  position: absolute;
  top: 3rem;
}

.banner {
  height: 200px;
}


/*MODIFS 31/05*/

.about .row {
  margin-left: 0;
  margin-right: 0;
}

.video_text {display: block;}

#video-container {
  width: 100%;
}

.about .row .content-about{
  width: 100%;
}

.perso {
  width: 100%;
}



#p2 {margin-bottom: 3rem;}

#jouer-btn {
    background-color: #FFFFFF;
    border: none;
    position: relative;
    padding: 20px 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: Arvo;
    font-weight: bold;
    font-style: normal;
}

.box{
  width: 40%;
  /*height: 230px;*/
}

.box p {

}

.perso {
  margin: 0;
  margin-top: -40px;
}

.login-box {
  width: 70%;
}

.chapitre {
  padding: 1px;
}

.chap h2 {
  font-size: 1.4rem;
}

.container_num h1 {
  line-height: 4rem;
}




.footer-section p {
  font-size: 0.8rem;
    width: 108%;
}

.footer-section li {
  margin-bottom: 0;
}

}


