The current behavior of the product specs section is as expected. Clicking on group 1 shows its content, and when clicking on group 2, it minimizes group 1 and displays group 2.
However, the issue arises with the next two categories, Usage and Installation, and Care. They are not functioning properly as part of the accordion feature. When I click on group 1, then on group 2, both expand instead of minimizing group 1 as intended.
<div class="tab-content">
<!--Product Specs-->
<hr>
<h3 style="text-align: left;">Product Specs</h3>
<div id="home" class="tab-pane fade in active ">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<!-- Group 1 -->
<div class="panel panel-info">
...
</div>
<!-- Group 2 -->
<div class="panel panel-info">
...
</div>
<!-- Group 3 -->
<div class="panel panel-info">
...
</div>
</div>
</div>
<!--END of Product Specs-->
...
Is there a way to have group 1 minimized when interacting with groups 2 and three?
JSFiddle Link: JSFiddle Link