the problem is that I have 3 columns per row and in tablet size I want 2 columns per row is that even possible because it just get three columns per row in tablet size.
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col">
</div>
<div class="col-lg-4 col-md-6 col">
</div>
<div class="col-lg-4 col-md-6 col">
</div>
</div>
<!--2nd row-->
<div class="row">
<div class="col-lg-4 col-md-6 col">
<div class="card text-secondary">
<img src="balinese.jpg" class="img-fluid card-img-top"/>
<div class="card-body">
<h4 class="card-title">Balinese Cat</h4>
<h5 class="card-text">The Balinese is a long-haired breed of domestic cat with Siamese-style point coloration and sapphire-blue eyes</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col">
<div class="card text-secondary">
<img src="manxs.jpg" class="img-fluid card-img-top"/>
<div class="card-body">
<h4 class="card-title">Manx Cat</h4>
<h5 class="card-text">The Manx cat is a breed of domestic cat (Felis catus) originating on the Isle of Man, with a naturally occurring mutation that shortens the tail</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col">
<div class="card text-secondary">
<img src="Sphynx.jpg" class="img-fluid card-img-top"/>
<div class="card-body">
<h4 class="card-title">Sphynx Cat</h4>
<h5 class="card-text">The Sphynx cat is a breed of cat known for its lack of coat (fur). It was developed through selective breeding, starting in the 1960s. The skin should have the texture of chamois, as it has fine hairs</h5>
</div>
</div>
</div>
</div>
</div>