/* FOOTER */

footer {
    width: 100%;
    /* height: 100%; */

    background-color: var(--clr-dark);
    color: var(--clr-light);

    padding-block: 6rem;
    padding-inline: 1rem;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;

    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem; */

    align-items: center;
    justify-content: space-evenly;

    padding-bottom: 3rem;
    border-bottom: 1px solid var(--clr-light);
}


.about-block-footer {
    display: flex;
    flex-direction: column;
    gap: 4rem;

    justify-content: center;
    align-items: center;
}

.logo-footer {
    fill: var(--clr-light);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-social svg {
    fill: var(--clr-light);
    max-width: 24px;
}

.footer-localisation {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    align-items: center;
}

.footer-localisation a {
    color: var(--clr-light);
    text-decoration: none;
    font-weight: bold;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-nav a {
    color: var(--clr-light);
    text-decoration: none;
}

.developer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.copyrights {
    padding-block: 6rem;
    padding-inline: 1rem;
    text-align: center;
}

@media(max-width: 52rem){
    footer{
        padding-top: 4rem;
    }
}