The selector n-th-of-typerefers to the tag tag at the same level, not to the class, in this case tags divthat are siblings inside .wrapper. Therefore, you need this CSS, since they are there third and fourth div:
.wrapper .row:nth-of-type(n+3) {
background-color: red;
}
.wrapper .row:nth-of-type(n+4) {
background-color: blue;
}
https://jsfiddle.net/cb3qd8t6/