<?php
/**
* Front CTA Section
*
* @package constructionn
*/
$toggle_front_cta = get_theme_mod( 'toggle_front_cta', false );
$f_cta_heading = get_theme_mod( 'front_cta_heading' );
$f_cta_descs = get_theme_mod( 'front_cta_descs' );
$contact_num = get_theme_mod( 'contact_number' );
if ( $toggle_front_cta && ( $f_cta_heading || $f_cta_descs || $contact_num ) ) { ?>
<div id="front-cta" class="cta-section front-cta">
<div class="container">
<?php if ( $f_cta_heading || $f_cta_descs || $contact_num ) { ?>
<div class="content-wrapper">
<?php if ( $f_cta_heading || $f_cta_descs ) { ?>
<div class="section-meta-wrap">
<?php if ( $f_cta_heading ) { ?>
<h2 class="section-heading teampg"><?php echo esc_html( $f_cta_heading ); ?></h2>
<?php } if ( $f_cta_descs ) { ?>
<p class="section-desc"><?php echo esc_html( $f_cta_descs ); ?></p>
<?php
}
?>
</div>
<?php } if ( $contact_num ) { ?>
<a href="<?php echo esc_url( 'tel:' . preg_replace( '/[^\d+]/', '', $contact_num ) ); ?>">
<span class="icon">
<?php echo wp_kses( constructionn_handle_all_svgs( 'contact-cta' ), constructionn_get_kses_extended_ruleset() ); ?>
</span>
<span><?php echo esc_html( $contact_num ); ?></span>
</a>
<?php
}
?>
</div>
<?php
}
?>
</div>
</div>
<?php
}