/*COULEURS*/
/*
White : rgb(245, 245, 245);
Gold : rgb(132, 128, 94);
Black : rgb(60, 62, 68);
*/

/*Computer Moder*/
@font-face {
  font-family: "cmuregular";
  src: url("fonts/cmunorm.ttf");
}

@font-face {
  font-family: "cmuitalique";
  src: url("fonts/cmunormital.ttf");
}

@font-face {
  font-family: "cmubold";
  src: url("fonts/cmunormbold.ttf");
}

@font-face {
  font-family: "cmubolditalique";
  src: url("fonts/cmunormboldital.ttf");
}

/* Computer Modern - Serif */
@font-face {
  font-family: "cmuserifital";
  src: url("fonts/cmuserifital.ttf");
}

@font-face {
  font-family: "cmuserifreg";
  src: url("fonts/cmuserifreg.ttf");
}

@font-face {
  font-family: "cmuserifbolditalique";
  src: url("fonts/cmuserifboldital.ttf");
}

@font-face {
  font-family: "cmumonolight";
  src: url("fonts/cmumonolight.ttf");
}

/*CLASS DES TYPOGRAPHIES*/
.regular {font-family: cmuregular;}
.italic {font-family: cmuitalique;}
.bold {font-family: cmubold;}
.serif {font-family: cmuserifreg;}
.serifitalic {font-family: cmuserifital;}
.serifbolditalic {font-family: cmuserifbolditalique;}

/*DEFAULT*/
body {
  font-family: "cmuregular";
  background-color: whitesmoke;
}


/*DÉBUT DE LA MISE EN FORME*/
  /*MOBILE FIRST*/


/*ACCUEIL - HEADER ET MENU*/
header {
  position: absolute;
  display: flex;
  justify-content: flex-end;

  width: 100%;
}

header>nav {
  /* display: none; */
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(245, 245, 245, .8);

  display: none;
}

header>nav.menu-ouvert {
  display: flex;
}

header>nav>a {
  margin: 50px 0;
  font-size: 1.5rem;
  text-align: center;
  color: #84805e;
  text-decoration: underline;
  text-shadow: -2px 2px 5px rgba(60, 62, 68, .3);
}

/*ACCUEIL - Menu burger*/
header>.menu-btn {
  position: fixed;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

header>.menu-btn>.menu-btn-burger {
  width: 40px;
  height: 4px;
  background: whitesmoke;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(60, 62, 68, .3);
  transition: all .5s ease-in-out;
}

header>.menu-btn>.menu-btn-burger::before,
header>.menu-btn>.menu-btn-burger::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: whitesmoke;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(60, 62, 68, .3);
  transition: all .5s ease-in-out;
}

header>.menu-btn>.menu-btn-burger::before{transform: translateY(-12px);}
header>.menu-btn>.menu-btn-burger::after{transform: translateY(12px);}

/*ACCUEIL - Menu burger animation*/
header>.menu-btn.open>.menu-btn-burger {
  transform: translateX(-40px);
  background:transparent;
  box-shadow: none;
}

header>.menu-btn.open>.menu-btn-burger::before {
  transform: rotate(45deg) translate(30px, -30px);
  background: #84805e;
}

header>.menu-btn.open>.menu-btn-burger::after {
  transform: rotate(-45deg) translate(30px, 30px);
  background: #84805e;
}



/*ACCUEIL - MAIN*/
main {
  background: linear-gradient(#84805e 1%, whitesmoke);
}

/*ACCUEIL - TEXTE*/
main>div#accueil {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100vh;
}

main>div#accueil>div {
  width: 80%;
  max-width: 950px;
  color: whitesmoke;
}

main>div#accueil>div>h1,
main>div#accueil>div>h2 {
  font-size: 1em;
  line-height: 1.2em;
}

main>div#accueil>div>p {
  margin-top: .5em;
  font-size: .9em;
  line-height: 1.2em;
  hyphens: manual;
}

