.footer-banner {
    width: 100%;
    margin-top: 112px;
    display: flex;
    padding: 100px 3%;
    background-color: #FAF3EA;
    flex-shrink: 0;
}

.footer-banner>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-banner__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-banner__item__text__title {
    font-weight: 600;
    line-height: 150%;
}

.footer-banner__item__text__sub-title {
    font-weight: 500;
    line-height: 150%;
    color: var(--color-gray-6);
}

@media (max-width: 768px) {
    .footer-banner {
        display: flex;
        padding: 30px;
        margin-top: 50px;
        justify-content: center;
    }

    .footer-banner>div {
        width: fit-content;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-banner__item {
        width: fit-content;
    }


}