/* -------------------------------------------------------------------------- */
/* --------------------------------- Header --------------------------------- */
/* -------------------------------------------------------------------------- */
#header{
    z-index: 999;
    
    width: 100%;
    height: 150px;
    
    position: relative;
}

#header a{
    height: calc(100% - 15px);
    width: 100%;
    
    text-decoration: none;
    color: rgb(255, 255, 255);
}
/* ------------------------------ Header : Logo ----------------------------- */
#header .logo{
    height: 100%;
    width: 304px;
    
    float:left;
    
    text-align: right;
    line-height: 1;
}
#header .logo .icone{
    position: absolute;
    top: 0px;
    left: 20px;
    
    font-size: 130px;
}
#header .logo .texte{
    padding-right: 20px; 
    padding-top: 10px; 
    
    font-family: 'ComicSansMT', 'Helvetica Rounded', Arial, sans-serif;
    font-size: 50px;
}
#header .logo .texte span{
    font-family: inherit;
    font-size: 62px;
    color: rgba(0, 0, 0, 0.23);
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.28);
}
/* ----------------------------- Header : Bouton ---------------------------- */
#header .bouton{
    width: 180px;
    height: 100%;
    
    float: left;
}
#header .bouton a{
    display: block;
    padding-top: 15px;
            
    font-family: 'ComicSansMT', 'Helvetica Rounded', Arial, sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}

#header .bouton a i{
    font-size: 90px;
}
/* ----------------------------- Header : Liste ----------------------------- */
#header .bouton ul{
    list-style-type: none; 
    background-color: inherit;
    margin: 0px;
    padding: 0px;
}
#header .bouton ul li{
    transition: all 0.05s linear;
    height: 0px;
    line-height: 35px;
    
    overflow: hidden;
}
#header .bouton ul li a{
    height: 100%;
    vertical-align: middle;
    padding-top: 0px;
    font-size: 20px;
    color: inherit;
    text-shadow: none;
}
#header .bouton:hover ul li, 
#header .bouton ul:hover li,
#header .bouton ul li:hover{
    transition: all 0.2s linear;
    height: 40px;
}

#header .bouton:hover ul li a, 
#header .bouton ul:hover li a
#header .bouton ul li:hover a{
    transition: all 0.2s linear;
    color: #FFFFFF;
    text-shadow: inherit;
}

#header .bouton a:hover{
    transition: all 0.05s linear;
    background-color: rgba(0, 0, 0, 0.1);
}