/*Reset CSS*/
@font-face {
    font-family : coolvetica rg;
    src: url(coolvetica rg.otf);
}
*{
    margin: 0px;
    padding: 0px;
    font-family: coolvetica rg;

}

nav{
    width: 100%;
    margin: 0 auto;
    background-color: white;
    position: sticky;
    top: 0px;
    font-family: coolvetica rg;

    
}

nav ul{
    list-style-type: none;
    font-family: coolvetica rg;
   
}

nav ul li{
    float: left;
    width: 25%;
    text-align: center;
    position: relative;
    font-family: coolvetica rg;
    
}

nav ul::after{
    content: "";
    display: table;
    clear: both;
    font-family: coolvetica rg;
    
}

nav a{
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 2px solid transparent;
    padding: 10px 0px;
    font-family: coolvetica rg;
    

    
}

nav a:hover{
    color: #931217;
    border-bottom: 2px solid #931217;
    border-top: 2px solid #931217;
    font-family: coolvetica rg;
    
}

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: #CCC;
    position: absolute;
    width: 100%;
    z-index: 1000;
    font-family: coolvetica rg;
}
nav > ul li:hover .sous{
    display: block;
    font-family: coolvetica rg;
}
.sous li{
    float: none;
    width: 100%;
    text-align: left;
    font-family: coolvetica rg;
}
.sous a{
    padding: 10px;
    border-bottom: none;
}
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
}
.deroulant > a::after{
    content:" ▼";
    font-size: 12px;
}

.conteneur{
  margin: 50px 20px;
  height: 1500px;
}