*{
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    list-style-type:none;
    /* evite l'effet gras quand la police en en blanc */
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    osx-font-smoothing: grayscale;
}


body{
    width:100%;
    background-color: #1e1e1e;
}


.loader{
    width:100%;
    background-color:white;
    height:100vh;
}

#filtre-noir{
    width:100%;
    height:100vh;
    background-color: rgba(0,0,0,0.7);
    position:fixed;
    top:0;
    right:0;
    display:none;
    z-index:7888;
}



/*NAV*/
nav{
    width:40%;
    height:100vh;
    background-color: #68ce78;
    position:fixed;
    top:0;
    right:0;
    margin-right:-40%;
    z-index:8888;
}

#liens-wrap{
    color: black;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    width:100%;
    text-align: center;
}

#liens-centrage{
    text-align: left;
    display:inline-block;
}

#liens-wrap a{
    color:#1e1e1e;
    font-size:55px;
    font-weight:700;
    font-family: 'Montserrat', sans-serif;
    display: block;
    transition:color 0.3s ease-out;
    -webkit-transition:color 0.2s ease-out;
    -moz-transition:color 0.2s ease-out;
    -ms-transition:color 0.2s ease-out;
}

#liens-wrap a:hover{
    color:#acffbc;
}



/*HEADER*/
header{
    width:100%;
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    position: relative;
}

#logo{
    width:90px;
    height: 50px;
    margin-top: 5px;
    margin-left: 20px;
    position: fixed;
    top:0;
    left:0;
    z-index:9999;
}


.hamburger-menu{
    width:50px;
    margin-top:12px;
    margin-right:20px;
    z-index:9888;
    position: fixed;
    top:0;
    right:0;
}


.hamburger-menu:hover{
  cursor:pointer
}

.hamburger-menu div{
  background-color:white;
  width:50px;
  height:4px;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
}



.two{
  margin-bottom:10px;
  margin-top:10px;
}

.open-one{
  transform:translateY(14px) rotate(45deg);
  -ms-transform:translateY(14px) rotate(45deg);
  -webkit-transform:translateY(14px) rotate(45deg);
}

.open-two{
  opacity:0;
}

.open-three{
  transform:translateY(-14px) rotate(-45deg);
  -ms-transform:translateY(-14px) rotate(-45deg);
  -webkit-transform:translateY(-14px) rotate(-45deg);
}






/*BODY*/
#sections-wrap{
    width:100%;
    height: 100vh;
    justify-content: space-between;
    display: flex;
}

#section-text{
    width:30%;
    height:100%;
    position: fixed;
    overflow-y: scroll;
}

#section-text:hover{
    cursor:pointer;
}



#text-container{
    padding:5%;
    margin-top:90px;
    margin-bottom:10px;
}

#text-container h1{
    color:#68ce78;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    opacity:0;
    line-height:45px;
}

#text-container p{
    color:white;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 19px;
    opacity:0;
}

strong{
    color:#68ce78;
    font-size:20px;
}

.intro{
    color:#afafaf;
}

.puces{
    color:#68ce78;
}

/*BACKGROUNDS*/

#section-image{
    width:70%;
    height:100%;
    display: none;
    z-index:-900;
    position: fixed;
    top:0;
    right:0;
}



.photos-accueil{
    position: absolute;
    width:100%;
    height:100%;
}


#photo1{
    background:url(images/categories-photos/parquet/parquet1.jpg)center center;
    background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    z-index:400;
}
#photo2{
    background:url(images/categories-photos/parquet/parquet2.jpg)center center;
    background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    z-index:300;
}
#photo3{
    background:url(images/categories-photos/parquet/parquet3.jpg)center center;
    background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    z-index:200;
}



/*MEDIA QUERIES*/

/*MEDIA QUERIES*/
@media screen and (max-width:1500px){
    #text-container h1{
        font-size: 30px;
        line-height:29px;
    }
}

@media screen and (max-width:1160px){
    #liens-wrap a{
        font-size:35px;
    }
}

@media screen and (max-width:930px){
    #sections-wrap{
        width:100%;
        height: auto;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
    }

    #section-text{
        margin-top:0px;
        width:100%;
        height:auto;
        position:inherit;
    }

    #section-text:hover{
        cursor:pointer;
    }


    #text-container{
        padding:5%;
        margin-top:90px;
        margin-bottom:10px;
    }

    #text-container h1{
        color:#68ce78;
        font-size: 30px;
        font-family: 'Montserrat', sans-serif;
        opacity:0;
        line-height:45px;
    }

    #text-container p{
        color:white;
        font-size: 17px;
        font-family: 'Montserrat', sans-serif;
        margin-top: 19px;
        opacity:0;
    }
    #section-image{
        width:100%;
        margin-top:60px;
        display: none;
        z-index:-900;
        position: inherit;
        top:0;
        right:0;
    }
    
}


@media screen and (max-width:750px){
    nav{
        width:100%;
        margin-right:-100%;
    }
}
