
/* === TABLES === */
.table-container {
  margin: 5vh auto;
  width: 90%;
  max-width: 900px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.table-container h3 {
  font-family: 'Forum', serif;
  color: #C94F7C;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-align: left;
  margin-bottom: 1rem;
  border-bottom: 2px solid #B0B0B5;
  padding-bottom: 0.4rem;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  background: #fff;
}

.styled-table thead {
  background-color: #F0F0F2;
  color: #333;
}

.styled-table th, 
.styled-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid #E0E0E0;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.styled-table tbody tr:hover {
  background-color: #f9f1f4;
  transition: background 0.2s ease-in-out;
}

.styled-table th {
  font-weight: 600;
  font-size: 1.1rem;
}

.styled-table td {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .styled-table th, .styled-table td {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}


/* === SECTIONS === */
.section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
  width: 100%;
    border: 0px dashed orangered;
}

/* Alternance gauche/droite */
.section.pair {
  flex-direction: row; /* image gauche, texte droite */
}
.section.impaire {
  flex-direction: row-reverse; /* image droite, texte gauche */
}

/* === COLONNES === */
.colonne-gauche {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
    border: 0px solid limegreen;}

.colonne-gauche img {
  width: 100%;
  height: auto;
 
}
.colonne-droite {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem;
    border: 0px solid yellow;}

/* Zone du haut centrée verticalement dans l’espace disponible */
.haut {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centre le texte verticalement */
  align-items: center;
  flex-grow: 1;            /* occupe tout l’espace restant */
  padding: 12px 16px;
}

/* Bloc du bas, collé au bas */
.bas {
  align-self: stretch;
margin-left: 6vw;
margin-right: 6vw;
  border-top: 0px solid #c94f7c;
margin-top: auto;     
}
.notesbaspage {

  background-color: #f0f0f1;
  color: black;
  outline: 1px solid #a1a1aa;
  padding: 15px 25px;
  text-align: left;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 13px;
margin-bottom: 12px;
margin-top : 3rem;
}


.titredroit {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  color: black;
line-height: 1.3; /* réduit l'interligne */
margin-left: 20%;
margin-right: 20%;

}

.textedroit{
margin-top: 2.2rem;
margin-left: 20%;
margin-right: 20%;
text-align: justify;
font-size: 1.2rem;
color: black;
}

.textedroit ul {
 list-style-type: disc;   /* enlève les puces */
  margin: 0;               /* enlève le retrait par défaut */
  padding: 0;              /* enlève le padding */
}

.textedroit ul li {
  text-align: justify;     /* justifie le texte */
  margin-bottom: 1.2em;    /* espace entre les paragraphes */
  line-height: 1.6;        /* améliore la lisibilité */
  text-indent: 2em;        /* petit retrait en début de ligne, optionnel */
}


/* === IMAGE GAUCHE === */
.image-gauche {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;                     /* aucune marge interne */
  padding: 0;
  object-fit: cover;             /* couvre toute la colonne */
}



/* === DIVERS === */

.parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
padding-bottom: 2vh; /* un petit espace interne au lieu d’un grand vide externe */
  padding: 0 !important;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 15vw;
  right: 15vw;
  transform: translateY(-50%);
  z-index: 2;
  color: black;
  background: rgba(255, 255, 255, 0);
  padding: 1rem;
  text-align: center;
}

.feminine-title {
  font-family: 'Forum', serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-transform: uppercase;
  color: #c94f7c;
  margin-bottom: 1rem;
}

.subtitle {
  font-family: 'Playfair Display', serif;
  color: #505050;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  text-align: left;
}

.section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
  width: 100vw;
  margin-bottom: 8%;
}
/* === RESPONSIVE (< 1100px) === */


