<html>
<?php
	$data = luxia_el()->merge_options([
			'service_section_var' => [],			
			'text-paroller2' => [],			
			'sub-title2' => [],			
	       'menu-id01' => '',
		], $data);
?>


  <!-- screen-area -->
            <section id="<?php echo html_entity_decode ($data['menu-id01']) ?>" class="screen-area services-bg services-two pt-100 pb-70">
                <div class="container">
                    <div class="row justify-content-center">
                        <div class="col-xl-8 col-lg-10">
                            <div class="section-title text-center pl-40 pr-40 mb-50">                               
                                <h2><?php echo html_entity_decode($data['text-paroller2']) ?></h2>
                                <p><?php echo html_entity_decode($data['sub-title2']) ?></p>
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        
                         <!-- Swiper -->
                          <div class="swiper-container">
                            <div class="swiper-wrapper">
                                
                                 <?php $i = 0; ?>
                                    <?php foreach ((array) $data['service_section_var'] as $service_var): $i++; ?>
                                 <div class="swiper-slide"><img src="<?php echo esc_url( $service_var ['icon']['url'] ) ?>" alt="<?php echo esc_attr( $service_var ['icon']['url'] ) ?>"></div>
                                 
                                         <?php endforeach ?>

                            </div>
                            <!-- Add Pagination -->
                            <div class="swiper-pagination"></div>
                          </div>

          </div>
                    </div>
                    

            </section>
            <!-- screen-area-end -->     

