
/* hier stylen we de navigatie balk */
nav{
    display: flex;
    padding: 1rem 3rem;
    justify-content: space-between;
    align-items: center;
}


.nav-links{
    flex: 1;
    text-align: right;
    
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding:1rem 1.5rem;
    position: relative;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links ul li::after{
content: '';
width: 0%;
height: 0.25rem;
background-color: #60130e;
display: block;
margin: auto;
transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

nav .fa{
    display: none;
}



/* mobile first creation */
/* xs */
/*@media (min-width: 475px) {}*/

/* sm */
/*@media (min-width: 640px) {}*/

/* md */
/*@media (min-width: 768px) {}*/

/* lg */
/*@media (min-width: 1024px) {}*/

/* xl */
/*@media (min-width: 1280px) {}*/

/* 2xl */
/*@media (min-width: 1536px) {}*/


@media only screen and (max-width: 767px){
    .nav-links{
        position: fixed;
        background:#60130e;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin:10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
    .logo{
        padding: 1rem;
    }
}