@media (max-width: 1100px) {
  .section {
    flex-direction: column !important; /*  force la disposition verticale */
    align-items: center;
    width: 100%;
margin-bottom: 5%;
  }

  .colonne-gauche,
  .colonne-droite {
    flex: none;
    width: 90%;
    padding: 0;
  }

  .colonne-gauche img {
    max-width: 500px;
  }

  .colonne-droite {
    margin-top: 3%;
    text-align: center;
  }


 .parallax { background-attachment: scroll; 
background-size: 115% auto; 
background-position: center center; 
 }

 .feminine-title { font-size: 1.9rem; }
 .subtitle { font-size: 1.85rem; } 

} 
/* === RESPONSIVE TELEPHONES === */
@media (max-width: 700px) { 
h1 { font-size: 1.4rem; } 
.notesbaspage{
font-size: .7rem}

  .parallax {
    height: auto !important;       /*  adapte à la taille du contenu */
    padding: 10vh 0;               /*  un peu d’espace interne visuel */
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
  }

  .overlay {
    position: relative !important; /*  ne flotte plus en absolu */
    top: auto;
    left: auto;
    right: auto;
    transform: none !important;    /*  supprime le décalage vertical */
    margin: 0 auto;
    padding: 2rem 1rem;
  }

.textedroit {
    font-size: 1.2rem;        /*  taille réduite (≈ 16 px) */
    margin-left: 8%;        /*  marges allégées pour aérer */
    margin-right: 8%;
    text-align: left;       /*  souvent plus lisible sur mobile */
  }

  .feminine-title,
  .subtitle {
    text-align: center;
    margin: 0 auto;
  
 }}


.encadreCitationDouble {
  position: relative;
  font-family: "Playfair Display", serif;
  background-color: #f8f4f6;
  color: #333;
  padding: 3em 2.5em;
  margin: 2.5em auto;
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  line-height: 1.8;
  text-align: justify;
  overflow: hidden;
}

.encadreCitationDouble::before,
.encadreCitationDouble::after {
  position: absolute;
  font-family: "Playfair Display", serif;
  color: rgba(201, 79, 124, 0.08); /* rose translucide */
  font-size: 14rem;
  pointer-events: none;
  z-index: 0;
}

.encadreCitationDouble::before {
  content: "“";
  top: -40px;
  left: 25px;
}

.encadreCitationDouble::after {
  content: "”";
  bottom: -60px;
  right: 30px;
}

.encadreCitationDouble p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.encadreCitationDouble .auteur {
  text-align: right;
  font-style: italic;
  color: #C94F7C;
  margin-top: 1.5em;
  font-size: 1rem;
}

/* — Adaptation mobile — */
@media (max-width: 600px) {
  .encadreCitationDouble {
    width: 95%;
    padding: 2em 1.5em;
  }
  .encadreCitationDouble::before,
  .encadreCitationDouble::after {
    font-size: 7rem;
    color: rgba(201, 79, 124, 0.1);
  }
  .encadreCitationDouble::before {
    top: -25px;
    left: 10px;
  }
  .encadreCitationDouble::after {
    bottom: -35px;
    right: 15px;
  }
}

/* unvisited link */
a:link {
  color: #1887c4;
}
/* visited link */
a:visited {
  color: #1887c4;
}

/* mouse over link */
a:hover {
  color: #075985;
}

/* selected link */
a:active {
  color: yellow;
}
.legende {
  text-align: center;
  font-size: 1.2rem; /* taille de base : téléphone */
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 601px) and (max-width: 900px) {
  .legende {
    font-size: 1.4rem; /* un peu plus grand sur tablette */
  }
}

h1 {
color: #1887c4;
@media screen and (min-width: 578px) 
{ font-size: 32px; }

@media screen and (max-width: 577px) 
{font-size: 1.1rem;}
}


.titreRose {
  color: #c94f7c;
  font-size: 40px;
text-align: left;
margin-left: 35% ;
}
@media (max-width: 768px) {
      .titreRose {
        font-size: 30px;
margin-left: 30% ;

      }
    }


span.lettre {
  display: inline-block;
  width: 50px;
  height: 55px;
 font-weight: bold;
  background-color: #f6c2d5; 
font-size: 40px;
color: #c94f7c;
text-align: center;

}
span.lettre.noirblanc{
  background-color: lightgray;
color:black; }
line-header{
    background-color : black;
}

