.info-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.info-block_mb {
    margin-bottom: 30px;
}
.info-block__item {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.info-block__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    object-position: center center;
    object-fit: contain;
}
.info-block__name {
    flex: 1 1 auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
}
@media screen and (min-width: 768px) {
    .info-block {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }
    .info-block__icon {
        width: auto;
    }
    .info-block_mb {
        margin-bottom: 45px;
    }
}