footer {
    padding-top: 50px;
    margin-top: 50px;
    position: relative;
    background: linear-gradient(#1A1515, #332929);
}

footer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, white, transparent);
}

.grid-footer-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 80%;
    margin: auto;
    gap: 10px;
    padding-bottom: 50px;
}

.downfoot {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    width: 80%;
}

.midPartBarre {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, white, transparent);
}

.titre_categorie {
    font-weight: 700;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infos-categorie {
    display: flex;
    gap: 10px;
    align-items: center;
}

.imageReseau {
    width: 20px;
}

.soulignerA {
    position: relative;

}

.soulignerA::before {
    transition: 0.4s;
    position: absolute;
    content: "";
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: white;
}

.soulignerA:hover::before {
    position: absolute;
    content: "";
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: white;
}

@media (width <=1150px) {
    .grid-footer-large{
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (width <=630px) {
    .grid-footer-large{
        grid-template-columns: 1fr;
    }
}