.w3-theme-l5 {color:#000 !important; background-color:#eff8fd !important}
.w3-theme-l4 {color:#000 !important; background-color:#cbe9f9 !important}
.w3-theme-l3 {color:#000 !important; background-color:#98d2f2 !important}
.w3-theme-l2 {color:#000 !important; background-color:#64bcec !important}
.w3-theme-l1 {color:#fff !important; background-color:#30a6e5 !important}
.w3-theme-d1 {color:#fff !important; background-color:#167ab0 !important}
.w3-theme-d2 {color:#fff !important; background-color:#136c9c !important}
.w3-theme-d3 {color:#fff !important; background-color:#115f89 !important}
.w3-theme-d4 {color:#fff !important; background-color:#0e5175 !important}
.w3-theme-d5 {color:#fff !important; background-color:#0c4462 !important}
.w3-bleupale{background-color:#eff8fd; !important}
.w3-theme-light {color:#000 !important; background-color:#eff8fd !important}
.w3-theme-dark {color:#fff !important; background-color:#0c4462 !important}
.w3-theme-action {color:#fff !important; background-color:#0c4462 !important}

.w3-theme {color:#fff !important; background-color:#1887c4 !important}
.w3-text-theme {color:#1887c4 !important}
.w3-border-theme {border-color:#1887c4 !important}

.w3-hover-theme:hover {color:#fff !important; background-color:#1887c4 !important}
.w3-hover-text-theme:hover {color:#1887c4 !important}
.w3-hover-border-theme:hover {border-color:#1887c4 !important}

.citation{
background-color: #eff8fd;
border-left: 12px solid #167ab0;
padding-left: 5%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 5%;
width: 80%;
    margin: auto;
    border-radius: 15px;
}
.citation.text{
    font-style: italic;
    color: black;
    text-align: left;
    @media screen and (min-width: 578px) {
    font-size: 22px;
}
@media screen and (max-width: 577px) 
    font-size: .75rem;
}
}
.citationRouge{
background-color:  #f6c2d5;
border-left: thick solid #c94f7c;
padding-left: 4%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 4%;
width: 80%;
    margin: auto; 
    font-weight: italic ;
}

.button-51 {
  background-color: transparent;
  border: 1px solid #266DB6;
  box-sizing: border-box;
  color: #00132C;
  font-family: "Avenir Next LT W01 Bold",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 23px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
    @media (max-width: 578px) {
        font-size: .75rem;
}
}

.button-51:hover,
.button-51:active {
  outline: 0;
}

.button-51:hover {
  background-color: transparent;
  cursor: pointer;
}

.button-51:before {
  background-color: #D5EDF6;
  content: "";
  height: calc(100% + 3px);
  position: absolute;
  right: -7px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}

.button-51:hover:before {
  background-color: #6DCFF6;
}

@media (min-width: 768px) {
  .button-51 {
    padding: 16px 32px;
  }
}
.section-large {
      display: none; /* cachée par défaut */
     
      padding: 20px;
      text-align: center;
    }

    @media (min-width: 768px) {
      .section-large {
        display: block; /* visible sur écrans >= 768px */
      }
    }

    /* Section visible seulement sur petits écrans */
    .section-petite {
      display: block; /* visible par défaut */
      
      padding: 20px;
      text-align: justify;
    }

    @media (min-width: 768px) {
      .section-petite {
        display: none; /* cachée sur écrans >= 768px */
      }
    }

.Encadrebrun {
  border: 0px outset #645e58;
padding: 15px 15px 15px 15px;
  text-align: center;
    border-radius: 30px; 
    background-color: #333333 ;

}
.Encadregris{
  border: 0px outset #645e58;
padding: 15px 15px 15px 15px;
  text-align: center;
    border-radius: 30px; 
    background-color: #e5e7eb ;
 
}
.PoliceStandard{
color:#505050; 
    font:16px;
    text-align: left;
}
.BoiteBL{
    border: 0px solid #F9EED7 ;  
    border-radius: 30px; 
    background-color: white ;
    padding: 5px 5px 5px 5px;    
}

.EncadreOrange {
  border: 1px outset #EF6055;
padding: 15px;
border-style: dashed;
  background-color: white;
  text-align: center;
}

table.Orange {
  border: 0px solid #EF6054 ;
  background-color: white;
  width: 100%;
  text-align: left;
  border-radius:10px; 
    padding:10px;  
    border-collapse:collapse;  
}
table.Orange td, table.blueTable th {
  padding: 3px 2px;
   
}
table.Orange tbody td {
 
    border-radius:10px; 
    padding:10px;  
    border-collapse:collapse; 
     
}
    
table.Orange th {
  background: #EF6055 ; 
  border-bottom: 0px solid #EF6055 ;
    color: white;
    border-radius:10px; 
    padding:10px;  
    border-collapse:collapse; 
}
table.Orange thead th {
  
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.Orange thead th:first-child {
  border-left: none;
}
#PoliceNormale{
color:#505050; 
    font:14px;
    text-align: left;
}
#BoiteA {
  border: 1px outset #EF6055;
  text-align: center ;
   padding-right: 2px;
padding-left: 2px;
}

monarriereplan{
background-image: "https://cdn.ca.yapla.com/company/CPYECzpkVRZ0qGgH3o2ImST1h/asset/images/arriereplan.png";   
}

    border: 1px solid #F9EED7 ;  
    border-radius: 30px; 
.BoiteRa{
    color: white;
    background-color: #645e58 ;
    font-weight: bold;
    font-size: 16px ;
    padding: 5px 5px 5px 5px;
}

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 380px;
  background-color: #555 ;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 9px 9px 9px 9px;
  position: absolute;
  z-index: 1;
  bottom: -1400%;
  left: 0%;
  margin-left: -8px;
    font-size: 16px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  left: 20%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}



#quiz {
justify-content: space-around;
  margin: 0 auto;
  padding: 10px;
     background-color: #8bafd3 ;
  border-radius: 35px;
    border-style: inset;
 box-shadow: 5px 10px #52718D;
  visibility: hidden;
}

#question {
  margin-bottom: 10px;
    font-size: 25px;
    text-align: left;
    color: white;
    font-weight: bold;
    font-family: "Verdana", serif;
    @media screen and (min-width: 578px) {
    font-size: 28px;
        padding-left: 20px;
}

@media screen and (max-width: 577px) {
    font-size: 1.2rem;
}
}
}
 #options {
  display: grid;
 grid-column-gap: 8%;
grid-row-gap: 5%;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}


button {
  margin: 0 auto;
  padding: 10px 20px;
  background-color: ghostwhite;
  color: #52718D ;
  border: none;
  border-radius: 35px;
  cursor: pointer;
    font-weight: bold;
    font-family: "Verdana", serif;
    font-size: 24px;
}

button:hover {
  background-color: #F9EED7 ;
}

.moyen {
color: white ;
  border-radius: 25px;
  background-color: indianred;
     padding:10px ;
  border: 1px solid black;    
  display : block ;
}
.BoiteRadius{
    border: 0px solid #F9EED7 ;  
    border-radius: 30px; 
    color: indianred;
    background-color: white  ;
    font-weight: bold;
    font-size: 14px ;
    margin-inline-start: 410px;
    width: 350px ;
     line-height: 45px;
  height: 45px;
  text-align: left;
}
.pastille{
  background-color:indianred ;
  color: white;
    border : 0px;
    border-color: #F9EED7 ;
    border-width : 0px;
  font-weight: bold;
  border-radius: 50%;
vertical-align: center;
    font-size: 13px ;
    padding: 8px;
}
.mywhitefont{
    color: white ;
    text-align: left ;
    margin-left: 20px ;
    display: block ;
    font-weight: bold;
    font-size: 20px;
}
#notebaspage {
  margin: 0 auto;
  width: 95%;
  background-color: #f0f0f1;
  color: black;
  outline: 2px solid #a1a1aa;
  padding: 15px 25px;
  text-align: left;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 13px;
}
@media (max-width: 601px) {
  #notebaspage {
    font-size: 0.4rem;
  }
}

#Citation {
    
            margin-left: 50px;
border-left: 3px solid #4BAEBF ;
            height: 200px;
    padding-left: 100px;
        }
#Citation280 {
    
            margin-left: 50px;
border-left: 3px solid #4BAEBF ;
            height: 280px;
    padding-left: 100px;
        }
div.petitexte {https://s1.yapla.com/web/fr-ca/web/webadvanced/siteId/14267
    color:white; font:100 15px Source Sans Pro,Arial,Helvetica,sans-serif;
    text-align: justify;
}
#Citation320 {
    
border-left: 3px solid #4BAEBF ;
            height: 320px;
    padding-left: 100px;
            margin-left: 50px;
        }
table.blueTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.blueTable tbody td {
  @media screen and (min-width: 578px) 
{ font-size: 22px; }

@media screen and (max-width: 577px) 
{font-size: .80rem;
}
}
table.blueTable tr:nth-child(even) {
  background: #D0E4F5;
}
table.blueTable th {
  background: #1C6EA4;
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  border-bottom: 2px solid #444444;
    color: white;
    @media screen and (min-width: 578px) 
{ font-size: 22px; }

@media screen and (max-width: 577px) 
{font-size: .80rem;
}
}
table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.PourColonnes {
  border: 0px solid blue;
  background-color: white;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.PourColonnes td, {
  border: 0px solid blue;
  vertical-align: top;
}
  font-size: 18px;
    padding: 15px;
    text-align: justify;
table.PourColonnes tbody td {
    vertical-align: top;
     border: 15px solid white;
}
td.celBleue {
    text-align: center; 
    background-color:#4BAEBF; 
    font-size: 26px; 
    vertical-align: center; 
    padding: 25px; 
    border-radius: 0px 0px 45px 45px; 
    color: white;

}
td.celRose {
    text-align: center;  
    background-color:#FAE1D9 ; 
    font-size: 26px; 
    vertical-align: center; 
    padding: 25px; 
    border-radius: 0px 0px 45px 45px;
    font-size: 26px; 
    padding: 25px;  
    color: black;
}
#Boite {
  border: 0px outset #EF6055;
  background-color: lightblue;
  text-align: center ;
    border-radius: 15px 50px;
    padding: 30px;
}
span.dot{
  background-color: #EF6055 ;
  color: black;
    border : solid;
    border-color: #F9EED7 ;
    border-width : 5px;
  font-weight: bold;
  border-radius: 50%;
  padding: 15px 20px;
  vertical-align: center;
  margin-left: 5px;
}
td.celNoire {
    text-align: center;  
    background-color:white; 
    font: small-caps bold 28px Georgia, serif;
    vertical-align: center; 
    padding: 10px; 
    border-collapse: collapse;
    color: black;
}
.myfont{
    font: small-caps bold 28px/52px Georgia, serif;
}

div.celBleue {
    text-align: center; 
    background-color:#4BAEBF; 
    font-size: 26px; 
    vertical-align: center; 
    padding: 25px; 
    border-radius: 0px 0px 45px 45px; 
    color: white;
}
div.celRose {
    text-align: center;  
    background-color:#FAE1D9 ; 
    font-size: 26px; 
    vertical-align: center; 
    padding: 25px; 
    border-radius: 0px 0px 45px 45px;
    font-size: 26px; 
    padding: 25px;  
    color: black;
}
table.NouvTable {
  border: 0px solid blue;
  background-color: white;
  width: 100%;
  text-align: left;
  border-collapse: collapse;

}
table.NouvTable td {
  border: 0px solid black;
  border-collapse: collapse;
    width: 50%;
  
}
table.NouvTable tbody td {
  font-size: 18px;
    padding: 15px;
    text-align: justify;
    vertical-align: top;
}

*{
  margin: 0;
  padding: 0;
}

#parent {
  display: flex;
  justify-content: space-around;
}

#left {
  border: 0px solid lightgray;
  background-color: black;
  width: 20%;
    padding:10px
}
#leftblanc{
 border: 0px solid black;
  background-color: white  ;
  width: 25%;
    padding:10px   
}
#quizz{
    display: flex;
    width: 100%;
.haut {
     border: 1px solid black;
    border-radius: 25px;
  background-color: #F9EED7;
    padding:10px ;
}
 .bas {
        border-radius: 25px;
  background-color: indianred;
     padding:10px ;
    }
}
#leftnoir {
 border: 1px solid black;https://s1.yapla.com/web/fr-ca/web/webadvanced/siteId/14267
  background-color: white;
  width: 25%;
    padding:10px    
}
#rightnoir {
  border: 1px solid lightgray;
  background-color: white;
  width: 50%;
}
#right{
  border: 0px solid lightgray;
  background-color: white;
  width: 75%;
}
span.dotbleu{
  background-color: #699EB9 ;
  color: #fff;
    border : solid;
    border-color: #F9EED7 ;
    border-width : 5px;
  font-weight: bold;
  border-radius: 50%;
  padding: 15px 20px;
  vertical-align: center;
  margin-left: 5px;
}
span.dotbleufonce{
  background-color: #034AAD ;
  color: #fff;
    border : solid;
    border-color: #F9EED7 ;
    border-width : 5px;
  font-weight: bold;
  border-radius: 50%;
  padding: 15px 20px;
  vertical-align: center;
  margin-left: 5px;
}
span.dotgris{
  background-color: #D6DCE3 ;
  color: #648CAD;
    border : solid;
    border-color: #648CAD ;
    border-width : 5px;
  font-weight: bold;
  border-radius: 50%;
  padding: 15px 20px;
  vertical-align: center;
  margin-left: 5px;
} 
#ImageFond {
    background-image:url("https://cdn.ca.yapla.com/company/CPYECzpkVRZ0qGgH3o2ImST1h/asset/images/ADN%20poster.png");
Padding: 15px;
    width: 100% ;
    background-repeat: no-repeat;
}
p.gauche {
  margin-left: 455px;
}
p.gauche2 {
  margin-left: 450px;
}
span.myfonttitle3 {
    color:#484848; 
    font:700 20px Source Sans Pro,Arial,Helvetica,sans-serif; 
    text-transform:uppercase; 
}
p.gauche3 {
  margin-left: 215px;
}
a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

