I\'m making use of the following code:
.c-1:first-child, .c-2:first-child, .c-1:nth-child(4n+1) { margin-left: 0; }
which is working great but
You can use jQuery's .eq() for this.
.eq()
For example:
$('.c-1').eq(0).addClass('remove');