.problems-solutions__block {
    background: #F6F6F7;
    padding: 40px 0;
}
.problems-solutions__block .maxwidth-theme {
    background: unset;
}
.problems-solutions__block .block-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 37px;
    color: #181d27;
}
.problems-solutions__item-point {
    position: relative;
}
.problems-solutions__item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
}
.problems-solutions__title-block {
    display: flex;
    border-bottom: 1px solid #C5C7C9;
    padding: 20px;
}
.problems-solutions__number {
    background: #FF8800;
    border-radius: 100px;
    margin-right: 14px;
    min-width: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    color: #fff;
    align-self: center;
    align-content: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.problems-solutions__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #181D27;
}
.problems-solutions__item-point {
    padding-left: 40px;
    margin-bottom: 20px;
}
.problems-solutions__item-point:before {
    position: absolute;
    content: "";
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.problems-solutions__item-point.solution:before {
    background-image: url('/local/templates/aspro_next/images/check.png');
}
.problems-solutions__item-point.problem:before {
    background-image: url('/local/templates/aspro_next/images/problem.png');
}
.problems-solutions__item-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}
.problems-solutions__item-problems, .problems-solutions__item-solutions {
    width: 49%;
}
.problems-solutions__item-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #222;
}
.problems-solutions__item-text.title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}
.problems-solutions__item:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 560px) {
    .problems-solutions__item-point:before {
        top: 3px;
    }
    .problems-solutions__block .block-title {
        font-size: 20px;
        line-height: 28px;
    }
    .problems-solutions__title {
        font-size: 20px;
        line-height: 28px;
    }
    .problems-solutions__item-text {
        font-size: 16px;
        line-height: 24px;
    }
}