.footer {
    padding-top: 64px;
    border-top: 1px solid #E7E7E7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12%;
}

.footer_left {
    width: 150px;
    flex-shrink: 0;
}

.footer-logo {
    display: block;
    margin-bottom: 56px;
}
.footer-logo img {
    display: block;
    max-width: 126px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 16px;
}
.footer-social_title {
    color: var(--main-d-03-f-7-f);
}
.footer-social_icons {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-social_icon svg {
    display: block;
    height: 24px;
}

.footer-payment {
    display: flex;
    gap: 10px;
}
.footer-payment svg {

}

.footer-menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* justify-content: space-between; */
    gap: 0 120px;
    gap: 10%;
}
.footer-menu_col {
    width: 244px;
}
.footer-menu_title {
    margin-bottom: 16px;
    color: var(--main-d-03-f-7-f);
}

.footer-menu_content {
    display: flex;
    flex-direction: column;
    color: var(--secondary-343434);
    font-size: 14px;
    line-height: 18px;
    gap: 10px;
}
.footer-menu_content > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-menu_link {

}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding: 16px 0;
    border-top: 1px solid #E7E7E7;
    color: var(--secondary-919191);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    line-height: 150%;
}
.footer-copyright_right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-copyright_right svg {
    display: block;
    max-width: 120px;
}

.footer-mobile_content {
    display: none;
}

@media (max-width: 1150px) {
    .footer-content {
        gap: 20px;
    }
    .footer-menu {
        gap: 20px;
    }
    .footer-menu_col {
        width: 235px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding-top: 24px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer_left .footer-social,
    .footer_left .footer-payment {
        display: none;
    }

    .footer-menu {
        align-items: center;
        flex-direction: column;
        margin-bottom: 40px;
        gap: 0;
    }
    .footer-menu_col {
        width: 100%;
        max-width: 700px;
        border-bottom: 1px solid var(--secondary-e-7-e-7-e-7, #E7E7E7);
    }

    .footer-menu_title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        margin-bottom: 0;
        color: var(--main-0-c-0-c-0-c);
        font-size: 16px;
        font-weight: 600;
        line-height: 100%;
    }
    .footer-menu_title:after {
        content: '';
        width: 28px;
        height: 28px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='9' viewBox='0 0 16 9' fill='none'%3E%3Cpath d='M15.5 1L8 8.5L0.5 1' stroke='%230C0C0C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-position: center;
        background-repeat: no-repeat;
    }
    .footer-menu_col.active .footer-menu_title:after {
        transform: rotate(180deg);
    }

    .footer-menu_content {
        display: flex;
        padding: 16px 0;
        border-top: 1px solid var(--secondary-e-7-e-7-e-7);
        font-size: 14px;
        font-weight: 400;
        line-height: 120%;
        gap: 12px;
    }

    .footer-mobile_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 525px;
        margin: 0 auto;
        gap: 40px;
    }
    .footer-social {
        margin-bottom: 0;
        justify-content: space-between;
        gap: 20px;
    }
    .footer-payment {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .footer-copyright {
        margin: 20px -16px 0 -16px;
        padding: 12px 16px;
        flex-wrap: wrap;
        font-size: 12px;
        line-height: 150%;
        gap: 8px;
    }
    .footer-copyright_right {
        gap: 20px;
    }
    .footer-copyright_right svg {
        max-width: 108px;
    }
}