/home/lnzliplg/www/wp-content/themes/lawyer-hub/template-parts/navigation/site-nav.php
<?php
/*
* Display Theme menus
*/
?>
<?php
$lawyer_hub_sticky = get_theme_mod('lawyer_hub_sticky');
    $lawyer_hub_static_data_sticky = "false";
    if ($lawyer_hub_sticky) {
    $lawyer_hub_static_data_sticky = "true";
    }
    global $wp_customize;
 ?>
<div class="innermenuboxupper <?php if( is_user_logged_in() && !isset( $wp_customize ) ){ echo "login-user";} ?>" data-sticky="<?php echo esc_attr($lawyer_hub_static_data_sticky); ?>">
	<div class="container">
		<div class="innermenubox">
			<div class="row">
				<div class="col-lg-9 col-md-5 col-sm-5 col-3 align-self-center">
							<div class="toggle-nav mobile-menu">
							<button onclick="lawyer_hub_menu_open_nav()" class="responsivetoggle"><i class="fas fa-bars"></i><span class="screen-reader-text"><?php esc_html_e('Open Button','lawyer-hub'); ?></span></button>
							</div>
					<div id="mySidenav" class="nav sidenav">
						<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'lawyer-hub' ); ?>">
					      	<?php
					          	wp_nav_menu( array( 
					                'theme_location' => 'primary-menu',
					                'container_class' => 'main-menu clearfix' ,
					                'menu_class' => 'clearfix',
					                'items_wrap' => '<ul id="%1$s" class="%2$s mobile_nav">%3$s</ul>',
					                'fallback_cb' => 'wp_page_menu',
					          	) );
							?>
							<a href="javascript:void(0)" class="closebtn mobile-menu" onclick="lawyer_hub_menu_close_nav()"><i class="fas fa-times"></i><span class="screen-reader-text"><?php esc_html_e('Close Button','lawyer-hub'); ?></span></a>
						</nav>
					</div>
				</div>
				<div class="col-lg-3 col-md-7 col-sm-7 col-9 align-self-center">
					<div class="media-links text-md-end">
						<?php                 
				            $lawyer_hub_header_fb_new_tab = esc_attr(get_theme_mod('lawyer_hub_header_fb_new_tab','true'));
				            $lawyer_hub_header_twt_new_tab = esc_attr(get_theme_mod('lawyer_hub_header_twt_new_tab','true'));
				            $lawyer_hub_header_ins_new_tab = esc_attr(get_theme_mod('lawyer_hub_header_ins_new_tab','true'));
				            $lawyer_hub_header_ut_new_tab = esc_attr(get_theme_mod('lawyer_hub_header_ut_new_tab','true'));
				            $lawyer_hub_header_pint_new_tab = esc_attr(get_theme_mod('lawyer_hub_header_pint_new_tab','true'));
				            ?>
				          <?php if( get_theme_mod( 'lawyer_hub_facebook_url' ) != '') { ?>
				            <a <?php if($lawyer_hub_header_fb_new_tab != false ) { ?>target="_blank" <?php } ?>href="<?php echo esc_url( get_theme_mod( 'lawyer_hub_facebook_url','' ) ); ?>"><i class="<?php echo esc_attr(get_theme_mod('lawyer_hub_facebook_icon','fab fa-facebook-f')); ?>"></i></a>
				          <?php } ?>
				          <?php if( get_theme_mod( 'lawyer_hub_twitter_url' ) != '') { ?>
				            <a <?php if($lawyer_hub_header_twt_new_tab != false ) { ?>target="_blank" <?php } ?>href="<?php echo esc_url( get_theme_mod( 'lawyer_hub_twitter_url','' ) ); ?>"><i class="<?php echo esc_attr(get_theme_mod('lawyer_hub_twitter_icon','fab fa-twitter')); ?>"></i></a>
				          <?php } ?>
				          <?php if( get_theme_mod( 'lawyer_hub_instagram_url' ) != '') { ?>
				            <a <?php if($lawyer_hub_header_ins_new_tab != false ) { ?>target="_blank" <?php } ?>href="<?php echo esc_url( get_theme_mod( 'lawyer_hub_instagram_url','' ) ); ?>"><i class="<?php echo esc_attr(get_theme_mod('lawyer_hub_instagram_icon','fab fa-instagram')); ?>"></i></a>
				          <?php } ?>
				          <?php if( get_theme_mod( 'lawyer_hub_youtube_url' ) != '') { ?>
				            <a <?php if($lawyer_hub_header_ut_new_tab != false ) { ?>target="_blank" <?php } ?>href="<?php echo esc_url( get_theme_mod( 'lawyer_hub_youtube_url','' ) ); ?>"><i class="<?php echo esc_attr(get_theme_mod('lawyer_hub_youtube_icon','fab fa-youtube')); ?>"></i></a>
				          <?php } ?>
				          <?php if( get_theme_mod( 'lawyer_hub_pint_url' ) != '') { ?>
				            <a <?php if($lawyer_hub_header_pint_new_tab != false ) { ?>target="_blank" <?php } ?>href="<?php echo esc_url( get_theme_mod( 'lawyer_hub_pint_url','' ) ); ?>"><i class="<?php echo esc_attr(get_theme_mod('lawyer_hub_pint_icon','fab fa-pinterest')); ?>"></i></a>
				        <?php } ?>
		        	</div>
				</div>
			</div>
		</div>
	</div>
</div>