main>div#accueil>div>p>a {
  font-family: "cmuserifital";
  text-decoration: underline;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

main>div#accueil>div>p>a:hover {
  color: rgba(245, 245, 245, .75);
}

/*ACCUEIL - GALERIE*/
main>div#galerie {
  width: 80%;
  margin: 0 auto;
}

main>div#galerie>figure{
  width: 100%;
  line-height: 0;
  margin-bottom: 10%;
  box-shadow: -10px 10px 15px rgba(60, 62, 68, 0.3);
  background-size: cover;
}

main>div#galerie>figure>img{
  width: 100%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

/* main>#remonter {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 10px;
  width: 50px;
  cursor: pointer;
  box-shadow: -5px 5px rgba(60, 62, 68, 0.3);
} */

/*PRÉSENTATION D'UNE AFFICHE*/
main>div#fenetre-affiches {
  display: none; 

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  flex-direction: column;
  justify-content: space-around;

  background-color: rgba(245, 245, 245, .9);
}
  /*Fermer la présentation de l'affiche*/
main>div#fenetre-affiches>.conteneur-fermer {
 height: 3.5%;
 display: flex;
 align-items: flex-start;
 justify-content: flex-end;
 margin: 0 5% 0 0;
}

main>div#fenetre-affiches>.conteneur-fermer>img {
  height: 100%;
  cursor: pointer;
  transition: all .3s;
}

main>div#fenetre-affiches>.conteneur-fermer>img:hover {
  transform: rotate(180deg);
}

  /*Flèches affiche préc. et affiche suiv.*/
main>div#fenetre-affiches>.conteneur-flecheGauche,
main>div#fenetre-affiches>.conteneur-flecheDroite {
  position: absolute;
  width: 4%;
  max-width: 80px;
  margin: 10px;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

main>div#fenetre-affiches>.conteneur-flecheGauche {
  left: 0;
}

main>div#fenetre-affiches>.conteneur-flecheDroite {
  right: 0;
}

main>div#fenetre-affiches>.conteneur-flecheGauche>img,
main>div#fenetre-affiches>.conteneur-flecheDroite>img {
  width: 100%;
  cursor: pointer;
  display: none;
}

  /*Conteneur de l'affiche*/
main>div#fenetre-affiches>.conteneur-affiche {
  width: auto;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

main>div#fenetre-affiches>.conteneur-affiche>img {
  height: 100%;
  box-shadow: -10px 10px 15px rgba(132, 128, 94, 0.2);
}

  /*Conteneur de la citation*/
main>div#fenetre-affiches>.conteneur-citation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main>div#fenetre-affiches>.conteneur-citation>blockquote {
 margin: 5% 0;
 width: 80%;
 text-align: center;
 color: rgb(132, 128, 94);
 text-shadow: -3px 3px 5px rgba(60, 62, 68, .2);
}

main>div#fenetre-affiches>.conteneur-citation>blockquote>p {
  display: block;
  font-size: .8em;
}

main>div#fenetre-affiches>.conteneur-citation>blockquote>p::before {
  content: "« ";
  display: inline;
  line-height: 1.1em;
}

main>div#fenetre-affiches>.conteneur-citation>blockquote>p::after {
  content: " »";
  display: inline;
}

main>div#fenetre-affiches>.conteneur-citation>blockquote>cite {
  display: block;
  font-family: "cmuserifital";
  margin-top: 25px;
  font-size: .8em;
}

main>div#fenetre-affiches>.conteneur-citation>a {
  padding: 5px;
  background-color: transparent;
  text-decoration: none;
  color: #84805e;
  border: solid 1px #84805e;
  margin-top: 5px;
  border-radius: 30px;
  font-size: .8em;
}


/*Les autres fenêtres BLOC*/

main > .fenetres-bloc {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  box-shadow: -10px 10px 15px rgba(132, 128, 94, 0.3);
  background-color: whitesmoke;
}

