Your IP : 216.73.216.0
<?php if ('layout_two' == $settings['layout_type']) : ?>
<!--Service Start-->
<section class="service-five">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="section-title section-title--two text-left">
<?php if (!empty($settings['layout_two_sec_sub_title'])) : ?>
<span class="section-title__tagline"><?php echo wp_kses($settings['layout_two_sec_sub_title'], 'zeinet_allowed_tags'); ?></span>
<?php endif; ?>
<h2 class="section-title__title">
<?php if (!empty($settings['layout_two_sec_title'])) : ?>
<?php echo wp_kses($settings['layout_two_sec_title'], 'zeinet_allowed_tags'); ?>
</h2>
<?php endif; ?>
</div>
</div>
<div class="col-md-4">
<?php if (!empty($settings['layout_two_button_label'])) : ?>
<div class="service-five__btn">
<a href="<?php echo esc_url($settings['layout_two_button_url']['url']); ?>" <?php echo esc_attr(!empty($settings['layout_two_button_url']['is_external']) ? 'target=_blank' : ' '); ?> class="thm-btn thm-btn--two"><?php echo esc_html($settings['layout_two_button_label']); ?><span></span></a>
</div>
<?php endif; ?>
</div>
</div>
<div class="row gutter-y-30">
<?php if (is_array($settings['layout_two_offer_list'])) : ?>
<?php $i = 1;
foreach ($settings['layout_two_offer_list'] as $item) : ?>
<div class="col-xl-3 col-md-6 wow fadeInUp" data-wow-delay="00ms">
<div class="service-five__item">
<div class="service-five__item__thumb">
<img src="<?php echo esc_url($item['image']['url']); ?>" alt="<?php echo esc_attr(zeinet_get_thumbnail_alt($item['image']['id'])); ?>">
</div>
<div class="service-five__item__content">
<div class="service-five__item__icon">
<div class="service-five__item__icon__inner"><?php \Elementor\Icons_Manager::render_icon($item['icon'], ['aria-hidden' => 'true', 'class' => ' '], 'i'); ?></div>
</div>
<h3 class="service-five__item__title"><a href="<?php echo esc_url($item['url']['url']); ?>" <?php echo esc_attr(!empty($item['url']['is_external']) ? 'target=_blank' : ' '); ?>><?php echo esc_html($item['title']); ?></a></h3>
<p class="service-five__item__text">
<?php echo wp_kses($item['summary'], 'zeinet_allowed_tags'); ?>
</p>
<?php if (!empty($item['button_label'])) : ?>
<a href="<?php echo esc_url($item['url']['url']); ?>" <?php echo esc_attr(!empty($item['url']['is_external']) ? 'target=_blank' : ' '); ?> class="thm-btn thm-btn--two"><?php echo esc_html($item['button_label']); ?><span></span></a>
<?php endif; ?>
<div class="service-five__item__shape"></div>
</div>
</div>
</div>
<?php $i++;
endforeach; ?>
<?php endif; ?>
</div>
</div>
</section>
<!--Service End-->
<?php endif; ?>