a:hover {
  background-color: #ddd;
  color: black;
}

previous {
  background-color: #f1f1f1;
  color: black;
    
}

next {
  background-color: #EF6055;
  color: white;
}

.round {
  border-radius: 50%;
}
* {
  box-sizing: border-box;
}

.image-slideshow {
	width: 1200px;
    height: 300px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    position: relative;
}
.image-slideshow > div {
	width: 1200px;
    height: 300px;
	animation: move 15s ease-in-out 2s infinite alternate;
    display:inline-block;
}
.image-slideshow > div div {
	position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
}
.image-slideshow h2 {
	padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #f9f9f9;
}
.image-slideshow p {
	padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 14px;
    color: #dddddd;
}
@keyframes move {
	0%,30% { transform: translateX(0); }
   	40%,70% { transform: translateX(-600px); }
   	80%,100% { transform: translateX(-1200px); }
}
.image-slideshow2 {
	width: 480px;
    height: 480px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    position: relative;
}
.image-slideshow2 > div {
	width: 480px;
    height: 480px;
  animation: move 6s linear infinite;
    animation-direction: alternate-reverse;
    animation-fill-mode: both;
    display:inline-block;
}
.image-slideshow2 > div div {
	position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
}
.image-slideshow2 h2 {
	padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #f9f9f9;
}
.image-slideshow2 p {
	padding: 0 15px 15px 15px;
    margin: 0;
    font-size: 14px;
    color: #dddddd;
}
@keyframes move {
	0%,30% { transform: translateX(0); }
   	40%,70% { transform: translateX(-480px); }
   	80%,100% { transform: translateX(-960px); }
}
div.wrap2 {
  float: left;
  height: 500px;
  width: 422px;
}
div.group input {
  display: none;
  left: -100%;
  position: absolute;
  top: -100%;
}
div.group input ~ div.content {
  border: solid 1px black;
  display: none;
  height: 350px;
  margin: 0px 60px;
  position: relative;
  width: 300px;
}
div.group input:checked ~ div.content {
  display: block;
}
div.group input:checked ~ div.content > img {
  display: block;
  -webkit-animation: opac 2s ease-in;
  animation: opac 2s ease-in;
}
@-webkit-keyframes opac {
  from { opacity: 0 }
  to { opacity: 1 }
@keyframes opac {
  from { opacity: 0 }
}
  to { opacity: 1 }
}
div.group input:checked ~ label.previous2,
div.group input:checked ~ label.next2 {
  display: block;
  opacity: 1;
}
div.group label {
  background-color: white;
  border: solid 0px black;
  display: none;
  height: 70px;
  width: 70px;
}
img {
  margin: auto;
}

