.check-list{
    display: flex;
    align-items: flex-start;
    gap: 23px;
    flex-wrap: wrap;
    margin: 0;
}
.check-item{
    display: flex;
    max-width: 126px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.check-item img {
    width: 59px;
    height: 59px;
}
.p-check-item {
    color: var(--wp--preset--color--main--blue);
    font-size: var(--wp--preset--font-size--small);
    line-height: var(--wp--preset--line-height--small);
    font-weight: var(--wp--custom--weight-700);
    border-left: 2px solid var(--wp--preset--color--grey-05);
    padding-left: 15px;
    margin: 0;
}
@media (max-width: 920px) {
    .check-list{
        flex-direction: column;
        gap:20px;
        padding: 12px 0;
    }
    .check-item{
        flex-direction: row;
        max-width: 238px;
        align-items: center;
    }
    .p-check-item {
        border: none;
        padding-left: 0;
    }
    .check-item img {
        width: 42px;
        height: 42px;
    }
}