.menu-menu-principal-container{
    /*height: 100%;*/
    display: flex;
    flex-grow: 1;
}

.MenuPrincipal {
    position: relative;
    padding: 0 0 var(--wp--preset--spacing--l);
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    height: 100%;
    @media screen and (max-width: 992px) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    /* niveau 1 */
    > li {
        display: block;
        &.littleWhite{
            a{
                color: var(--wp--preset--color--white);
                text-transform: uppercase;
                font-size: var(--wp--preset--font-size--xl);
                letter-spacing: 1px;
                line-height: 1.4em;
            }
        }
        &:nth-child(5) {
            margin-top: auto;
        }
        a {
            display: block;
            color: var(--wp--preset--color--secondary);
            text-decoration: none;
            font-size: var(--wp--preset--font-size--xxxxl);
            letter-spacing: 0.03em;
            line-height: 1.3em;
            @media screen and (max-height: 700px) and (min-width: 992px) {
                font-size: var(--wp--preset--font-size--xxxl);
            }
            &:hover, &:focus {
                color: var(--wp--preset--color--tertiary);
            }
        }


        .sub-menu {
            @media screen and (min-width: 993px) {
                position: absolute;
                display: flex;
                opacity: 0;
                visibility: hidden;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                top: var(--wp--preset--spacing--m);
                left: -56px;
                background: var(--wp--preset--color--black);
                box-shadow: 3px 8px 15px - 4px rgba(0, 0, 0, 0.2);
                padding: var(--wp--preset--spacing--s);
                min-width: 250px;
                z-index: 60;
                transition: visibility 0.35s, opacity 0.35s cubic-bezier(0.12, 0.09, 0.18, 0.93), transform 0.35s cubic-bezier(0.12, 0.09, 0.18, 0.93);
            }
            @media screen and (max-width: 992px) {
                display: none;
                padding-left: 0;
                transition: height 0.35s cubic-bezier(0.370, 0.330, 0.185, 0.900);
                overflow: hidden;
                height: auto;
            }

            &:hover, &:focus {
                @media screen and (min-width: 993px) {
                    opacity: 1;
                    visibility: visible;
                    /*transform: translateY(10px);*/
                }
            }

            /* niveau 2*/
            > li {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                width: 100%;
                @media screen and (max-width: 992px) {
                    display: block;
                }

                &:first-child {
                    @media screen and (max-width: 992px) {
                        padding-top: var(--wp--preset--spacing--s);
                    }
                }

                &:last-child {
                    @media screen and (max-width: 992px) {
                        padding-bottom: var(--wp--preset--spacing--m);
                    }
                }

                a {
                    color: var(--wp--preset--color--white);
                    text-transform: none;
                    width: 100%;
                    font-size: var(--wp--preset--font-size--s);
                    padding-bottom: var(--wp--preset--spacing--s);
                    border-bottom: 1px solid var(--wp--preset--color--gray-quaternary);
                    letter-spacing: 1px;
                    font-weight: 100;

                    &::before {
                        display: none;
                    }

                    @media screen and (max-width: 992px) {
                        padding-bottom: 0;
                        font-size: var(--wp--preset--font-size--m);
                        padding-left: var(--wp--preset--spacing--xs);
                        border-bottom: none;
                    }

                    &:hover, &:focus {
                        color: var(--wp--preset--color--gray-secondary);
                    }
                }

                &:last-child {
                    margin-bottom: 0;

                    a {
                        padding-bottom: 0;
                        border-bottom: none;
                    }
                }
            }
            li::before{
                @media screen and (max-width: 992px) {
                    content: "●";
                    margin-right: var(--wp--preset--spacing--xs);
                    color: var(--wp--preset--color--primary);
                }
            }
        }
    }
}