.footer {
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 32px;
    border-top: solid 1px var(--stroke-secondary, #E0E0EB);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__subtitle {
    max-width: 26ch;
    margin-top: 20px;
    color: var(--text-icon-secondary, #8F8FA3);
    font-family: "JetBrains Mono";
    font-size: var(--Font-Size-action, 17px);
    font-style: normal;
    font-weight: var(--Font-Font-Weight-regular, 450);
    line-height: var(--Font-Line-height-action, 20px);
}

.footer__icon {
    margin-top: 42px;
    color: var(--Brand-Dark-blue, #1E1753);
    font-family: "Inter Variable";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 1000px;
    border: 1px solid var(--Brand-Dark-blue, #1E1753);
}

.footer__links {
    display: flex;
    gap: 40px;
}

.footer__links__column {
    font-family: "Inter Variable";
    font-size: var(--Font-Size-body, 15px);
    font-style: normal;
}

.footer__links__column__title {
    color: var(--text-icon-secondary, #8F8FA3);
    font-weight: 550;
    line-height: var(--Font-Line-height-body, 20px);
}

.footer__links__column__list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer__link {
    color: var(--Brand-Dark-blue, #1E1753);
    font-weight: var(--Font-Font-Weight-regular, 450);
    line-height: var(--Font-Line-height-body, 20px);
}

.footer__ofert {
    color: var(--text-icon-secondary, #8F8FA3);
    font-family: var(--Font-family, "ALS Hauss VF");
    font-size: var(--Font-Size-description, 13px);
    font-weight: var(--Font-Font-Weight-regular, 450);
    line-height: var(--Font-Line-height-description, 17px);
    margin-top: 30px;

}

@media (max-width:1024px) {
    .footer-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__link {
        flex: 0 1 auto;
    }

    .footer__links {
        margin-top: 48px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer__links__column {
        flex: 0 1 auto;
    }
}

@media (max-width:768px) {
    .footer__links {
        gap: 32px;
    }

    .footer__icon{
        margin-top: 24px;
    }

    .footer__links__column__list{
        margin-top: 20px;
    }
}