 .resp-tabs-list li {
     display: block;
 }
 
 .resp-tabs-container {
     clear: left;
 }
 
 h3.resp-accordion {
     display: none;
 }
 
 .resp-tab-content {
     display: none;
     padding-bottom: 0px;
 }
 
 .resp-content-active,
 .resp-accordion-active {
     display: block;
 }
 
 ul.resp-tabs-list {
     display: block;
 }
 
 h3.resp-accordion {
     display: none;
 }
 /*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
 
 @media (max-width: 991px) {
     ul.resp-tabs-list {
         display: none;
     }
     h3.resp-accordion {
         display: block;
     }
     .resp-tab-content {
         padding-bottom: 20px;
     }
     .resp-tab-content:last-child {
         padding-bottom: 0px;
     }
 }