.footer-menu {
    column-count: 2;
    column-gap: 32px;

    @media (max-width: 1200px) {
        width: fit-content;
    }

    @media (max-width: 576px) {
        column-count: 1;
    }

    .item {
        margin-bottom: 16px;
        white-space: nowrap;

        @media (max-width: 992px) {
            white-space: normal;
        }

        @media (max-width: 576px) {
            margin-bottom: 10px;
        }

        a {
            font-size: 18px;
            font-weight: 700;
            line-height: 26px;

            &.active {
                color: var(--color-light-blue);
            }
        }
    }
}