<html>
<?php
	$data = luxia_el()->merge_options([
        
        'service_section_var' => [],			
        'text_heading' => [],			
        'symbol_img' => [],		
        'header_img' => [],	
			
	
		], $data);
?>





<!-- ingredients-area -->
<section id="introduction" class="faq-area pt-100 pb-100">             
<div class="container"> 
     <div class="row">   
        <div class="col-lg-12">
            <div class="section-title center-align mb-50 text-center">
                <h2>
               <?php echo html_entity_decode ( $data['text_heading'] )?>
                </h2>
                <span class="line5"> <img src="<?php echo esc_url( $data ['symbol_img']['url'])?>" alt="<?php echo esc_url( $data ['symbol_img']['url'])?>"></span>
            </div>                           
        </div>                         
    </div>
    <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   wow fadeInLeft  animated">
                <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">
              <div class="s-about-img p-relative  wow fadeInRight  animated"   data-animation="fadeInLeft" data-delay=".4s">
                <img src="<?php echo esc_url ($data['header_img']['url'])?>" alt="<?php echo esc_url ($data['header_img']['url'])?>">    
            </div>
        </div>            
    </div>
</div>
</section>
<!-- ingredients-area-end -->   
