.schema {
    width: 100%;
    height: 100vh;
    background-image: url('../img/schem-vert-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.list {
    padding: 0;
}
.item {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    margin: 20px 0;
    gap: 13px;
}
.item-text {
    font-size: 14px;
    line-height: 18px;
    text-wrap: balance;
}
.item-img {
    width: 100%;
}
@media (min-width: 768px) {
    .list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
    }
}
@media (min-width: 992px) {
    .schema {
        width: 100%;
        height: 200px;
        background-image: url('../img/schem-gor-2.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50% 50%;
    }
}
@media (min-width: 1200px) {
    .list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 60px;
    }
    .item {
        display: grid;
        grid-template-columns: 50px 1fr;
        align-items: center;
        margin: 20px 0;
        gap: 20px;
    }
    .item-text {
        font-size: 15px;
        line-height: 22px;
    }
}