.points{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
@media screen and (max-width: 991px) {
    .points .point{
        flex-basis: 100%;
    }
}
@media screen and (min-width: 991px) {
    .points .point{
        flex-basis: calc((100% - 30px) / 3);
    }
}

@media screen and (min-width: 768px){
    .points{
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px){
    body .points{
        gap: 6px;
    }
    body .points .point{
        padding: 10px 25px;
    }
}

.points .point{
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    padding: 20px 30px;
    color: #6C6A72;
    border: 1px solid #DDE1E9;
    border-radius: 10px;
}
.point:before{
    content: '';
    background: #EC3235;
    width: 5px;
    border-radius: 10px;
    height: calc(100% - 20px);
    position: absolute;
    left: 10px;
    top: 10px;
}
.points_block .button_wrap{
    justify-content: center;
}