@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  background: #333;
  height: 100vh;
  width: 100vw;
}

.toggler {
  /* TOUJOURS GARDER LE BASCULEUR OU LA CASE À COCHER AU-DESSUS DE TOUT : */
  position: relative;
  z-index: 3;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: 0;
}

.nodeco, .nodeco:hover .nodeco:visited {
  text-decoration: none !important;
  color: inherit !important;
  background: none !important;
  border: none !important;
}

.hamburger {
  position: absolute;
  top: 0;
  left: auto;
  height: 40px;
  width: 40px;
  padding: 0.6rem;
  z-index: 2;
  /* POUR AFFICHER CHAQUE ÉLÉMENT AU CENTRE : */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CRÉATION DE LA LIGNE DU MILIEU DE L'HAMBURGER : */
.hamburger > div {
  position: relative;
  top: 0;
  left: 0;
  background: white;
  height: 2px;
  width: 60%;
  transition: all 0.4s ease;
}

/* CRÉATION DES LIGNES SUPÉRIEURE ET INFÉRIEURE :
LA LIGNE SUPÉRIEURE EST À -10PX AU-DESSUS DE CELLE DU MILIEU ET LA LIGNE INFÉRIEURE EST À 10PX EN DESSOUS DU MILIEU : */
.hamburger > div::before,
.hamburger > div::after {
  content: "";
  position: absolute;
  top: -10px;
  background: white;
  width: 100%;
  height: 2px;
  transition: all 0.4s ease;
}

.hamburger > div::after {
  top: 10px;
}

/* SI LE BASCULEUR EST DANS SON ÉTAT COCHÉ, ALORS DÉFINIR L'ARLIER PLAN EN NOIR COMPLET ET OPAQUE : */
.toggler:checked + .hamburger > div {
  background: rgba(0, 0, 0, 0);
}

.toggler:checked + .hamburger > div::before {
  top: 0;
  transform: rotate(45deg);
  background: white;
}

/* ET FAIRE TOURNER LES LIGNES SUPÉRIEURE ET INFÉRIEURE : */
.toggler:checked + .hamburger > div::after {
  top: 0;
  transform: rotate(135deg);
  background: white;
}

/* MENU PRINCIPAL AVEC UN FOND BLANC ET UN TEXTE : */
.menu {
  width: 8vw;
  height: 100vh;
  /* APPLICATION D'UNE TRANSITION AU MENU : */
  transition: all 0.4s ease;
}

/* SI LE BASCULEUR EST COCHÉ, ALORS AUGMENTER LA LARGEUR DU MENU À 30%, CRÉANT UN EFFET DOUX : */
.toggler:checked ~ .menu {
  position: absolute;
  width: 8vw;
}

/* STYLISATION DE LA LISTE : */
.menu > div > ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0px;
  padding-left: 10px;
  width: 8vw;
  margin: 0;
  padding: 0;
  /* INITIALEMENT CACHÉ : */
  /*transform: translateX(-200px);
  transition: translateX 0.4s ease;
    transition-delay: 0.1s;*/
  transition-property: all;
  left: -8vw;
  transition: all 0.4s ease;
}
@media only screen and (orientation: portrait) and (max-width: 240px) {
  .menu > div > ul {
    left: -100vw;
    width: 33vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 241px) {
  .menu > div > ul {
    left: -50vw;
    width: 33vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 350px) {
  .menu > div > ul {
    left: -50vw;
    width: 33vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 480px) {
  .menu > div > ul {
    left: -30vw;
    width: 25vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 720px) {
  .menu > div > ul {
    left: -27vw;
    width: 17vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 1024px) {
  .menu > div > ul {
    left: -23vw;
    width: 13vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 1280px) {
  .menu > div > ul {
    left: -20vw;
    width: 10vw;
  }
}
@media (orientation: landscape) and (max-width: 1400px) {
  .menu > div > ul {
    left: -19vw;
    width: 9vw;
  }
}
@media (orientation: landscape) and (max-width: 1450px) {
  .menu > div > ul {
    left: -20vw;
    width: 10vw;
  }
}
@media (orientation: landscape) and (max-width: 1200px) {
  .menu > div > ul {
    left: -21vw;
    width: 11vw;
  }
}
@media (orientation: landscape) and (max-width: 1100px) {
  .menu > div > ul {
    left: -22vw;
    width: 12vw;
  }
}
@media (orientation: landscape) and (max-width: 1000px) {
  .menu > div > ul {
    left: -23vw;
    width: 13vw;
  }
}
@media (orientation: landscape) and (max-width: 900px) {
  .menu > div > ul {
    left: -24vw;
    width: 14vw;
  }
}
@media (orientation: landscape) and (max-width: 850px) {
  .menu > div > ul {
    left: -25vw;
    width: 15vw;
  }
}
@media (orientation: landscape) and (max-width: 800px) {
  .menu > div > ul {
    left: -25vw;
    width: 16vw;
  }
}

.menu > div > ul > li {
  list-style: none;
  padding: 0.5rem;
}
@media (orientation: landscape) and (max-width: 920px) {
  .menu > div > ul > li {
    line-height: 1;
    padding-top: 0;
    padding-bottom: 14px;
  }
}
@media (orientation: portrait) and (max-width: 950px) {
  .menu > div > ul > li {
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (orientation: landscape) and (max-height: 420px) {
  .menu > div > ul > li {
    line-height: 0.9;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.menu > div > ul > li > a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.menu > div > ul > li > a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.menu > div > ul > li > a:hover {
  color: white;
  opacity: 1;
  text-decoration: none;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* LORSQUE LE BASCULEUR EST COCHÉ, CHANGER LA VISIBILITÉ EN VISIBLE : */
.toggler:checked ~ .menu > div > ul {
  transition-property: all;
  /* transform: translateX(100px);*/
  left: 0px;
  transition: all 0.4s ease;
  background-color: rgba(89, 89, 89, 0.7);
}
@media only screen and (orientation: portrait) and (max-width: 240px) {
  .toggler:checked ~ .menu > div > ul {
    line-height: 1;
    width: 51vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 241px) {
  .toggler:checked ~ .menu > div > ul {
    width: 50vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 350px) {
  .toggler:checked ~ .menu > div > ul {
    width: 33vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 480px) {
  .toggler:checked ~ .menu > div > ul {
    width: 25vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 720px) {
  .toggler:checked ~ .menu > div > ul {
    width: 17vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 1024px) {
  .toggler:checked ~ .menu > div > ul {
    width: 13vw;
  }
}
@media only screen and (orientation: portrait) and (min-width: 1280px) {
  .toggler:checked ~ .menu > div > ul {
    width: 10vw;
  }
}
@media (orientation: landscape) and (max-width: 1400px) {
  .toggler:checked ~ .menu > div > ul {
    width: 9vw;
  }
}
@media (orientation: landscape) and (max-width: 1450px) {
  .toggler:checked ~ .menu > div > ul {
    width: 10vw;
  }
}
@media (orientation: landscape) and (max-width: 1200px) {
  .toggler:checked ~ .menu > div > ul {
    width: 11vw;
  }
}
@media (orientation: landscape) and (max-width: 1100px) {
  .toggler:checked ~ .menu > div > ul {
    width: 12vw;
  }
}
@media (orientation: landscape) and (max-width: 1000px) {
  .toggler:checked ~ .menu > div > ul {
    width: 13vw;
  }
}
@media (orientation: landscape) and (max-width: 900px) {
  .toggler:checked ~ .menu > div > ul {
    width: 14vw;
  }
}
@media (orientation: landscape) and (max-width: 850px) {
  .toggler:checked ~ .menu > div > ul {
    width: 15vw;
  }
}
@media (orientation: landscape) and (max-width: 800px) {
  .toggler:checked ~ .menu > div > ul {
    width: 16vw;
  }
}

.toggler:checked ~ .menu > div > ul > li > a:hover {
  color: white;
}

/* ------------------- menu droit -----------------*/
/*
    Created on : 4 juin 2020, 16:22:23
    Author     : webmaster
*/
/*
aside
a id=hamburgerlien 
img id=hamburger

div id=menu class=menuArrPlan
ul id=menuAside class=menunext

a id=aaccueil class=aneutre
li id=liaccueil class=lineutre
img id=imgaccueil class=menimg


*/
/*ok*/
html {
  top: 0px;
}

/*ok*/
body {
  top: 0px;
}

* {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/*ok*/
aside {
  position: absolute;
  top: 0px;
  padding-top: 0px;
  margin-top: 0px;
  left: 0px;
  width: 8vw;
  height: 100vh;
  float: left;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  overflow: hidden;
  /*transformation*/
  transition-property: width;
  transition-duration: 0.5s;
  transition-timing-function: ease-in;
  transition-delay: 0.5s;
  z-index: 1;
}
@media screen and (max-width: 2049px) {
  aside {
    width: 5%;
  }
}
@media screen and (max-width: 1920px) {
  aside {
    width: 8vw;
  }
}
@media screen and (max-width: 864px) {
  aside {
    height: 11%;
  }
}
@media screen and (max-width: 1700px) {
  aside {
    width: 7%;
  }
}
@media screen and (max-width: 1440px) {
  aside {
    width: 8%;
  }
}
@media screen and (max-width: 1280px) {
  aside {
    width: 9%;
  }
}
@media screen and (max-width: 1152px) {
  aside {
    width: 10%;
  }
}
@media screen and (max-width: 1024px) {
  aside {
    width: 11%;
  }
}
@media screen and (max-width: 960px) {
  aside {
    width: 13%;
  }
}
@media screen and (max-width: 767px) {
  aside {
    width: 16%;
  }
}
@media screen and (max-width: 639px) {
  aside {
    width: 22%;
  }
}
@media screen and (max-width: 639px) {
  aside {
    width: 22%;
  }
}
@media screen and (max-width: 479px) {
  aside {
    width: 25%;
  }
}
@media screen and (max-width: 361px) {
  aside {
    width: 30%;
  }
}

aside:hover .menunext .menuArrPlan {
  width: 100%;
  transition-duration: 0.5s;
}

aside:hover:after .menunext #menu {
  width: 100%;
  transition-duration: 0.5s;
}

/*ok*/
#hamburgerLien {
  top: 5vh;
  height: 40px;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 2vh;
  z-index: 99999999999999;
}
/*ok*/
#hamburger {
  position: relative;
  top: 5px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  width: 40px;
  display: block;
  z-index: 999999;
}
/*ok*/
#menu {
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(gray));
  background-image: linear-gradient(to bottom, black, gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /*taille*/
  width: 0%;
  height: 100%;
  height: 100vh;
  /*position*/
  position: absolute;
  padding-top: 0vh;
  top: 0px;
  /*apparence*/
  text-decoration: none;
  list-style-type: none;
  transition-duration: 0.3s;
  text-align: center;
}
#menuAside {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  word-wrap: break-word;
  width: 7vw;
}
@media (orientation: landscape) and (max-width: 2000px) {
  #menuAside {
    width: 8vw;
  }
}
@media (orientation: landscape) and (max-width: 1870px) {
  #menuAside {
    width: 9.5vw;
  }
}
@media (orientation: landscape) and (max-width: 1475px) {
  #menuAside {
    width: 11.5vw;
  }
}
@media (max-width: 1200px) {
  #menuAside {
    width: 13.6vw;
  }
}
@media (max-width: 1024px) {
  #menuAside {
    width: 17vw;
  }
}
@media (orientation: landscape) and (max-width: 920px) {
  #menuAside {
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: auto;
    padding-left: auto;
  }
}
@media (max-width: 854px) {
  #menuAside {
    width: 21.8vw;
  }
}
@media (max-width: 640px) {
  #menuAside {
    width: 27vw;
  }
}
@media (orientation: landscape) and (max-width: 500px) {
  #menuAside {
    width: 33vw;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: auto;
    padding-left: auto;
  }
}
@media (max-width: 525px) {
  #menuAside {
    width: 50vw;
  }
}
@media (max-width: 525px) and (orientation: portrait) {
  #menuAside {
    width: 40vw;
  }
}
@media (max-width: 280px) {
  #menuAside {
    width: 100vw;
  }
}

