header {
    background-color: #000;
    color: white;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px;
}

.footer-content p {
    margin: 0 0 1% 0;
}

.HeaderTop {
    padding: 1%;
    margin: auto;
    max-width: 1600px;
    width: 98%;
    display: flex;
    justify-content: space-between;
}

hr {
    margin: 0 1%;
    color: rgb(33, 33, 33);
}

.HeaderTop img {
    height: 50px;
}

.NavInfoNav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.NavInfoNav a {
    text-decoration: none;
    width: 30px;
    height: 30px;
    transition: all 0.3s;
}

.NavInfoNav a:hover {
    transform: scale(110%);
}

.NavInfoNav a img {
    width: 100%;
    height: 100%;
}

.text-mobile {
    display: none;
}

.HeaderPageNav {
    margin: auto;
    max-width: 1600px;
    padding: 1%;
    display: flex;
    gap: 30px;
}

.HeaderPageNav a {
    text-decoration: none;
}

.HeaderPageNav a,
.footerA {
    color: aliceblue;
    font-weight: bolder;
    position: relative;
    transition: all 1s;
}

.HeaderPageNav a:hover::before {
    content: "";
    /* Obligatoire pour afficher le pseudo-élément */
    position: absolute;
    bottom: -5px;
    /* Ajustez la distance sous le texte */
    left: -10%;
    width: 120%;
    height: 2px;
    background-color: #b30a18;
}

.active::before {
    content: "";
    /* Obligatoire pour afficher le pseudo-élément */
    position: absolute;
    bottom: -5px;
    /* Ajustez la distance sous le texte */
    left: -10%;
    width: 120%;
    height: 2px;
    background-color: #e40b1e;
}

.FirstNav {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .HeaderTop {
        padding: 3%;
        width: 94%;
    }

    .HeaderTop img {
        height: 35px;
    }

    .NavInfoNav a {
        width: 25px;
        height: 25px;
    }

    .text-desktop {
        display: none;
    }

    .text-mobile {
        display: inline;
    }

    .FirstNav {
        margin-right: 0px;
    }

    .HeaderPageNav {
        justify-content: center;
        padding: 3% 1%;
    }
}