.other_goals {
    position: relative;
}

.other_goal__line {
    color: var(--solution-label-bg, #4334CE);
}

.other_goals__head {
    display: flex;
    gap: 80px;
    align-items: baseline;
}

.other_goals__description * {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
}

.other_goals__paragraph {
    display: flex;
    align-items: center;
    min-width: 326px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.other_goals__problem-solution {
    margin-top: 80px;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 351px;
    position: relative;
}

.other_goals__problem {
    max-width: 504px;
    position: relative;
    z-index: 1;
}

.other_goals__solution {
    max-width: 504px;
    margin-top: 271px;
    position: relative;
    z-index: 1;
}

.other_goal__line {
    position: absolute;
    top: 23px;
    left: 117px;
    width: 58%;
    pointer-events: none;
    z-index: -0;
}

.other_goal__line svg {
    width: 100%;
    height: auto;
}

.other_goals__label {
    height: 48px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    margin-bottom: 24px;
}

.other_goals__label.problem {
    background-color: var(--problem-label-bg, #FF7A45);
    color: var(--problem-label-color, #ffffff);
}

.other_goals__label.solution {
    background-color: var(--solution-label-bg, #4334CE);
    color: var(--solution-label-color, #ffffff);
}

.other_goals__problem ul,
.other_goals__solution ul {
    list-style: none;
    padding: 0;
}

.other_goals__problem li,
.other_goals__solution li {
    position: relative;
    font-weight: 400;
    padding-left: 18px;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    color: inherit;
}

.other_goals__problem li::before,
.other_goals__solution li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;

    font-weight: 400;
    line-height: 150%;
}

.other_goals__wrapper {
    color: var(--goals-head-color, #0D1118) !important;
}


.other_goals__paragraph p,
.other_goals__description {
    color: var(--goals-head-color, #0D1118);
}

@media screen and (max-width: 1500px) {
    .other_goal__line {
        display: none;
    }

    .other_goals__problem-solution {
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .other_goals__solution {
        margin-top: unset;
    }
}

@media screen and (max-width: 920px) {
    .other_goals__head {
        flex-direction: column;
        gap: 20px;
    }

    .other_goals__description br {
        display: none;
    }
}
