.menu__footer {
    margin: 0;
    padding: 0;

}

.footer {
    position: relative;

    p,
    li,
    a {
        color: var(--white);
        transition: var(--transition);
    }

    a:hover {
        opacity: 1 !important;
    }

    .footer__main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;

        .footer__agency {
            text-align: left;
            gap: 30px;
            display: flex;
            flex-direction: column;

            @media (min-width: 992px) {
                flex: 0.2;
            }

            .footer_presentation {
                font-size: 14px;
                line-height: 24px;
                font-weight: var(--light);
                opacity: 0.5;
            }
        }

        .footer__menu {
            @media (min-width: 992px) {
                flex: 0.7;
            }

            >ul {
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;

                @media (max-width: 767px) {
                    justify-content: start;
                    gap: 30px;
                }

                li {
                    list-style: none;
                    font-size: 14px;
                    line-height: 24px;

                    &:not(:last-child) {
                        padding-bottom: 10px;
                    }
                }

                >li {
                    font-size: 14px;
                    line-height: 24px;
                    text-align: start;

                    >a {
                        text-transform: uppercase;
                        font-size: 14px;
                        line-height: 24px;
                        font-weight: var(--bold);
                    }

                    &:last-child {
                        .sub-menu {
                            li {
                                &:not(:last-child) {
                                    padding-bottom: 20px;
                                }

                                a {
                                    text-transform: uppercase;
                                    font-size: 14px;
                                    line-height: 24px;
                                    font-weight: var(--bold);
                                    opacity: 1;
                                }
                            }
                        }
                    }

                    .sub-menu {
                        padding: 0px;
                        text-align: start;
                        margin-top: 20px;

                        li {
                            text-align: start;

                            a {
                                font-size: 14px;
                                line-height: 24px;
                                font-weight: var(--light);
                                opacity: 0.5;
                            }
                        }
                    }
                }
            }
        }
    }

    .footer__last {
        margin-top: 40px;

        .footer__last__wrapper {
            display: flex;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            align-items: center;
            padding: 10px;
            flex-direction: column;
            gap: 15px;

            @media (min-width: 768px) {
                height: 80px;
                padding: 0px 50px;
                flex-direction: row;
            }

            >ul {
                margin: 0;
                padding: 0;
                display: flex;
                gap: 15px;
                height: fit-content;

                li {
                    margin: 0;
                    height: fit-content;

                    &:before {
                        display: none;
                    }
                }

                p {
                    margin: 0;
                }

                @media (max-width: 767px) {
                
                    &:not(.socials) {
                        flex-wrap: wrap;
                        justify-content: center;
                        align-content: center;

                        .separator {
                            display: none;
                        }
                    }
                }

                &.socials {
                    li {
                        a {
                            background: var(--blue);
                            border-radius: 50%;
                            font-size: 0px;
                            color: var(--dark);
                            transition: var(--transition);

                            &:hover {
                                background: var(--white);
                            }
                        }
                    }
                }
            }
        }
    }
}

.footer {
    background: var(--dark);
    color: #fff;
    margin-top: auto;
    position: relative;
    text-align: center;
    z-index: 5;

    @media (min-width: 992px) {
        padding-top: 120px;
    }
}