.how-they-help {
    padding-top: 90px;
    padding-bottom: 120px;
}

.how-they-help h2 {
    margin-bottom: 40px;
    width: fit-content;
}

.how-they-help__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 45px;
}

.how-they-help__content img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.how-they-help__content ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-they-help__content .how-they-help__item:last-child ul {
    margin-top: 15px;
    margin-bottom: 30px;
}

.how-they-help__item > ul,
.how-they-help__item > p {
    font-size: 18px;
    line-height: 160%;
}

@media screen and (max-width: 1024px) {
    .how-they-help {
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .how-they-help h2 {
        margin-bottom: 30px;
        max-width: 82%;
    }

    .how-they-help__content {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
    }

    .how-they-help__item:nth-child(1) {
        order: 1;
    }
    .how-they-help__item:nth-child(2) {
        order: 2;
    }
    .how-they-help__item:nth-child(3) {
        order: 4;
    }
    .how-they-help__item:nth-child(4) {
        order: 3;
    }
}

@media screen and (max-width: 768px) {
    .how-they-help {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .how-they-help__content {
        row-gap: 15px;
    }

    .how-they-help__item > ul,
    .how-they-help__item > p {
        font-size: 14px;
        line-height: 150%;
    }

    .how-they-help h2 {
        margin-bottom: 25px;
        max-width: 90%;
    }
}

@media screen and (max-width: 463px) {
    .how-they-help .title--circle:after {
        right: auto !important;
        left: 315px !important;
    }
}

@media screen and (max-width: 355px) {
    .how-they-help .title--circle:after {
        right: auto !important;
        left: 215px !important;
    }
}

