.footer {
    background-color: var(--mrcoin-dark-blue, #0A2943);
    color: var(--color-white);
    padding: 64px 0px;
    padding-bottom: 48px !important;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.footer .footer-top {
    display: flex;
    gap: 64px;
    max-width: 1280px;
    width: 80%;
}

.footer .footer-top .info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--mrcoin-light-blue);
    width: 320px;
}

.footer .footer-top .info img {
    max-width: 151px;
    width: 100%;
}

.footer .footer-top .info .body-xxs {
    color: var(--mrcoin-light-blue);
}

.footer .footer-top .all-links {
    display: flex;
    gap: 24px;
    justify-content: start;
    width: 100%;
}

.footer .footer-top .all-links .links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-right: 64px;
}

.footer .footer-top .all-links .links .overviews {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .footer-top .all-links .links .overviews .content {
    color: var(--mrcoin-light-blue);
}

.footer .footer-top .all-links .links .title {
    color: var(--color-white);
    font-weight: 500;
}


.footer .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--mrcoin-light-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    width: 80%;
}

.footer .footer-bottom .left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer .footer-bottom .right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer .footer-bottom .body-xs {
    color: var(--mrcoin-light-blue);
}

.hidden {
    display: none !important;
}

.button.footer-link {
    padding: 0;
    background: none;
    color: var(--color-grey-500);
}

.button.footer-link:hover {
    color: var(--color-grey-100);
}


@media (max-width: 1230px) {
    .footer {
        padding: 40px 16px;
    }

    .footer .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer .footer-top .info {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer .footer-top .info img {
        max-width: 119px;
        width: 100%;
    }

    .footer .footer-top .all-links {
        display: flex;
        flex-direction: column;
        justify-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer .footer-top .all-links .links {
        padding-right: 0px;
    }

    .footer .footer-top .all-links .links:not(.mobile-links) {
        flex-direction: row;
        align-items: center;
        margin: 0 auto;
    }

    .footer .footer-top .all-links .links .overviews {
        align-items: center;
    }

    .footer .mobile-links {
        grid-column: span 2;
    }

    .footer .no-mobile-links {
        display: none !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .hidden {
        display: flex !important;
    }
}

@media (max-width: 1230px) {
    .footer {
        margin: 0;
    }
}