/* CSS Document */
nav{
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    position: sticky;
    top: 0px;
    font-size: auto;
}

.mofogasy {
  height: auto;
  background-color: #FFFFCC;
  width: 100%;
  position: sticky;
  z-index: 1;
  top: 0;
  padding-top: 0px;
  }

#mySidenav { background-color: #F6F6F6; }


.sidenav {
  font-size: 10px;
  height: auto;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: -2000px;
  padding-top: 60px;
  transition: left 0.5s ease;
}

.sidenav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Sidenav menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #0033FF;
}

/* Active class */
.sidenav.active {
  left: 0;
  font-size: large;
}

/* Close btn */
.sidenav .close {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: large;
}

* {box-sizing: border-box;}

.mySlides {display: none;}
img {vertical-align: middle;}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active {
  background-color: #717171;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


/* MENU PRINCIPAL*/
nav{
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    position: sticky;
    top: 60px;
    font-size: auto;
}
nav ul{
    display: none;
    list-style-type: none;
    }

@media screen and (min-width: 992px){
nav input[type=checkbox]:checked + ul, nav ul{
    display: flex;
    flex-flow: row wrap;
    background-color: white;
}
nav ul li{
    position: relative;
    flex: 1 1 auto;
    text-align: center;

}
nav > div > ul > li > a{
    color: black;
}
nav a{
    border-bottom: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 0px;
}
nav a:hover{
    color: orange;
    border-bottom: 2px solid gold;
}
.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: white;
    position: absolute;
    width: 100%;
}
.sous li{
    flex: 1 1 auto;
    text-align: left;
}
nav > div > ul li:hover .sous{
    display: flex;
    flex-flow: column wrap;
}
.sous a{
    border-bottom: none;
    background-color: white;
}
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
}
}
/* MENU PRINCIPAL */

.corp-de-la-page{
  height: auto;
}