main > .fenetres-bloc > .fenetres-menu {
  width: 100%;
  height: 10%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main > .fenetres-bloc > .fenetres-interieur {
  height: calc(100vh - (0.1*100vh));
  border-top: solid 2px #84805e;
  margin: 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
}

main > .fenetres-bloc > .fenetres-interieur > .bloc-wrap:last-child {
  border: none;
}

/*Fenêtre ARPENTAGE*/

main>.fenetres-bloc>.fenetres-menu>h2 {
  font-family: "cmuserifital";
  color: #84805e;
  font-size: 1.5em;
}

main>.fenetres-bloc>.fenetres-menu>img {
  max-width: 7%;
  cursor: pointer;
  transition: all .3s;
  max-height: 25px;
}

main>.fenetres-bloc>.fenetres-menu:hover>img {
  transform: rotate(180deg);
}

main>.fenetres-bloc>.fenetres-interieur>h3 {
  width: 100%;
  padding: 15px 0;
  background-color: #84805e;
  color: whitesmoke;
  font-size: 1.3em;
  text-align: center;
  text-decoration: underline;
  font-family: "cmuserifital";
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap {
  width: 100%;
  padding: 25px;
  border-bottom: solid 2px #84805e;
  color: #84805e;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>h4 {
  font-size: 1.1em;
  font-family: "cmubold";
  line-height: 1.1em;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>h4>span {
  font-family: "cmuitalique";
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.liens {
  width: 100%;
  align-self: center;
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.liens>a {
  padding: 10px;
  border: solid 2px #84805e;
  border-radius: 30px;
  font-size: .8em;
  text-transform: uppercase;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.liens>a.pdf {
  background-color: #84805e;
  color: whitesmoke;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.extraits {
  display: none;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.extraits>p {
  margin: 30px 0;
  font-family: "cmumonolight";
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.extraits>p::before {
  content: "« ";
  font-family: "cmumonolight";
  color: #84805e;
  display: inline;
}

main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap>.extraits>p::after {
  content: " »";
  font-family: "cmumonolight";
  color: #84805e;
  display: inline;
}

/*Fenêtre IMAGES EN PARTAGE*/
main>#fenetre-images>.fenetres-interieur>.bloc-wrap {
  display: flex;
  flex-direction: column;
  padding: 5%;
}

main > #fenetre-images > .fenetres-interieur > .bloc-wrap > .wrap-image {
  display: flex;
  justify-content: center;
  padding: 5%;
}

main > #fenetre-images > .fenetres-interieur > .bloc-wrap > .wrap-image > img {
  max-width: 100%;
  max-height: 300px;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte {
  width: 100%;
  padding: 5%;
  display: flex;
  align-items: center;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte>p {
  width: 100%;
  font-size: 1em;
  font-family: "cmuregular";
  text-align: center;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte>p>span.auteur {
  font-family: "cmubolditalique";
  font-size: 1.4em;
  color: #84805e;
  display: inline-block;
  border-bottom: solid 1px #84805e;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte>p>span.commentaire {
  display: block;
  margin: 20px 0;
  font-size: 1em;
  font-family: "cmuserifital";
  color: #84805e;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte>p>span.source {
  display: block;
  margin-top: 20px;
  color: #84805e;
  font-size: 1.2em;
  font-family: "cmuserifreg";
  margin-left: 20px;
  transition: all .3s ease-in-out;
}

main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte>p>span.source:hover {
  color: rgba(132, 128, 94, 0.8);
}

/*La fenêtre des SIGNES*/
main>#fenetre-signes>.fenetres-interieur>img {
  width: 100%;
}

/*FOOTER*/
footer {
  padding: 20px;
  background-color:#84805e;
  color: whitesmoke;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: .8em;
}

footer > p > a {
  text-decoration: underline;
}

/*TEXTES FOND BLANC*/
.fond-blanc > header > .menu-btn > .menu-btn-burger,
.fond-blanc > header > .menu-btn > .menu-btn-burger::before,
.fond-blanc > header > .menu-btn > .menu-btn-burger::after {
  background: #84805e;
}

.fond-blanc>main {
  background: whitesmoke;
  color: #84805e;
  padding: 80px 40px;
}

.fond-blanc>main>h1 {
  font-size: 1.5em;
  font-family: "cmuitalique";
}

.fond-blanc>main>p span.italique {
  font-family: "cmuserifital";
}

.fond-blanc>main>p span.bolditalique {
  font-family: "cmuserifbolditalique";
}

.fond-blanc>main>p span.souligne {
  text-decoration: underline;
}

.fond-blanc > header > .menu-btn.open > .menu-btn-burger {
  background: whitesmoke;
}

/*A PROPOS*/
#a-propos>main {
  font-size: 1.1em;
  line-height: 1.2em;
}

#a-propos>main>p {
  margin: 40px 0;
  display:block;
}

#a-propos>main>.centre {
  display: block;
  margin-top: 80px;
  padding: 40px 0;
  border-top: solid 1px #84805e;
  border-bottom: solid 1px #84805e;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  font-size: .9em;
  text-align: center;
}

/*MENTIONS LEGALES*/
#mentions-legales>main {
  display: flex;
  flex-direction: column;
}

#mentions-legales>main>p {
  font-family: "cmuserifital";
}

#mentions-legales>main p {
  margin : 10px 0;
  line-height: 1.2em;
}

#mentions-legales>main a {
  text-decoration: underline;
}

#mentions-legales>main>div {
  margin-top: 40px;
}

