header{
    height: 80px;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.header-container{
    height: 100%;
}
.brand{
    margin-right: 60px;
}
.brand img{
    height: 40px;
}
.header-menu{
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
}
.nav{
    flex: 1;
}
.nav li{
    display: inline-block;
    margin-right: 30px;
    font-weight: 500;
}
.nav li a{
    transition: ease .2s all;
}
.nav li a:hover{
    color: #c21776;
}
.me-connecter-btn{
    font-weight: 600;
    padding:10px 25px;
}
.me-connecter-btn:hover{
    text-decoration: underline;
}
.creer-compte-btn{
    background-color: #613089;
    color: #ffffff;
    padding:10px 25px;
    border-radius: 30px;
}
.creer-compte-btn:hover{
    background-color: #c21776;
}
.menu-button{
    background-color: #613089;
    color: #ffffff;
    padding:10px 25px;
    border-radius: 30px;
    display: none;
}
.menu-button i{
    margin-left: 10px;
}
.menu-button:hover{
    background-color: #c21776;
}


@media screen and (max-width:1300px){
    /* [ 1 ] - DEFAULTS */
    .container{
        padding: 0 15px;
    }

    /* [ 2 ] - HEADER */
    .brand{
        margin-right: 30px;
    }
    .nav li{
        margin-right: 15px;
    }
}

@media screen and (max-width:1200px){
    /* [ 2 ] - HEADER */
    .brand{
        flex: 1;
    }
    .header-menu{
        position: fixed;
        height: calc(100% - 80px);
        width: 100%;
        top: 80px;
        left: 0;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 30px 15px;
        display: none;
    }
    .nav {
        flex: inherit;
    }
    .nav li{
        display: block;
        font-size: 30px;
        margin: 10px 0;
    }
    .me-connecter-btn{
        padding: 10px 0;
        font-size: 30px;
    }
    .creer-compte-btn{
        font-size: 30px;
    }
    .menu-button{
        display: block;
    }
}

@media screen and (max-width:1100px){
    
}

@media screen and (max-width:1000px){
    
}

@media screen and (max-width:900px){
    
}

@media screen and (max-width:800px){
    
}

@media screen and (max-width:700px){
    body{
        margin-top: 60px;
    }
    /* [ 2 ] - HEADER */
    header{
        height: 60px;
    }
    .brand img{
        height: 30px;
    }
    .header-menu{
        height: calc(100% - 60px);
        top: 60px;
    }
}

@media screen and (max-width:600px){
    
}

@media screen and (max-width:500px){
    .nav li,.me-connecter-btn,.creer-compte-btn{
        font-size: 20px;
    }
}

@media screen and (max-width:400px){

}

@media screen and (max-width:300px){
    
}