#page1 {
  display:block;
  background-image: url('../Communs/img/naiade_photo-0.png');
  background-blend-mode: hue;
  background-size: cover;
  background-color: #ffffffe0;
}


/* grd0
-------*/
#grd0 {
  height: 25%;  
  display: flex;
  align-items: center;
  justify-content: center;
}

#grd0 img {
  height: 80%;
  display: block;
}


/* grd1
-------*/
#grd1 {
  height: 15%;    
  display: flex;
  align-items: center;
  justify-content: center; 
}

#grd1 h1 {
    color: var(--color_ne_darkblue);
    text-transform: none;
    font-size: 1.4rem;
}


/* page2
-------*/
/* grd2
-------*/
#grd2 {
  height: 57%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;  
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #b4a59270;
}

#grd2 img {
  height: 15%;
  display: block;
  margin-top: 3%;
}

#grd2 p {
    margin: 3% 5% 0 5%;
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--color_ne_darkblue);
    color: black;
    text-align:justify;
    text-transform: none;
}


/* grd3
-------*/
.grd3 {
  margin: 25px 5% 0 5%;
  display: grid;
  grid-template-columns:   1fr;
  grid-template-rows:      2.8rem   ;
  grid-template-areas:     "z1    z1"
                           "z2    z2"
                           "z3    z3"
                           "z4    z4";
  align-items: center;  
}

.grd3 img {
  grid-area: z3;
  display: block;
  height: 20svh;
  border-radius: 50%;
  margin: auto;
  margin-top: 3%;
}

.grd3 h2 {
  grid-area: z1;
  display: block;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color_ne_darkblue);
  transition: transform 0.3s ease-out;
}

.grd3 p {
  grid-area: z2;
  font-size: 0.8rem;
  font-weight: normal;
  display: block;
  text-align: justify;
  color: black;
  background-color: rgb(255, 255, 255);
  border-radius: 0px;
  transition: all 3s ;
}

.gdr3 div label {
    grid-area: z4;
}

.gdr3 div div {
    grid-area: z5;
}



/* grd4 
-------*/
.grd4 {
  margin: 25px 5% 0 5%; 
}

.grd4 h2 {
/*  margin-left: 5%; */
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color_ne_darkblue);
}

.grd4 li {
/*  margin-left: 5%; */
  margin: 5px 0 10px 5%;
  font-size: 0.8rem;
  list-style: disc;
  list-style-position: outside;
  color: black;
}

.grd4 a {
    font-size: 0.8rem;
    margin-left: 1rem;
}

.opt_check {
    display: none;
}
.opt_lbl {
    font-style: italic;
    font-size: 0.7rem;
    text-decoration: underline;
    margin-bottom: 8px;
}
.opt_suite {
    display: none;
}

.opt_check ~ .opt_lbl::after {  /* ~ selection tout opt_lbl dans div suivant ce opt_check */
    content: "Voir plus";
}

.opt_check:checked ~ .opt_lbl::after {
    content: "Voir moins";
}

.opt_check:checked ~ .opt_suite {
    display: inline;
    text-align: left;
}

#plusmoins1 {
    font-size:0.9rem;
    text-align: center;
    padding-left: 8px;
}


#plusmoins1 li {
    margin-top: 10px;
}

#plusmoins1 li li {
    list-style: disc;
    list-style-position: inside;
    font-size:0.7rem;
    margin-top: 0px;
}




/* styles surchargés selon format ecran
--------------------------------------*/
html {
    /* par defaut , devrait etre surchargé par definitions suivantes */
    font-size: 3px;
}

.height1 {
   height: calc(100svh - 62px);
}

/* Smartphone Portrait */
@media screen and (max-width: 599px) {
    html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
    font-size: 18px;
    }
}

/* Smartphone paysage */
@media screen and (max-height: 599px) and (orientation: landscape){
    html {
        font-size: 20px;
    }

    .height1 {
         height: 800px;
    }
}

/* Tablette Portrait */
@media screen and (min-width: 600px) and (max-width: 1023px) and (orientation: portrait) {
    html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
    font-size: 2.5vh;
    }
}

/* Tablette landscape */
@media screen and (min-width: 600px) and (max-width: 1023px) and (min-height: 600px) and (orientation: landscape) {
    html {
    /* font selon taille écran (svh pour taille sans barre navigateur */
    font-size: 2.5vh;
    }
}

/* ordinateur */
@media screen and (min-width: 1024px) {
    html {
        font-size: 20px;
    } 
}
