<div class="author-box">
    <?php echo get_avatar( get_the_author_meta( 'user_email' ), 118 ); ?>
    <div class="author-details">
        <h4 class="subtitle"><?php the_author_meta( 'display_name' ); ?></h4>
        <p><?php the_author_meta( 'description' ); ?></p>
        <div class="author-share">
            <?php 
                if( get_the_author_meta( 'offshore_facebook' ) != '' ) {
                    echo '<a href="' . esc_url( get_the_author_meta( 'offshore_facebook' ) ) . '"><i class="fa fa-facebook" aria-hidden="true"></i></a>';
                }
                if( get_the_author_meta( 'offshore_twitter' ) != '' ) {
                    echo '<a href="' . esc_url( get_the_author_meta( 'offshore_twitter' ) ) . '"><i class="fa fa-twitter" aria-hidden="true"></i></a>';
                }
                if( get_the_author_meta( 'offshore_google' ) != '' ) {
                    echo '<a href="' . esc_url( get_the_author_meta( 'offshore_google' ) ) . '"><i class="fa fa-google-plus" aria-hidden="true"></i></a>';
                }
                if( get_the_author_meta( 'offshore_linkedin' ) != '' ) {
                    echo '<a href="' . esc_url( get_the_author_meta( 'offshore_linkedin' ) ) . '"><i class="fa fa-linkedin" aria-hidden="true"></i></a>';
                }
                if( get_the_author_meta( 'offshore_instagram' ) != '' ) {
                    echo '<a href="' . esc_url( get_the_author_meta( 'offshore_instagram' ) ) . '"><i class="fa fa-instagram" aria-hidden="true"></i></a>';
                }
            ?>
        </div>
    </div>
</div>