Just add col-md-12
(breakpoint of 768px or higher will be full width).
Then, add col-4
as well, that will affect from this breakpoint down.
<div class="row">
<div class="col-4 col-md-12"></div>
<div class="col-4 col-md-12"></div>
<div class="col-4 col-md-12"></div>
</div>
You can see more in the Bootstrap documentation how this grid system works.