.nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 3;
    width: 100vw;
}

.nav-enabled {
    background-color: var(--background-navbar-rollDown);
    height: 100vh;
    transition: 1s;
}

.nav-Roll-Down {
    position: fixed;
    top: 0;
    background-color: var(--background-navbar-rollDown);
    transition: 1s;
}

.nav-visible {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}

#logo-icon {
    width: 124px;
}

.social {
    display: none;
}

#social-list {
    display: none;
}

#button-menu {
    height: 48px;
}

#button-menu > img {
    width: 100%;
    height: 100%;
}

.menu-nav-list {
    display: none;
    flex-direction: column;
    width: 100vw;
    align-items: center;
    gap: 16px;
    padding: 8px;
    list-style-type: none;
}

.menu-nav-list > li > a {
    color: var(--color-font-nav);
}

.bottom-bar{
    width: 0%;
    height: 2px;
    background-color: aliceblue;
    transition: 1s;
}

.bottom-bar-activated{
    width: 100%;
    height: 2px;
    background-color: aliceblue;
    transition: 1s;
}

.menu-nav-list-activated {
    display: flex;

}

#menu-nav-list > li {
    padding: 8px;
}

@media only screen and (min-width: 1336px){

    #button-menu { 
        display: none;
    }

    #logo-icon {
        position: absolute;
        left: 46%;
        top: 24px;
    }

    .nav {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 32px 128px 32px 128px;
    }

    .menu-nav-list {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap:32px;
    }

    .menu-nav-list > li > a {
        font-weight: 600;
    }

    .social {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    #social-list {
        display: flex;
        gap: 16px;
    }

    .social-list-icon:hover {
        filter: brightness(50%);
    }
    
}