<html>
<?php
	$data = luxia_el()->merge_options([
        
			'service_section_var' => [],	
			'service_section_var1' => [],	
			
		], $data);
?>


  
<!-- team-area -->
<section id="faq" class="faq-area pt-120 pb-100">             
<div class="container">   
<div class="row">
<div class="col-lg-6 col-md-6">
       <?php $i = 0; ?>
              <?php foreach ((array) $data['service_section_var'] as $service_var): $i++; ?>               
    <div class="faq-wrap">
        <div class="accordion" id="accordionExample">                                 
            <div class="card">
                <div class="card-header" id="headingOne">
                    <h2 class="mb-0">
                        <button class="faq-btn collapsed" type="button" data-toggle="collapse" data-target="#<?php echo html_entity_decode( $service_var['text-id'] ) ?>" aria-expanded="false" aria-controls="<?php echo html_entity_decode( $service_var['text-id'] ) ?>">
                           <?php echo html_entity_decode( $service_var['text'] ) ?>
                        </button>
                    </h2>
                </div>
                <div id="<?php echo html_entity_decode( $service_var['text-id'] ) ?>" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample" style="">
                    <div class="card-body">
                       <?php echo html_entity_decode( $service_var['content'] ) ?>
                    </div>
                </div>
            </div>                      
        </div>
    </div>
    <?php endforeach ?> 
</div>
                        


<div class="col-lg-6 col-md-6">                            
  <?php $i = 0; ?>
          <?php foreach ((array) $data['service_section_var1'] as $service_var): $i++; ?>
<div class="faq-wrap">
    <div class="accordion" id="accordionExample1">
        <div class="card">
            <div class="card-header" id="headingfive">
                <h2 class="mb-0">
                    <button class="faq-btn collapsed" type="button" data-toggle="collapse" data-target="#<?php echo html_entity_decode( $service_var['text-id'] ) ?>" aria-expanded="false" aria-controls="<?php echo html_entity_decode( $service_var['text-id'] ) ?>">
                       <?php echo html_entity_decode( $service_var['text'] ) ?>
                    </button>
                </h2>
            </div>
            <div id="<?php echo html_entity_decode( $service_var['text-id'] ) ?>" class="collapse" aria-labelledby="headingfive" data-parent="#accordionExample1" style="">
                <div class="card-body">
                   <?php echo html_entity_decode( $service_var['content'] ) ?>
                </div>
            </div>
        </div>                                    
    </div>
</div>
  <?php endforeach ?> 
</div>            
</div>
</div>
</section>
<!-- team-area-end -->   