/* General Styles */

body{
    font-family: lucida sans;
}

.sections{
    padding: 20px 0;
}

.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
}

.section-header .section-title{
    font-size: 40px;
}

.section-header .line{
    width: 200px;
    background: #ddd;
    height: 3px;
    margin: auto;
}

.section-header .line span{
    display: block;
    width: 100px;
    height: 4px;
    background-color: #7cb62f;
    margin: auto;
    position: relative;
    bottom: 0.5px;
}

.section-header p{
    width: 500px;
    color: #888;
    margin: 10px auto;
    line-height: 1.5;
}

/* Header*/
header{
    height: auto;
    padding: 10px 0;
    /* border-bottom: 1px solid #000; */
    position: fixed;
    width: 100%;
    z-index: 999;
}

header i.icon{
    position: absolute;
    right: 30px;
    top: 34px;
    z-index: 10;
    display: none;
}

header .logo h2{
    font-size: 35px;
    color: #fff;
    
}

header nav .nav-list{
    list-style: none;
    
    /*une autre facon d'afficher le menu sur une meme ligne*/
    display: flex;
    
    /* creer l'espace entre chaque menu*/
    justify-content: space-around;
    margin-bottom: 0;
}

/** methode pour afficher le menu sur une meme ligne
header nav .nav-list .list{
    display: inline-block;
}
**/

header nav .nav-list .list a{
    display: block;
    padding: 15px 0;
    margin: 9px 0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

header nav .nav-list .list a:hover{
    color: #7cb62f
}

.sticky{
    background: #000;
    color: #fff;
}

@media (max-width:575px){
    header nav .nav-list{
        display: none;
        text-align: center;
        padding: 0;
    }
    
    header .logo{
        text-align: center;
    }
    
    header i.icon{
        display: block;
    }
    
}

/* Home Section */
.home{
    height: 610px;
    background-image: url('../images/home/piacquadio.jpg ');
    background-size: cover;
    background-position: center;
    position: relative;
    
}

.home .home-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}



.home .home-title{
    color: #fff;
    font-size: 40px;
    margin-bottom: 30px;
}

.home .home-desc{
    color: #fff;
    font-size: 19px;
}

.home .button{
    background: #7cb62f;
    color: #fff;
    width: 150px;
    text-align: center;
    padding: 10px 0;
}

@media(max-width:575px){
    .home .home-title{
        font-size: 22px;
    }
    
    .home .button{
        margin-bottom: 10px;
    }
    
}

/* About Us*/



/* Ca c'est Juste un Test Pour developpement*/

.test{
    margin-bottom: 400px;
}