/*ok*/
#aaccueil {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0px;
  margin-top: 5vh;
  top: 0px;
}

/*ok*/
.aneutre {
  margin-top: 0.1vh;
  margin-bottom: 0.1vh;
  width: 100%;
  height: 8%;
}
@media screen and (max-height: 1200px) {
  .aneutre {
    height: 9%;
  }
}
@media screen and (max-height: 1080px) {
  .aneutre {
    height: 10%;
  }
}
@media screen and (max-height: 960px) {
  .aneutre {
    height: 11%;
  }
}
/*ok*/
.tneutre {
  display: block;
  font-size: 1rem;
  align-items: center;
  margin-left: auto;
  margin-top: auto;
  padding-top: 1vh;
  width: 100%;
}
/*ok*/
.menunext ul {
  /*taille*/
  width: 100%;
  height: 50%;
  /*position*/
  position: static;
  margin-top: 15vh;
  /*apparence*/
  list-style-type: none;
}
@media (orientation: landscape) and (max-width: 920px) {
  .menunext ul {
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: auto;
    padding-left: auto;
  }
}
/*ok*/
ul.menunext {
  /*taille*/
  width: 8vw;
  height: 100%;
  /*position*/
  margin-top: 10vh;
  padding-top: 0vh;
  padding-left: 0px;
  /*apparence*/
  list-style-type: none;
  /*background-color: rgba(89, 89, 89, 0.7);*/
  text-align: center;
}
/*ok*/
.menunext ul li {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  /*taille*/
  width: 100%;
  height: 5vh;
  line-height: 10px;
  /*position*/
  position: static;
  top: 0px;
  padding-top: 0px;
  margin-top: 4px;
  right: auto;
  left: auto;
  margin-left: auto;
  margin-right: auto;
  /*apparence*/
  /*texte*/
  text-align: center;
  clear: both;
}
/*ok*/
.menunext a {
  color: #dfd7d6;
  /*font-weight:bolder;*/
  font-family: Verdana, Geneva, sans-serif;
  font-size: xx-large;
  text-decoration: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lineutre a.active {
  opacity: 1;
  font-size: 16px;
}

.menunext a.active {
  opacity: 1;
  font-size: 16px;
}

.menunext a.visited {
  opacity: 1;
  font-size: 13px;
}

/*ok*/
/*ok*/
.lineutre {
  margin-left: auto;
  margin-right: auto;
  padding-top: 1vh;
  padding-bottom: 1vh;
  opacity: 0.8;
  color: white;
  font-size: 10px;
  margin-bottom: 10px;
}
@media (max-height: 870px) {
  .lineutre {
    height: 60px;
  }
}
@media (orientation: landscape) and (max-width: 1367px) {
  .lineutre {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: auto;
    padding-left: auto;
  }
}
@media (orientation: landscape) and (max-width: 920px) {
  .lineutre {
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: auto;
    padding-left: auto;
  }
}
@media screen and (orientation: landscape) and (min-height: 900px) {
  .lineutre {
    padding-top: 50px;
    line-height: 0.1;
  }
}
@media screen and (orientation: landscape) and (min-height: 775px) {
  .lineutre {
    padding-top: 50px;
    line-height: 0.1;
    padding-bottom: 1px;
  }
}
@media screen and (orientation: landscape) and (max-height: 774px) {
  .lineutre {
    margin-bottom: 1px;
  }
}
.active {
  opacity: 1;
  font-size: 13px;
  color: white;
  background-color: #252525;
  text-shadow: #fff 1px 5px 10px;
}

.lineutre:hover {
  opacity: 1;
  color: white;
  font-size: 13px;
  /*font-weight:900;*/
  /*hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;*/
  overflow-wrap: break-word;
  word-wrap: break-word;
}
/*ok*/
.menunext a:active {
  color: white;
  font-size: 16px;
  opacity: 1;
}

#annonce {
  background-image: "";
}