#mentions-legales>main>div>h2 {
  font-family: "cmuserifital";
  font-size: 1.2em;
  text-decoration: underline;
}





/*ICI C'EST LE RESPONSIVE > L'ÉCRAN EST DE + EN + GRAND*/

/*IPHONE LANDSCAPE*/
@media screen and (min-width: 650px) and (orientation: landscape) {

  main>div#galerie {
    width: 95%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  main>div#galerie>figure{
    width: 45%;
    margin: 0 2.5% 5% 2.5%;
  }

  main>div#fenetre-affiches {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  main>div#fenetre-affiches>.conteneur-affiche {
    width: 45%;
    height: 90%;
  }

  main>div#fenetre-affiches>.conteneur-citation {
    width: 45%;
    max-height: 90%;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote {
    width: 80%;
    margin: 0;
    text-align: left;
  }

  main>div#fenetre-affiches>.conteneur-fermer {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2%;
    height: 5%;
  }

  main>div#fenetre-affiches>.conteneur-flecheDroite>img,
  main>div#fenetre-affiches>.conteneur-flecheGauche>img {
    display: block;
  }

  main > .fenetres-bloc > .fenetres-menu {
    height: 15%;
  } 

  main > .fenetres-bloc > .fenetres-interieur {
    height: calc(100vh - (0.15*100vh));
  }

  main>#fenetre-images.fenetres-bloc>.fenetres-interieur>.bloc-wrap {
    padding: 0;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap {
    flex-direction: row;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-image {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-right: solid 2px #84805e;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte {
    width: 60%;
  }

  /*A PROPOS*/
  .fond-blanc>main {
    padding: 120px 60px;
  }

}

