footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    /* align-items: center; */
    gap: 40px;
    padding: 60px 20px;
    margin-top: 160px;
    width: 100%;

    background-color: var(--systemoun-footer-color);
    color: white;


    font-family: var(--wp--preset--font-family--lexend);

    div#barre {
        width: min(40vw, 200px);
        height: 10px;
        background: rgba(255, 255, 255, 0.60);
        margin-bottom: 10px;
    }

    div#footer-website-data {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* justify-content: center; */
        gap: 20px;



        h3#footer-nom-du-site {
            font-size: 24px;
            font-family: var(--wp--preset--font-family--lexend);
            font-weight: 800;
            font-size: 24px;
            margin: 0;
        }

        p#footer-description-du-site {
            font-size: 18px;
            font-family: var(--wp--preset--font-family--lexend);
            font-weight: 400;;
            padding: 0;
        }

        p {
            padding-left: 4px;
        }

        a#footer-telephone {
            margin-top: 4px;
        }
        



    }


    a, li a {
        display: inline-block;
        color: white;
        text-decoration: none;
        font-size: 18px;
        margin-top: 10px;
        border-radius: 4px;
        padding: 2px 4px;
        margin: 0;
        font-weight: 400;

        transition: all 0.2s ease-in-out;

    }
    a:hover, li a:hover {
        color: white;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.2);
        filter: brightness(1);
    }

    a#footer-big-button {
        background-color: white;
        color: var(--systemoun-footer-color);
        font-weight: bold;
        padding: 8px 16px;
        border-radius: 6px;
        /* margin-top: 10px; */
        font-size: 18px;

        transition: all 0.2s ease-in-out;
    }
    a#footer-big-button:hover {
        background-color: rgba(255, 255, 255, 0.8);
        color: var(--systemoun-footer-color);
    }


    div#footer-nav-links>ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;

        list-style: none;
        margin: 0;
        padding: 0;


    }
    p {
        margin-top: 0;
        font-size: 18px
    };
}


@media (max-width: 800px) {
    footer {
        flex-direction: column;
        align-items: center;
        ;
        gap: 60px;
        

        >div {
            min-width: 80vw;
        }
    }

    div#footer-website-data {
        align-items: center;
        /* text-align: center; */
    }

    div#footer-nav-links>ul {
        align-items: center;
        /* text-align: center; */
    }
}