/*ok*/
/*faire aparaitre ombre*/
img.menuimg {
  height: 55px;
  width: 45px;
  padding-bottom: 1vh;
}
@media (max-height: 700px) {
  img.menuimg {
    height: 33px;
    width: 21px;
  }
}
@media (max-height: 700px) {
  img.menuimg {
    display: none;
  }
}

#liaccueil {
  padding-top: 100px;
}
@media screen and (orientation: landscape) and (min-height: 900px) {
  #liaccueil {
    padding-top: 50px;
    line-height: 0.1;
  }
}
@media screen and (orientation: landscape) and (min-height: 700px) {
  #liaccueil {
    padding-top: 50px;
    line-height: 0.1;
  }
}
@media screen and (orientation: landscape) and (min-height: 600px) {
  #liaccueil {
    padding-top: 50px;
    line-height: 0.1;
    margin-bottom: 8px;
  }
}
@media screen and (orientation: landscape) and (min-height: 500px) {
  #liaccueil {
    padding-top: 70px;
    line-height: 0.1;
    margin-bottom: 8px;
  }
}
@media screen and (orientation: landscape) and (min-height: 400px) {
  #liaccueil {
    padding-top: 70px;
    line-height: 0.1;
    margin-bottom: 8px;
  }
}

@media screen and (orientation: landscape) and (max-width: 1443px) {
  #lireferencement #mref {
    line-height: 0.5;
  }
}

@media screen and (orientation: landscape) and (max-width: 1365px) {
  #livirtuel #mvirtuel {
    line-height: 1;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px) {
  #lidrone #mdrone {
    line-height: 1;
  }
}

.ligne {
  display: block;
  margin-bottom: 0.5px;
  line-height: 0.5px;
  line-height: 10px;
}

#liexemple {
  display: block;
}
@media screen and (orientation: portrait) and (width: 480px) {
  #liexemple {
    display: none;
  }
}
@media screen and (orientation: landscape) and (height: 480px) {
  #liexemple {
    display: none;
  }
}

@media screen and (widht: 700px) {
  #menuFolio {
    display: none;
  }
}