/*IPAD PORTRAIT et +*/
@media screen and (min-width: 760px) {
  main>div#accueil {
    height: 95vh;
  }

  header>.menu-btn {
    margin: 2.5%;
  }

  header>nav>a {
    margin: 80px 0;
    font-size: 1.8rem;
  }

  main>div#accueil>div>h1,
  main>div#accueil>div>h2,
  main>div#accueil>div>p {
    font-size: 1.2em;
  }

  main>div#galerie {
    width: 95%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  main>div#galerie>figure{
    width: 45%;
    margin: 0 2.5% 5% 2.5%;
  }

  
  main>div#fenetre-affiches>.conteneur-citation>blockquote {
    width: 70%;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote>p {
    font-size: 1em;
    line-height: 1.2em;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote>cite {
    font-size: .9em;
  }

  main>div#fenetre-affiches>.conteneur-citation>a {
    padding: 10px;
    background-color: transparent;
    text-decoration: none;
    color: #84805e;
    border: solid 1px #84805e;
    margin-top: 50px;
    border-radius: 30px;
    font-size: 1em;
  }

  main>div#fenetre-affiches>.conteneur-flecheGauche,
  main>div#fenetre-affiches>.conteneur-flecheDroite {
    width: 5%;
  }

  main>div#fenetre-affiches>.conteneur-flecheDroite>img,
  main>div#fenetre-affiches>.conteneur-flecheGauche>img {
    display: block;
  }

  /*Les blocs de fenêtres*/
  main > .fenetres-bloc > .fenetres-menu {
    height: 10%;
  }

  main > .fenetres-bloc > .fenetres-interieur {
    width: 90%;
    height: calc(100vh - (0.15*100vh));
    border: solid 2px #84805e;
  }

  main>.fenetres-bloc>.fenetres-interieur>.bloc-wrap {
    padding: 50px 10%; 
  }

  main > .fenetres-bloc > .fenetres-interieur > h3 {
    padding: 25px 0;
  }

  main > .fenetres-bloc > .fenetres-menu > h2 {
    font-size: 1.5em;
  }

  main > .fenetres-bloc > .fenetres-interieur > .bloc-wrap > h4 {
    font-size: 1.3em;
    line-height: 1.5em;
  }

  main > .fenetres-bloc > .fenetres-interieur > .bloc-wrap > h4 > span {
    display: block;
  }

  main > .fenetres-bloc > .fenetres-interieur > .bloc-wrap > .extraits > p {
    width: 75%;
    margin: 50px auto;
    text-align: center;
  }
  
  main>#fenetre-images.fenetres-bloc>.fenetres-interieur>.bloc-wrap {
    padding: 0;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap {
    flex-direction: row;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-image {
    align-items: flex-start;
    max-width: 50%;
    border-right: solid 2px #84805e;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte > p {
    text-align: left;
  }

  main>#fenetre-images>.fenetres-interieur>.bloc-wrap>.wrap-texte {
    width: 65%;
  }

  footer {
    font-size: 1em;
  }

  /*A PROPOS*/
  .fond-blanc>main>h1 {
    font-size: 2em;
  }

  .fond-blanc>main {
    padding: 120px 0px;
  }

  #a-propos>main {
    display: block;
    width: 80%;
    margin: 0 auto;
    font-size: 1.3em;
    line-height: 1.4em;
  }

  /*MENTIONS LEGALES*/
  #mentions-legales>main {
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
  }

  #mentions-legales>main h1 {
    width: 100%;
  }

  #mentions-legales>main>p {
    width: 100%;
  }

  #mentions-legales>main div {
    width: 50%;
    padding: 15px;
  }
}

