
.landing_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    padding: 60px 64px;
}

.landing_footer_inner {
    width: 100%;
    max-width: 1250px;
}

.landing_footer hr {
    margin: 36px 0;
}

.landing_footer_headers {
    display: flex;
    justify-content: space-between;
    margin-right: 10%;
}

.landing_footer_header-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin-bottom: 86px;
}

.landing_footer_header-list .title {
    font-weight: 600;
    margin-bottom: 4px;
}

.landing_footer_politicts {
    display: flex;
    justify-content: space-between;
    margin-right: 10%;
}

.landing_footer_copyright {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.landing_footer_logo {
    margin-bottom: 48px;
}

.landing_footer a {
    text-decoration: none;
    color: #000000;
}


@media(max-width: 1024px) {
    .landing_footer {
        padding: 40px 16px;
    }

    .landing_footer_logo {
        margin-bottom: 24px;
    }

    .landing_footer_headers {
        flex-direction: column;
    }

    .landing_footer_header-list {
        margin-bottom: 52px;
    }

    .landing_footer_politicts {
        flex-direction: column;
        gap: 20px;
    }

    .landing_footer_copyright {
        flex-direction: column-reverse;
        gap: 16px;
    }
}