I have this code and I can't figure out why the nth-of-type selector needs to be 2, not 1, for the first sibling of this type.
Here's a jsfiddle code: https://jsfiddle.net/xj5hvn16/
Can someone, please, explain this to me?
.flowbox .utm_registrars_code:nth-of-type(2) {
background-color: red;
}
<div class="flowbox freebox">
<div class="pholdcard18"></div>
<div class="flowcard14 utm_registrars_code">
<div class="content">
Content 1
</div>
</div>
<div class="flowcard14 utm_registrars_code">
<div class="content">
Content 2
</div>
</div>
<div class="flowcard14 utm_registrars_code">
<div class="content">
Content 3
</div>
</div>
</div>