/*IPAD PAYSAGE LANDSCAPE et +*/
@media screen and (min-width: 1024px) and (orientation : landscape) {

  header>.menu-btn {
    display: none;
  }

  header>nav {
    position: initial;
    display: flex;
    align-items: center;
    padding: 20px 0;

    background: transparent;
    height: initial;
    justify-content: flex-end;
    flex-direction: row;
    opacity: initial;
    z-index: initial;
  }
  
  header>nav>a {
    margin: 0 40px;
    color: whitesmoke;
    text-decoration: underline;
    transition: all .3s ease-in-out;
    font-size: initial;
  }
  
  header>nav>a:hover {
    color: rgba(245, 245, 245, .8);
  }

  main>div#accueil>div {
    width: 70%;
  }

  main>div#accueil>div>p,
  main>div#accueil>div>h1,
  main>div#accueil>div>h2 {
    line-height: 1.2em;
  }

  main>div#galerie>figure{
    width: 28.3333333%;
  }

  main>div#fenetre-affiches {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  main>div#fenetre-affiches>.conteneur-affiche {
    width: 45%;
    height: 80%;
  }

  main>div#fenetre-affiches>.conteneur-citation {
    width: 45%;
    max-height: 80%;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote {
    width: 80%;
    margin: 0;
    text-align: left;
  }

  main>div#fenetre-affiches>.conteneur-fermer {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2%;
    height: 3%;
  }

  main>div#fenetre-affiches>.conteneur-flecheGauche,
  main>div#fenetre-affiches>.conteneur-flecheDroite {
    width: 3.5%;
  }

  main > .fenetres-bloc > .fenetres-interieur {
    height: calc(100vh - (0.15*100vh));
  }

  /*FOND BLANC*/
  .fond-blanc>header>#menu>a {
    color: #84805e;
  }

  /*A PROPOS*/
  #a-proposmain {
    width: 70%;
    font-size: 1.4em;
    line-height: 1.4em;
  }

  #mentions-legales>main>p {
    width: 100%;
    padding-right: 40%;
  }

  #mentions-legales>main {
    justify-content: space-around;
  }

  #mentions-legales>main div {
    width: 40%;
  }

}

/*GRAND ECRAN DESKTOP*/
@media screen and (min-width: 1224px) {

  main>div#accueil>div>h1,
  main>div#accueil>div>h2,
  main>div#accueil>div>p {
    font-size: 1.55em;
  }

  main>div#galerie {
    width: 97.5%;
  }

  main>div#galerie>figure{
    width: 22.5%;
    margin: 0 1.25% 2.5% 1.25%;
  }

  main>div#galerie>figure>img:hover{
    opacity: 0;
  }

  main>div#fenetre-affiches {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  main>div#fenetre-affiches>.conteneur-affiche {
    width: 40%;
    height: 80%;
  }

  main>div#fenetre-affiches>.conteneur-citation {
    width: 50%;
    max-height: 90%;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote {
    width: 60%;
    margin: 0;
    text-align: left;
  }

  main>div#fenetre-affiches>.conteneur-citation>blockquote>p {
    font-size: 1.2em;
    line-height: 1.3em;
  }
  
  main>div#fenetre-affiches>.conteneur-citation>blockquote>cite {
    font-size: 1em;
  }

  main>div#fenetre-affiches>.conteneur-fermer {
    margin: 1.5%;
    height: 4%;
  }

  main>div#fenetre-affiches>.conteneur-flecheGauche,
  main>div#fenetre-affiches>.conteneur-flecheDroite {
    width: 3%;
  }

  /*Les fenêtres blocs*/
  main > .fenetres-bloc {
    height: auto;
    box-shadow: -10px 10px 15px rgba(132, 128, 94, 0.3);
  }

  main > .fenetres-bloc > .fenetres-menu {
    padding: 25px 5%;
  }

  main > .fenetres-bloc > .fenetres-interieur {
    height: 70vh;
    margin-bottom: 5%;
  }

  main > .fenetres-bloc > .fenetres-interieur > .bloc-wrap > h4 {
    font-size: 1.2em;
  }

  main>#fenetre-arpentage {
    width: 60%;
    max-width: 950px;
    top: 35px; 
    left: 10%;
  }

  main>#fenetre-images {
    width: 65%;
    max-width: 950px;
    top: 15px; 
    right: 15%;
  }

  main>#fenetre-signes {
    width: 55%;
    max-width: 850px;
    bottom: 25px;
    top: auto;
    margin-left: 50vw;
    transform: translateX(-50%);
  }

  /*A PROPOS*/
  #a-propos>main {
    max-width: 950px;
    font-size: 1.6em;
    line-height: 1.5em;
  }

  #a-propos>main>.centre {
    max-width: 400px;
    font-size: .8em;
    line-height: 1.3em;
  }

  #mentions-legales>main div {
    width: 30%;
  }
}



