.logo{
    color: #6c6c6cff;
    font-size: 24px;
}
nav{
    background-color: #333333;
    display: flex;
    justify-content:space-around;
    align-items: center;
    color: #fff;
    opacity: 80%;
}
.nav-links {
    display: flex;
    justify-content:space-around;
    width: 50%;
    text-transform: uppercase;
}
.nav-links a{
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-bottom:2px solid transparent;
    transition:0.5s ease;
    transform: translateX(0%);
}
.nav-links a:hover{
    color: #883312;
    letter-spacing: 5px;
}
.burger{
    display: none;
}
.burger div{
    width: 25px;
    height: 3px;
    background: #6c6c6c;
    margin: 5px;
    transition:all 0.5s ease;
    border-radius: 3px;
}
@media only screen and (max-width: 1080px){
    nav{
        justify-content: space-between;
        padding: 0 5vw;
    }
    .nav-links{
        position: absolute;
        right: 0;
        top:1vh;
        min-height:100vh;
        background: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        margin: 0;
        padding: 0;
        transform: translateX(100%);
        transition:All 0.5s ease-in;
    }
    .nav-links a{
        opacity: 0;

    }
    .burger{
        display: block;
    }

}
@media only screen and (max-width: 640px){
    nav{
        justify-content: space-between;
        padding: 0 5vw;
    }
}
.nav-active{
    transform: translateX(0);
}
@media only screen and (max-width: 460px){
    .nav-links{
        width: 100%;
        transition:All 0.5s ease;
    }
    .header-texte{
        opacity: 0.4;
    }
}
.nav-active{
    transform: translateX(0);
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px );
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px );
}