main.outil .band-first {
    display: block !important;
}

main.outil .band-first .fil-arianne {
    position: static;
}

.att-nav-1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    list-style: none;
    margin: 2rem 0;
}

.att-nav-1 li {
    text-align: center;
    cursor: pointer;
    width: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* transition: all 0.3s ease-in-out; */
}

.att-nav-1 li a {
    display: block;
    text-decoration: none;
    color: #777;
}

.att-nav-1 li .text {
    margin-top: 0.5rem;
    color: rgb(187.7432432432, 227.7567567568, 220.0945945946);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    /* transition: all 0.3s ease-in-out; */
}


/* Cercle pour icône */

.att-nav-1 li a::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background-color: rgb(187, 228, 220);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    /* transition: all 0.3s ease-in-out; */
}

.att-nav-1 li.identite a::before {
    background-image: url(img/nav/identite.svg);
}

.att-nav-1 li.famille a::before {
    background-image: url(img/nav/famille.svg);
}

.att-nav-1 li.logement a::before {
    background-image: url(img/nav/logement.svg);
}

.att-nav-1 li.ressources a::before {
    background-image: url(img/nav/compte.svg);
}

.att-nav-1 li.patrimoine a::before {
    background-image: url(img/nav/patrimoine.svg);
}

.att-nav-1 li.charges a::before {
    background-image: url(img/nav/charge.svg);
}

.att-nav-1 li.fiscale a::before {
    background-image: url(img/nav/compte.svg);
}

.att-nav-1 li.financiere a::before {
    background-image: url(img/nav/charge.svg);
}

.att-nav-1 li.validation a::before {
    background-image: url(img/nav/validation.svg);
}


/* Hover + Active */

.att-nav-1 li:hover a::before,
.att-nav-1 li.active a::before {
    background-color: rgb(122, 201, 186);
}

.att-nav-1 li:hover .text,
.att-nav-1 li.active .text {
    color: rgb(122, 201, 186);
}

.att-nav-1 li:hover,
.att-nav-1 li.active {
    border-bottom: 2px solid rgb(122, 201, 186);
}