.navbar-toggler {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: unset;
}

.line {
    fill: none;
    stroke: var(--bs-navbar-active-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}


ul.navbar-nav {
    padding: 25px 0 25px 36px;
}

nav li:not(:last-child)::after {
    content: '';
    position: absolute ;
    left: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E8EAED;
}

nav li::before {
    content: '';
    position: absolute ;
    left: 17px;
    margin-top: 10px;
    width: 2px;
    height: 28px;
    background: #E8EAED;
}

#accroche {
    width: 100%;
}

.dropdown-item {
    font-weight: 400;
    color: #344767;
}

.navbar-brand {
    font-size: 2em;
    font-weight: bold;
}

.navbar .nav-link {
    padding: 7px;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .navbar-collapse {
        position: relative;
    }

    #accroche {
        width: 60%;
    }
}

@media (min-width: 1400px) {
    #navbar-header {
        display: block;
    }

    ul.navbar-nav {
        padding: 0;
    }

    .navbar .nav-link {
        padding: 1rem;
    }

    nav li::before, nav li:not(:last-child)::after {
        content: unset;
    }

    .hidden-xs {
        display: block;
    }

    .visible-xs {
        display: none;
    }
}
