<html>
<?php
	$data = luxia_el()->merge_options([
        
    'service_section_var' => [],
    'symbol' => [],
  
   
        ], $data);
?>


 <!-- services-area -->          
<section id="services1" class="services-area2 pt-120 pb-90 fix">
<div class="container">

<div class="row">
 <?php $advanced= new wp_Query(array(
    'post_type'=>'service',
    'posts_per_page'=>-1
));
while( $advanced->have_posts() ) : $advanced->the_post();
$terms_area = get_the_terms(get_the_id(),'category');
$terms   = array();
foreach($terms_area as $term) :
$terms[] = $term->slug;
    


 ?>
<?php endforeach; ?> 
                        
     <div class="col-lg-4 col-md-12">
      <div class="services-box text-center">
          <div class="services-icon">
              <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
            </div>
           <div class="services-content2">
                <h5><a href="<?php the_permalink(); ?>"><?php the_title();  ?></a> <span class="line5"> <img src="<?php echo esc_url( $data ['symbol']['url'] ) ?>"  alt="<?php echo esc_url( $data ['symbol']['url'] ) ?>"></span></h5>

                 <?php the_excerpt();?>
            </div>
        </div>  
    </div>
     <?php  endwhile;  ?>

</div>
</div>
</section>
<!-- services-area-end -->