/* NAVBAR */
 .navbar{
    width: 100%;
    z-index: 1;
}

.container__menu{
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin: 0 6.25em;
}

.logo{
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img{
    width: 240px;
}

.menu{
    display: flex;
    align-items: center; 
}

.menu ul{
    display: flex;
}

.menu ul li{
    list-style: none;
    margin-left: 36px;
}

.menu ul li a{
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

#selected{
    background-color: var(--primary-color);
    color: white;
    padding: 10px 40px;
    border-radius: 50px;
}

.menu #btn_menu{
    display: none;
}


/* Breakpoint */


@media screen and (max-width: 768px) {
    .container__menu{
        margin: 0 1em;
    }
    
    .menu nav{
        position: fixed;
        top: 0;
        right: -500px;
        background-color: #fff;
        width: 250px;
        height: 100vh;
        padding: 40px;
        z-index: 1;
        transition: all 300ms;
    }

    .menu ul{
        flex-direction: column;
        margin-top: 10px;
    }

    .menu ul li{
        margin-top: 30px;
        margin-left: 0;
    }

    .menu ul li a{
        color: #bebebe;
    }

    #selected{
        background: none;
        padding: 0;
        border-radius: none;
        color: var(--primary-color);
    }

    #back_menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0, .5);
        display: none;
    }

    .menu #btn_menu{
        width: 50px;
        height: 50px;
        background: rgba(255,255,255, .3);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        font-size: 24px;
        cursor: pointer;
        transform: all 300ms;
    }

    .menu #btn_menu:hover{
        background: rgba(255,255,255, .2);
    }
}