/* ///////////////////////////////////////// navbar log Debut */

.container_nav_log {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    background-color: var(--vert);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3vh;
    z-index: 9999; /* Une valeur élevée pour qu'elle passe au-dessus des autres éléments */
}

.container_nav_log a {
    text-decoration: none;
    color: white;
    font-size: medium;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
}

.container_nav_log a i {
    font-size: x-large;
}

@media all and (max-width: 992px) {
    .container_nav_log {
        display: none;
    }
    .link_nav_log_responsive {
        display: flex;
    }
}

@media all and (min-width: 992px) {
    .link_nav_log_responsive {
        display: none;
    }
}

.link_nav_log_responsive {
    flex-direction: row;
    width: 100%;
    height: 50px;
    background-color: var(--vert);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3vh;
    color: white;
    position: relative;
}

.container_link_responsive {
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2vh;
    color: white;
    top: -700%;
    background-color: var(--vert);
    padding: 2vh 3vh;
    border-radius: 0px 0px 20px 20px;
    -webkit-border-radius: 0px 0px 20px 20px;
    -moz-border-radius: 0px 0px 20px 20px;
    -ms-border-radius: 0px 0px 20px 20px;
    -o-border-radius: 0px 0px 20px 20px;
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    z-index: 9999; /* Une valeur élevée pour qu'elle passe au-dessus des autres éléments */
}

.container_link_responsive a {
    text-decoration: none;
    color: white;
}
/* ///////////////////////////////////////// navbar log Fin */
