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




 <!-- team-area -->
            <section id="team1" class="team-area pt-120 pb-90" style="background: #FBFBFB;">             
                <div class="container">   
                    <div class="row">                        

                     <?php $advanced= new wp_Query(array(
                        'post_type'=>'team',
                         'posts_per_page' => $data['posts_per_page'],
                    ));
                    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-3 col-md-6">
                            <div class="single-team text-center mb-30 ">
                                <div class="team-thumb">
                                  <div class="brd">
                                         <?php the_post_thumbnail(); ?>
                                    </div>
                                </div>
                                <div class="team-info">
                                    <h4><a href="<?php the_permalink(); ?>"><?php the_title();  ?></a></h4>
                                    <span>
                                        <?php
                                         $media = rwmb_meta( 'luxiazc_post_team_postions' );
                                         echo html_entity_decode ($media);	
                                         ?>
                                    </span>
                                    <div class="team-social mt-20">
                                         <?php
                                         $media = rwmb_meta( 'luxiazc_post_social' );
                                         echo html_entity_decode ($media);	
                                         ?>
                                    </div>
                                </div>
                            </div>
                        </div>
                     <?php  endwhile;  ?>
                        
                    </div>
                </div>
            </section>
            
            
<!-- team-area-end -->