label {
  font-size: 2em;
  margin: 60px 0 0 0;
}
label.previous2 {
  float: left;
  padding: 0 0 30px 5px;
}
label.next2 {
  float: right;
  padding: 0 15px 25px 0;
  text-align: right;
}
* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.mylittlefont{
    font-size: 16px;
     color:black
}    
 @media (max-width: 600px) {
    .mylittlefont {
        font-size: 10px;  /* Adjusted font size for small screens */
    }
}   
   
.my-div {
  width: 100px;
  height: 100px;
  background-color: black;
  margin: 10px;
  border-radius: 10px;
}

.post {
  container-type: inline-size;
  container-name: summary;
    color: #EF6055  ;
    font-size: 35px ;
}
.monfond {
    background-color: #D6DCE3  ;
outline-style : dotted ;
outline-color : #EF6055  ;
    outline-width : 2px ;
    padding : 10px 10px 10px 10px ;
    body {
    margin: 0px;
    padding: 0px;
}
* {
     font-family: Georgia, Times, "Times New Roman", serif;
 }

 .quiz,
 .scores {
     margin: 50px auto 0 auto;
     max-width: 400px;
 }

 #top {
     color: green;
 }

 .containerNew {
     border: 5px solid;
     position: absolute;
     top: 50%;
     left: 50%;
     height: 580px;
     width: 50%;
     transform: translate(-50%, -50%);
     padding: 10px;
 }

 p {
     margin: 15px 15px;
 }

 .landing {
     text-align: center;
 }

 .scoresHeader {
     position: absolute;
     top: 15px;
     left: 15px;
 }

 .timer {
     position: absolute;
     top: 15px;
     right: 15px;
 }

 button {
     display: inline-block;
     margin: 10px;
     cursor: pointer;
     color: #fff;
     background-color: #52865a;
     border-radius: 5px;
     border: 0;
     padding: 20px;
 }

 button:hover {
     background-color: #2a8d12;
 }

 .options button {
     display: block;
 
 }

 input[type="text"] {
     font-size: 100%;
 }

 .hide {
     display: none;
 }

 .feedback {
     font-style: bold;
     font-size: 120%;
     margin-top: 20px;
     padding-top: 15px;
     color: #fff;
     border-top: 2px solid #4B0082;
 }

 ol {
     padding-left: 15px;
     max-height: 600px;
     overflow: auto;
 }

 li {
     padding: 5px;
     list-style: decimal inside none;
 }

 li:nth-child(odd) {
     background-color: #dfdae7;
 }

 @media screen and (max-width: 768px) {
     .containerNew {
         width: 80%;
     }
 }

 @media screen and (max-width: 575px) {
     .containerNew {
         width: 90%;
     }
     .quiz,
     .scores {
         max-width: 90%;
         
     }
 }
.flex-column {
  flex-direction: column !important;
}
    .pe-4 {
  padding-right: 1.5rem !important;
}
    .ms-3 {
  margin-left: 1.5rem !important;
}
    .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
    .h-100 {
  height: 100% !important;
}
    .align-items-stretch {
  align-items: stretch !important;
}
    .border-end {
  border-right: 1px solid #dee2e6 !important;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
  .nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}  
    .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

    .align-items-stretch {
  align-items: stretch !important;
}
    .mt-3 {
  margin-top: 1rem !important;
}
.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}
[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000;
}
.d-block {
  display: block !important;
}
    .p-3 {
  padding: 1rem !important;
}
.col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
 .mb-2 {
  margin-bottom: 0.5rem !important;
}
    .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: pink;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;

  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
   .fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}
  width: 100% !important;
}
