body:not(.home) .footer {
    > * a:not(.bouton), p {
        color: var(--blue) !important;
    }

    .socials {
        a {
            background: var(--blue) !important;

            img {
                filter: brightness(0) saturate(100%) invert(91%) sepia(100%) saturate(38%) hue-rotate(272deg) brightness(110%) contrast(110%) !important;
            }
        }
    }

    .level2__footer {
        border-top: 1px solid rgba(0, 0, 0, 0.3) !important;
    }
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 60px;
    margin-top: 50px;

    @media (min-width: 992px) {
        height: 300px;
        margin: 0 60px;
    }

    * {
        color: var(--white) !important;
    }

    * .links {
        display: flex;
        gap: 10px;

        @media (min-width: 1200px) {
            gap: 20px;
        }

        @media (max-width: 768px) {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px !important;
            padding-top: 10px;
        }
    }

    * a {
        transition: var(--transition);

        &:not(:has(>img), .bouton) {
            font-family: var(--footer-font);
            font-size: 14px;
            font-weight: 400;

            @media (min-width: 1200px) {
                font-size: 16px;
            }
        }

        &:not(.bouton) {
            &:hover {
                opacity: 0.5;
            }
        }
    }

    .level1__footer {
        display: flex;
        justify-content: space-between;
        gap: 20px;

        @media (min-width: 1200px) {
            gap: 100px;
        }

        @media (min-width: 1400px) {
            gap: 200px;
        }

        @media (max-width: 991px) {
            align-items: center;
            flex-direction: column;

            .logo_sma {
                max-width: 100px;
            }

            .level1__menu {
                flex-direction: column;
                gap: 20px !important;
            }
        }

        .level1__menu {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: end;
            gap: 20px;

            @media (min-width: 1200px) {
                gap: 80px;
                justify-content: space-between;
            }

            .level1__links {
                gap: 20px;

                @media (min-width: 1200px) {
                    gap: 50px;
                }
            }
        }

        .bouton {
            background: var(--red) !important;
            padding: 14px 43px !important;
            border-radius: 50px !important;
            height: fit-content !important;
            font-weight: 500 !important;

            &:hover {
                background: var(--white) !important;
                color: var(--blue) !important;
            }
        }

        .socials {
            a {
                width: 35px;
                height: 35px;
                background: var(--white);
                border-radius: 50px;
                padding: 8px;
                display: grid;
                place-items: center;
            }
        }
    }

    .level2__footer {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 25px;
        margin-top: 30px;
        align-items: center;

        @media (max-width: 991px) {
            flex-direction: column;
            gap: 15px;
        }

        * {
            margin: 0;
            height: fit-content;
            font-size: 14px !important;
        }

        .level2__links {
            gap: 80px !important;
        }
    }
}