Closed html class after counter = multiple of 3

This isn’t a WP question but you would do the following:

if ($count % 3 != 0) {
  // code
}

Taken from here