.node-wrapper {
    grid-template-columns: repeat(6, 1fr);
    display: grid;
    row-gap: 60px;
}
.node {
    width: 159px;
}
.node div {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}
.node h3 {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1E3D76;
}

@media screen and (max-width: 950px) {
    .node-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .node-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .node {
        width: 50%;
    }
}